/* =========================================================
   A MILLION MILES AWAY
   Locked sky blue / navy / white
   ========================================================= */

   :root {
    --blue: #6cabdd;
    --blue-light: #dceef8;
    --blue-mid: #4d91ba;
    --navy: #0c1822;
    --ink: #101820;
    --muted: #51636e;
    --line: #dce6ec;
    --white: #ffffff;

    --pico-font-family-display: Arial, Helvetica, sans-serif;
    --pico-font-family-sans-serif: Arial, Helvetica, sans-serif;
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    background: #ffffff;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
}


/* =========================================================
   GRAV / PAGE WIDTH
   ========================================================= */

#page-wrapper,
#start,
#body-wrapper,
#body-wrapper.section,
#body-wrapper > .container,
#body-wrapper .container,
#body-wrapper .content-item,
article.content-item {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}


/* =========================================================
   HEADER
   ========================================================= */

#header {
    position: relative !important;
    width: 100% !important;
    padding: 0 !important;
    background: #ffffff !important;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: none !important;
}

#header > .container {
    width: 100% !important;
    max-width: 1500px !important;
    margin: auto !important;
    padding: 22px 38px 16px !important;
}

.amma-navbar-brand {
    display: grid !important;
    grid-template-columns: auto 38px !important;
    grid-template-rows: auto auto !important;
    column-gap: 12px !important;
    align-items: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
}

.amma-navbar-name {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    font-size: clamp(26px, 2.5vw, 40px);
    font-weight: 900;
    letter-spacing: -1.8px;
    line-height: 0.82;
    white-space: nowrap;
}

.amma-navbar-name span:first-child {
    color: var(--blue);
}

.amma-navbar-name span:last-child {
    color: var(--navy);
}

.amma-navbar-stripes {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    gap: 0;
    width: 38px;
    height: 58px;
    overflow: hidden;
    transform: none;
}

.amma-navbar-stripes i {
    display: block;
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    margin: 0;
    transform: none;
}

.amma-navbar-stripes i:first-child {
    background: var(--blue);
}

.amma-navbar-stripes i:last-child {
    background: var(--navy);
}

.amma-navbar-brand small {
    grid-column: 1 / 3;
    grid-row: 2;
    margin-top: 9px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 1.25px;
    text-transform: lowercase;
    white-space: nowrap;
}


/* =========================================================
   HOMEPAGE
   ========================================================= */

.cp-home {
    width: 100%;
    margin: 0;
}

.cp-home-hero {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 520px;
    background: var(--navy);
    border-bottom: 7px solid var(--blue);
}

.cp-home-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 5vw 64px max(7vw, 40px);
    color: #ffffff;
}

.cp-home-label {
    align-self: flex-start;
    margin-bottom: 20px;
    padding: 8px 13px;
    background: var(--blue);
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.cp-home-hero h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(48px, 5.6vw, 84px);
    line-height: 0.93;
    letter-spacing: -3px;
}

.cp-home-hero p {
    max-width: 700px;
    margin: 0 0 27px;
    color: #e8f1f6;
    font-size: 20px;
    line-height: 1.45;
}

.cp-home-read {
    align-self: flex-start;
    padding-bottom: 5px;
    border-bottom: 4px solid var(--blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.cp-home-hero-media {
    min-height: 520px;
    background: var(--blue-light);
    overflow: hidden;
}

.cp-home-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}


/* =========================================================
   LATEST STORIES
   ========================================================= */

.cp-latest-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 31px max(5vw, 32px) 15px;
    border-bottom: 1px solid var(--line);
}

.cp-latest-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
}

.cp-latest-head span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.cp-stories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    border-bottom: 1px solid var(--line);
}

.cp-story {
    min-width: 0;
    border-right: 1px solid var(--line);
}

.cp-story:last-child {
    border-right: 0;
}

.cp-story-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--blue-light);
    border-bottom: 5px solid var(--blue);
}

.cp-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-story-copy {
    padding: 27px 28px 32px;
}

.cp-story-section {
    display: block;
    margin-bottom: 13px;
    color: #357aa3;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.cp-story h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(23px, 2.1vw, 32px);
    line-height: 1.03;
}

.cp-story p {
    margin: 0 0 21px;
    color: #465762;
    font-size: 15px;
    line-height: 1.47;
}

.cp-story-read {
    padding-bottom: 4px;
    border-bottom: 3px solid var(--blue);
    color: var(--navy);
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}


/* =========================================================
   QUOTE
   ========================================================= */

.cp-quote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 44px max(7vw, 40px);
    background: var(--blue-light);
    border-top: 1px solid var(--blue);
}

.cp-quote blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--navy);
    font-size: clamp(21px, 2.2vw, 29px);
    font-weight: 800;
}

.cp-quote > span {
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}


/* =========================================================
   ARTICLE
   ========================================================= */

.cp-article-v2 {
    width: 100%;
    padding: 0 0 80px;
    background: #ffffff;
}

.cp-article-hero {
    overflow: hidden;
    min-height: 460px;
    background: var(--blue);
    border-bottom: 7px solid var(--blue-mid);
}

.cp-article-hero-inner {
    display: grid;
    grid-template-columns: 56% 44%;
    min-height: 460px;
}

.cp-article-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 5vw 60px max(7vw, 40px);
    background: var(--blue);
}

.cp-article-section {
    align-self: flex-start;
    margin-bottom: 22px;
    padding: 8px 13px;
    background: var(--navy);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.cp-article-v2 h1 {
    margin: 0 0 23px;
    color: var(--navy);
    font-size: clamp(48px, 5.6vw, 84px);
    line-height: 0.94;
    letter-spacing: -3px;
}

.cp-article-standfirst {
    max-width: 760px;
    margin: 0 0 25px;
    color: #173248;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.4;
}

.cp-article-meta {
    display: flex;
    gap: 24px;
    color: #173248;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.cp-article-hero-media {
    position: relative;
    min-height: 460px;
    background: var(--blue);
    background-size: cover;
    background-position: center;
}

.cp-article-hero-has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(108, 171, 221, 1),
        rgba(108, 171, 221, 0.7) 27%,
        rgba(108, 171, 221, 0) 70%
    );
}

.cp-article-main {
    width: 100%;
    max-width: 1180px;
    margin: auto;
    padding: 58px max(7vw, 40px) 0;
}

.cp-article-body {
    max-width: 820px;
    font-size: 19px;
    line-height: 1.72;
}

.cp-article-body h2 {
    margin: 44px 0 18px;
    color: var(--navy);
    font-size: 34px;
}

.cp-article-body blockquote {
    margin: 42px 0;
    padding-left: 28px;
    border-left: 6px solid var(--blue);
    color: var(--navy);
    font-size: clamp(23px, 2.4vw, 31px);
    font-weight: 800;
}

.cp-article-footer {
    width: calc(100% - 14vw);
    max-width: 1040px;
    margin: 58px auto 0;
    padding-top: 20px;
    border-top: 2px solid var(--blue-light);
    color: #357aa3;
}


/* =========================================================
   ARTICLE VIDEO
   ========================================================= */

.cp-article-video {
    width: calc(100% - 14vw);
    max-width: 1040px;
    margin: 52px auto 0;
}

.cp-video-title {
    margin: 0 0 22px;
    color: var(--navy);
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.cp-article-video iframe {
    display: block !important;
    width: 100% !important;
    height: 585px !important;
    min-height: 585px !important;
    max-width: 1040px !important;
    border: 0 !important;
    margin: 0 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

    .cp-home-hero,
    .cp-article-hero-inner {
        grid-template-columns: 1fr;
    }

    .cp-home-hero-copy,
    .cp-article-hero-copy {
        padding: 50px 30px 42px;
    }

    .cp-home-hero-media,
    .cp-home-hero-media img {
        min-height: 340px;
    }

    .cp-stories {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-article-hero-media {
        min-height: 240px;
    }

    .cp-article-main {
        padding: 48px 30px 0;
    }

    .cp-article-video {
        width: calc(100% - 60px);
    }

    .cp-article-video iframe {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    #header > .container {
        padding: 16px 20px !important;
    }

    .amma-navbar-name {
        font-size: 24px;
    }

    .amma-navbar-brand {
        grid-template-columns: auto 30px;
        column-gap: 9px;
    }

    .amma-navbar-stripes {
        width: 30px;
        height: 48px;
    }

    .amma-navbar-brand small {
        font-size: 9px;
        white-space: normal;
    }

    .cp-home-hero-copy,
    .cp-article-hero-copy {
        padding: 40px 22px 35px;
    }

    .cp-home-hero h1,
    .cp-article-v2 h1 {
        font-size: 44px;
    }

    .cp-stories {
        grid-template-columns: 1fr;
    }

    .cp-story {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .cp-story-image {
        aspect-ratio: 16 / 9;
    }

    .cp-quote {
        padding: 34px 22px;
    }

    .cp-article-main {
        padding: 38px 22px 0;
    }

    .cp-article-body {
        font-size: 18px;
    }

    .cp-article-footer {
        width: auto;
        margin: 48px 22px 0;
    }

    .cp-article-video {
        width: auto;
        margin: 42px 22px 0;
    }

    .cp-article-video iframe {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9;
    }
}