/* ------------------------------------
   Root + Reset
------------------------------------- */

*, *::before, *::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

html {
    font-size: 16px
}

body {
    background-color: #fff;
    color: #444;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

img, svg {
    vertical-align: middle
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
}

body .icon svg {
    fill: #68696d
}

/* ------------------------------------
   Typography
------------------------------------- */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--bs-heading-color);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-top: 0
}

.h1, h1 { font-size: calc(1.375rem + 1.5vw) }
.h2, h2 { font-size: calc(1.325rem + .9vw) }
.h3, h3 { font-size: calc(1.3rem + .6vw) }
.h4, h4 { font-size: calc(1.275rem + .3vw) }
.h5, h5 { font-size: 1.25rem }
.h6, h6 { font-size: 1rem }

p {
    margin-bottom: 1rem;
    margin-top: 0
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.fs-1 { font-size: calc(1.375rem + 1.5vw) !important }
.fs-5 { font-size: 1.25rem !important }
.fs-6 { font-size: 1rem !important }

.text-center { text-align: center !important }
.text-uppercase { text-transform: uppercase !important }
.text-decoration-underline { text-decoration: underline !important }
.text-decoration-none { text-decoration: none !important }

.text-white { color: #fff !important }
.text-light { color: #d4d7dd; !important }
.text-danger { color: #dc3545 !important }
.text-muted { color: #6c757d !important }
.text-navy {color: #003a76 !important }
.text-green { color: #79a800 !important }
.text-orange { color: #f57c00 !important }
.text-warning { color: #f57c00 !important }
.text-success { color: #79a800 !important }
.text-primary { color: #003a76 !important }
.text-info { color: #0DCAF0 !important }

.fw-semibold { font-weight: 600 !important }
.fw-bold { font-weight: 700 !important }
.fw-normal { font-weight: 400 !important }
.lh-base { line-height: 1.5 !important }

.small, small { font-size: .875em }

/* ------------------------------------
   Links & Focus
------------------------------------- */

a {
    color: #424448;
}

    a, a:focus, a:hover {
        text-decoration: none;
    }

        a:focus, a:hover {
            color: #003a76;
        }

:focus {
    outline: auto;
}


/* ------------------------------------
   Layout containers
------------------------------------- */

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.75rem; /* 1.5rem * 0.5 */
    padding-right: 0.75rem;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem; /* half of 1.5rem gutter */
    margin-right: -0.75rem;
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

/* ------------------------------------
   Spacing Utilities
------------------------------------- */

/* Padding */
.p-0 { padding: 0 !important }
.p-1 { padding: .25rem !important }

.px-3 { padding-left: 1rem !important; padding-right: 1rem !important }
.py-5 { padding-bottom: 3rem !important; padding-top: 3rem !important }

.pt-3 { padding-top: 1rem !important }
.pt-4 { padding-top: 1.5rem !important }
.pt-5 { padding-top: 3rem !important }

.pb-3 { padding-bottom: 1rem !important }
.pb-4 { padding-bottom: 1.5rem !important }
.pb-5 { padding-bottom: 3rem !important }

/* Margin */

.m-0 { margin: 0 !important }

.my-2 { margin-bottom: .5rem !important; margin-top: .5rem !important }
.my-5 { margin-bottom: 3rem !important; margin-top: 3rem !important }

.mx-auto { margin-left: auto !important; margin-right: auto !important }

.me-2 { margin-right: .5rem !important }

.mt-0 { margin-top: 0 !important }
.mt-1 { margin-top: .25rem !important }
.mt-2 { margin-top: .5rem !important }
.mt-3 { margin-top: 1rem !important }
.mt-4 { margin-top: 1.5rem !important }
.mt-5 { margin-top: 3rem !important }

.mb-0 { margin-bottom: 0 !important }
.mb-1 { margin-bottom: .25rem !important }
.mb-2 { margin-bottom: .5rem !important }
.mb-3 { margin-bottom: 1rem !important }
.mb-4 { margin-bottom: 1.5rem !important }
.mb-5 { margin-bottom: 3rem !important }

/* Gap */
.gap-0 { gap: 0 !important }
.gap-1 { gap: .25rem !important }
.gap-2 { gap: .5rem !important }
.gap-3 { gap: 1rem !important }
.gap-4 { gap: 1.5rem !important }
.gap-5 { gap: 3rem !important }

/* ------------------------------------
   Flex Utilities
------------------------------------- */

.d-flex { display: flex !important }
.d-none { display: none !important }
.d-block { display: block !important }
.d-grid { display: grid !important }

.flex-wrap { flex-wrap: wrap !important }
.flex-column { flex-direction: column !important }
.align-items-center { align-items: center !important }
.justify-content-between { justify-content: space-between !important }
.justify-content-start { justify-content: flex-start !important }
.justify-content-center { justify-content: center !important }


/* ------------------------------------
   Sizing Utilities
------------------------------------- */
.h-100 { height: 100% !important }
.w-100 { width: 100% !important }
.w-75 { width: 75% !important }

/* ------------------------------------
   Helpers
------------------------------------- */

.bg-light {
    background-color: #f8f9fa !important;
}

.border-top {
    border-top: 1px solid #dee2e6;
}

.overflow-hidden {
    overflow: hidden !important
}


.img-fluid {
    height: auto;
    max-width: 100%
}

.list-unstyled {
    list-style: none;
    padding-left: 0
}

.position-relative {
    position: relative !important
}

.visually-hidden {
  position: absolute !important;
  width: 1px; 
  height: 1px;
  padding: 0; 
  margin: -1px;
  overflow: hidden; 
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap; 
  border: 0;
}


/* ------------------------------------
   Media Queries
------------------------------------- */

/* ≥576px (sm) */
@media (min-width: 576px) {
    .container {
        max-width: 540px
    }

    .flex-sm-row {
        flex-direction: row !important
    }
}


/* ≥768px (md) */
@media (min-width: 768px) {
    .container { max-width: 720px }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
  
      .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .d-md-block { display: block !important }
    .d-md-flex { display: flex !important }
    .flex-md-row { flex-direction: row !important }
    .text-md-start { text-align: left !important }
    .mb-md-0 { margin-bottom: 0 !important }
}

/* ≥992px (lg) */
@media (min-width: 992px) {
    .container {
        max-width: 960px
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }
  
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .text-lg-start {
        text-align: left !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .d-lg-block {
        display: block !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .order-lg-first {
        order: -1 !important
    }
}


/* ≥1200px (xl) */
@media (min-width: 1200px) {
    .container { max-width: 1140px }
    .h1, h1 { font-size: 2.5rem }
    .h2, h2 { font-size: 2rem }
    .h3, h3 { font-size: 1.75rem }
    .h4, h4 { font-size: 1.5rem }
    .fs-1 { font-size: 2.5rem !important }
}

/* ≥1400px (xxl) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px
    }
}
button, .button {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    letter-spacing: 0;
    text-align: center;
    transition: all 0.15s linear;
    font-style: normal;
    font-weight: 600 !important;
    text-decoration: none;
    text-transform: none;
    background-color: rgba(255, 255, 255, 0.0);
    border: 2px solid #003a76;
    border-radius: 6px;
    color: #003a76;
    fill: #003a76;
    font-size: 20px;
    padding: 5px 33px;
}

    button:disabled, 
    .button:disabled, 
    .button.button--secondary:disabled
     {
        border: 1px solid #d0d0d0;
        pointer-events: none;
    }

    .button.button--secondary:disabled {
        background-color: inherit;
    }

    button:hover, button:focus, .button:hover, .button:focus, button:active, .button:active {
        font-style: normal;
        font-weight: 800;
        text-decoration: none;
        background-color: rgba(0,58,118,1.0);
        border: 2px solid #003a76;
        color: #fff
    }

    button:active, .button:active {
        font-style: normal;
        font-weight: 800;
        text-decoration: none;
        background-color: rgba(80,138,198,100);
        border: 2px solid #003a76;
        border-color: #508ac6;
        color: #fff
    }

    button:disabled, .button:disabled, .button.button--secondary:disabled {
        color: #f1f1f1
    }

    button:disabled, .button:disabled {
        background-color: #d0d0d0
    }

    .button.button--secondary {
        font-style: normal;
        font-weight: normal;
        text-decoration: none;
        background-color: rgba(0,58,118,1.0);
        border: 2px solid #003a76;
        border-radius: 6px;
        color: #fff;
        fill: #fff;
        text-transform: none
    }

        .button.button--secondary:hover, .button.button--secondary:focus, .button.button--secondary:active {
            font-style: normal;
            font-weight: 800;
            text-decoration: none;
            background-color: rgba(255,255,255,1.0);
            border: 2px solid #003a76;
            color: #003a76;
            fill: #003a76
        }

        .button.button--secondary:active {
            font-style: normal;
            font-weight: 800;
            text-decoration: none;
            background-color: rgba(255,255,255,100);
            border: 2px solid #003a76;
            border-color: #508ac6;
            color: #508ac6;
            fill: #508ac6
        }

    .button.button--small {
        font-size: 20px;
        padding: 8.5px 33px
    }

    .button.button--large {
        font-size: 18px;
        padding: 12px 44px
    }

.btnV1 {
    position: relative;
    z-index: 0
}

    .btnV1 span {
        transform-origin: center left;
        transition: color .3s ease;
        position: relative;
        z-index: 1
    }

    .btnV1:before, .btnV1:after {
        content: '';
        background: #fff;
        height: 50%;
        width: 0;
        position: absolute;
        transition: .3s cubic-bezier(0.785,0.135,0.15,0.86);
        -webkit-transition: .3s cubic-bezier(0.785,0.135,0.15,0.86);
        border-radius: 0 0 6px 6px
    }

    .btnV1:before {
        top: 0;
        left: 0;
        right: auto;
        border-radius: 6px 6px 0 0
    }

    .btnV1:after {
        bottom: 0;
        right: 0;
        left: auto
    }

    .btnV1:hover:before {
        width: 100%;
        right: 0;
        left: auto
    }

    .btnV1:hover:after {
        width: 100%;
        left: 0;
        right: auto
    }

    .btnV1:hover span {
        color: #003a76
    }

.btnV2 {
    position: relative;
    z-index: 0
}

    .btnV2 span {
        transform-origin: center left;
        transition: color .3s ease;
        position: relative;
        z-index: 1
    }

    .btnV2:before, .btnV2:after {
        content: '';
        background: #003a76;
        height: 50%;
        width: 0;
        position: absolute;
        transition: .3s cubic-bezier(0.785,0.135,0.15,0.86);
        -webkit-transition: .3s cubic-bezier(0.785,0.135,0.15,0.86);
        border-radius: 0 0 2px 2px
    }

    .btnV2:before {
        top: 0;
        left: 0;
        right: auto;
        border-radius: 2px 2px 0 0
    }

    .btnV2:after {
        bottom: 0;
        right: 0;
        left: auto
    }

    .btnV2:hover:before {
        width: 100%;
        right: 0;
        left: auto
    }

    .btnV2:hover:after {
        width: 100%;
        left: 0;
        right: auto
    }

    .btnV2:hover span {
        color: #fff
    }

@media(max-width:1440px) {
    .button, .button--primary, .button--secondary {
        font-size: 18px;
        padding: 6px 20px !important
    }
}
/* Links inside MAIN: distinct yet simple */
main a:not(.button) {
  color: var(--brand, #003a76);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: from-font;
  font-weight: 600;                /* subtle emphasis vs body text */
}

/* Hover/active: keep underline, add gentle bg */
main a:not(.button):hover,
main a:not(.button):active {
  background: var(--hover-bg, #eff7ff);
  text-decoration: underline;
}

/* Keyboard focus: clear, high-contrast outline */
main a:not(.button):focus-visible {
  outline: 2px solid var(--brand, #003a76);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Optional: visited state (keeps brand feel) */
main a:not(.button):visited {
  color: #002d5a;
}
/* ==========================================================================
   TransparentChoice Header — CSS (mobile-first)
   ========================================================================== */

:root {
    --brand: #003A76;
    --text: #424448;
    --hover-bg: #eff7ff;
    --dropdown-border: #eff7fe;
}

/* --- Header container, logo, menu --- */
.header {
    position: relative;
    z-index: 1000;
    padding: 15px 0;
    background-color: #fff;
}

.header__logo {
    margin-right: 20px;
    max-width: 250px;
    height: 74px;
}

    .header__logo img {
        display: block;
        max-width: 100%;
        height: auto;
    }

.header__menu {
    margin-left: 0; /* default for mobile-first */
    order: 3;
}

/* ========== Base resets ========== */
.menu { margin: 0; padding: 0; list-style: none; }
.menu-item { margin: 0; line-height: 2; }
.nav-details > summary { list-style: none; }
.nav-details > summary::-webkit-details-marker { display: none; }


/* --- Navigation panel (mobile-first hidden) --- */
.navigation-primary {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 99;
    background: #fff;
    box-shadow: 0 23px 50px -14px rgba(0,0,0,.21);
    left: 10px;
    right: 10px;
    border-radius: 0 0 10px 10px;
    max-height: 80vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

    .navigation-primary.is-open {
        display: block;
    }

/* --- Mobile nav toggle button styles --- */
.header__mobile-toggle {
    display: inline-flex;
    border: 0;
    padding: 8px;
    margin: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--brand);
}

    .header__mobile-toggle:focus-visible {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
    }

/* --- Mobile menu toggle & icon swap --- */
.header__mobile-menu-open-icon { display: block; }
.header__mobile-menu-close-icon { display: none; }

.header__mobile-toggle[aria-expanded="true"] .header__mobile-menu-open-icon { display: none; }
.header__mobile-toggle[aria-expanded="true"] .header__mobile-menu-close-icon { display: block; }

.header__mobile-toggle svg {
    fill: var(--brand); 
    pointer-events: none;
}


/* Base link styles for BOTH <a> and <summary> */
.menu-link {
    font: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    text-decoration: none;
    cursor: pointer; /* for <summary> */
}

.menu-link:focus-visible {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
    }


.menu-link.menu-link--root {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 30px;
    min-height: 44px;
}

.menu-link.menu-link--sub {
    display: block;
    padding: 10px 50px;
    transition: background-color 0.3s;
}

    /* CTA */
.menu-link.menu-link--cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    border-radius: 6px;
    background: var(--brand);
    border: 2px solid var(--brand);
    color: #fff;
    text-decoration: none;
}

.menu-link.menu-link--cta .cta-arrow {
    line-height: 1;
    font-size: 18px;
    pointer-events: none;
}

.menu-link.menu-link--cta:hover {
            background: #fff;
            color: var(--brand);
            border-color: var(--brand);
        }

.menu-link.menu-link--cta:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 2px;
        }


/* --- Chevron container layout --- */
.menu-child-toggle-icon {
    margin-left: auto;
    display: flex;
    align-items: center;
}

    .menu-child-toggle-icon > .icon--chevron {
        display: block;
        fill: currentColor;
        pointer-events: none;
        transition: transform .4s;
        transform-origin: 50% 50%;
    }

.nav-details[open] .menu-child-toggle-icon > .icon--chevron {
    transform: rotate(180deg);
}


/* Default (mobile) visibility driven by <details> */

.menu--sub {
    display: none;
    background: #fff;
    border: none;
    box-shadow: none;
    position: static;
    width: 100%;
    padding: 6px 0;
}

.nav-details[open] > .menu--sub {
    display: block;
}
.nav-details[open] > summary.menu-link--root {
    color: var(--brand);
}

@media (max-width: 991.98px) {
    .menu-link:not(.menu-link--cta):hover {
        color: var(--brand);
        background-color: var(--hover-bg);
    }

    .menu-link.menu-link--cta {
        display: flex; /* replace inline-flex */
        width: 100%;
        box-sizing: border-box;       
    }
}

/* ========================================================================== */
/* DESKTOP (min-width: 992px)                                                */
/* ========================================================================== */
@media (min-width: 992px) {
    .header__menu {
        margin-left: auto;
        order: initial;
    }

    .header__mobile-toggle {
        display: none;
    }

    .navigation-primary {
        display: block;
        position: static;
        left: auto;
        right: auto;
        box-shadow: none;
        border-radius: 0;
        max-height: none; /* reset */
        overflow: visible; /* reset */
    }

    /* Top-level items layout */
    .menu--root {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .menu--root > li {
        position: relative;
    }

    /* Submenu dropdown styles + reveal on hover/focus */
    .menu--sub {
        box-shadow: 0 23px 50px -14px rgba(0,0,0,.21);
        position: absolute;
        top: 100%;
        left: -9999px;
        width: max-content;
        z-index: 9999;
        border: 2px solid var(--dropdown-border);
    }


    /* adds a tiny space between text and chevron */
    .menu-link.menu-link--root > .menu-child-toggle-icon {
        display: inline-flex;
        vertical-align: middle;
        margin-left: 6px;
    }

    .icon--chevron {
        width: 10px;
        height: auto;
    }

    /* Desktop submenu hover feedback */
    .menu-link.menu-link--sub {
        position: relative;
        padding: 10px;
    }

        .menu-link.menu-link--sub::after {
            content: "";
            position: absolute;
            left: 10px;
            right: 10px;
            bottom: 6px;
            height: 2px;
            background: var(--brand);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .25s ease;
            pointer-events: none;
        }

        .menu-link.menu-link--sub:focus::after {
            transform: scaleX(1);
        }

    .menu-link.menu-link--root {
        display: inline-flex; /* give it a real box */
        align-items: center;
        position: relative; /* anchor the underline here */
        width: auto;
        padding: 0;
        min-height: 0;
        white-space: nowrap;
    }

    /* draw underline on the link (not the <li>) */
        .menu-link.menu-link--root::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0; /* stretch under the whole link (incl. chevron) */
            bottom: -6px;
            height: 2px;
            background: var(--brand);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .25s ease;
            pointer-events: none;
        }

    /* show underline on hover */
        .menu-link.menu-link--root:hover::after,
        .menu-link.menu-link--root:focus-within::after {
            transform: scaleX(1);
        }

    /* if the item is the current page */
    .menu-item.is-active .menu-link.menu-link--root::after {
        transform: scaleX(1);
    }

    /* if a <details> is open, also show underline on its <summary> */
    details.nav-details[open] > summary.menu-link--root::after {
        transform: scaleX(1);
    }

    /* When <details> is open, show + position the dropdown */
    details.nav-details[open] > .menu--sub {
        display: block;
        left: 0;
        max-height: none;
        overflow: visible;
        visibility: visible;
    }
}

@media (min-width: 992px) and (hover: hover) {
   .menu-link.menu-link--sub:hover::after {
        transform: scaleX(1);
    }
}


@media (prefers-reduced-motion: reduce) {
    .menu--sub, .icon--chevron,
    .menu-link.menu-link--sub::after {
        transition: none !important;
    }
}
/* Footer */

footer a,
footer a:hover,
footer a:focus,
footer a i,
footer a:hover i,
footer a:focus i {
    text-decoration: none !important;
}

footer ul,
footer ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

    footer ul li,
    footer ol li {
        margin: 0.7rem 0;
        font-size: 1rem;
        line-height: 2;
    }

    footer ul ul,
    footer ol ul,
    footer ul ol,
    footer ol ol {
        margin: 1.5rem 0;
        padding-left: 2.8rem;
    }

/* Footer Icon */
.social_icon {
    display: flex;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
    background: #FF6352;
}

    .social_icon:hover {
        background: #003A76;
    }
.vimeo-lite {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 800px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.2s;
    outline: none;
}

    .vimeo-lite:focus-visible {
        box-shadow: 0 0 0 4px #7cbc00;
    }

.vimeo-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    border-radius: inherit;
}

.vimeo-playbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    pointer-events: none;
}

.vimeo-lite:hover .vimeo-playbtn,
.vimeo-lite:focus-visible .vimeo-playbtn {
    background: rgba(124, 188, 0, 0.8);
}

.vimeo-playbtn::before {
    content: "";
    display: block;
    margin-left: 6px;
    border-style: solid;
    border-width: 16px 0 16px 28px;
    border-color: transparent transparent transparent #fff;
}

.vimeo-lite iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    display: block;
    background: #fff;
}
.youtube-lite {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 800px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.2s;
    outline: none;
}

.youtube-lite:focus-visible {
    box-shadow: 0 0 0 4px #7cbc00;
}

.youtube-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    border-radius: inherit;
}

.youtube-playbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    pointer-events: none;
}

.youtube-lite:hover .youtube-playbtn,
.youtube-lite:focus-visible .youtube-playbtn {
    background: rgba(124, 188, 0, 0.8);
}

.youtube-playbtn::before {
    content: "";
    display: block;
    margin-left: 6px;
    border-style: solid;
    border-width: 16px 0 16px 28px;
    border-color: transparent transparent transparent #fff;
}

.youtube-lite iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    display: block;
    background: #fff;
}
/* Page-specific styles for /double-…  */
:root {
  --brand: #003A76;
  --ink: #424448;
  --muted: #6c757d;
  --surface: #ffffff;
  --surface-alt: #f8fbff;
  --card: #ffffff;
  --border: #e6e9ed;
  --shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* ---------- Hero ---------- */
.hero { text-align: center; }

.hero__inner {
  max-width: 900px;
  margin: 3rem auto;
}

.hero__title { margin: 0 0 .5rem; }

.hero__lead {
  color: var(--muted);
  font-size: 1.125rem;
  margin: 0 auto 1rem;
}

/* Orange CTA button (hero) */
.button--orange {
  background-color: #ff7a59;
  border-color: #ff7a59;
  color: #fff;
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
}
.button--orange:hover,
.button--orange:focus {
  background-color: #e86a4b;
  border-color: #e86a4b;
  color: #fff;
}
.button--orange:active {
  background-color: #cc5c41;
  border-color: #cc5c41;
  color: #fff;
}

/* Dark hero variant */
.hero.hero--dark {
  background: #002a5c;
  color: #fff;
  padding: 4rem 1rem;
}
.hero.hero--dark .hero__title { color: #fff; }
.hero.hero--dark .hero__lead { color: #dce6f5; }

/* ---------- Sections ---------- */
.section {
  padding: 3rem 0 2.25rem;
  border-top: 1px solid var(--border);
}
.section--alt {
  background: linear-gradient(180deg, rgba(248,251,255,.9), #fff 85%);
}
.section__head { margin-bottom: 1.25rem; }
.section__title { margin: 0 0 .25rem; }
.section__eyebrow {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
}
.section__head.text-center { text-align: center; }

/* ---------- Video cards & grids ---------- */
.video-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.video-card { display: block; }

/* Title sits under the video */
.video-card__title {
  margin: .75rem 0 .25rem;
  font-size: calc(1.275rem + .3vw); /* ~h4 responsive */
  line-height: 1.3;
}

/* Ensure players fill the column */
.video-card .vimeo-lite,
.series-item .vimeo-lite {
  max-width: 100%;
}

/* Summary under the title */
.video-summary {
  margin: .75rem 0 0;
  color: var(--muted);
}

/* ---------- Series section ---------- */
.series-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

/* Keep anchors tidy */
.series-item {
  display: block;
  padding: 1.25rem 0 0;
  border-top: 1px dashed var(--border);
}
.series-item:first-of-type { border-top: 0; }

/* ---------- Outcomes / CTA ---------- */
.outcomes {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding-left: 0;
  list-style: none;
}
.outcomes li { margin: .35rem 0; }

.cta-row { text-align: center; }
.cta-row .button {
  padding-inline: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* Optional outcomes card wrapper */
.outcomes-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem .5rem;
  max-width: 900px;
  margin: 0 auto 1.25rem;
}