* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #172033;
}

.site-header {
    background:
        radial-gradient(
            circle at top right,
            rgba(68, 142, 190, 0.35),
            transparent 38%
        ),
        #082b4c;
    color: white;
}

.nav-shell {
    width: min(1180px, calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-brand {
    color: white;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease;
}

.nav-link:hover,
.nav-link--active {
    color: white;
}

.nav-link--active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 3px;
    background: white;
    border-radius: 999px;
}

.hero-intro {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: 82px 0 96px;
    text-align: center;
}

.hero-label {
    margin: 0 0 16px;
    color: #a8d5f0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-intro h1 {
    max-width: 820px;
    margin: 0 auto 22px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-description {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 19px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .nav-shell {
        min-height: auto;
        padding: 22px 0;
        flex-direction: column;
        gap: 12px;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 14px;
    }

    .nav-link--active::after {
        bottom: 2px;
    }

    .hero-intro {
        padding: 60px 0 72px;
    }

    .hero-description {
        font-size: 17px;
    }
}

main {
    width: min(1100px, calc(100% - 40px));
    margin: 48px auto;
}

.page-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 56px auto;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-label {
    margin: 0 0 6px;
    color: #4d6c89;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.story-card {
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: white;
    border: 1px solid #dfe5eb;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(8, 43, 76, 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(8, 43, 76, 0.15);
}

.story-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.story-card__body {
    padding: 22px;
}

.story-card__category {
    display: block;
    margin-bottom: 10px;
    color: #276b9f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.story-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
}

.story-card p {
    margin: 0 0 20px;
    color: #586577;
    line-height: 1.6;
}

.story-card__link {
    color: #082b4c;
    font-weight: 800;
}

@media (max-width: 850px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 38px;
    }
}
.blog-section {
    margin-top: 72px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(250px, 1fr)
    );
    gap: 22px;
}

.blog-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    color: white;
    text-decoration: none;
    background: #082b4c;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(8, 43, 76, 0.14);
    isolation: isolate;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(8, 43, 76, 0.22);
}

.blog-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
    z-index: -2;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.04);
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 25, 44, 0.08) 10%,
            rgba(4, 25, 44, 0.92) 100%
        );
    z-index: -1;
}

.blog-card__overlay {
    min-height: 320px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-card__category {
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 10px;
    color: white;
    background: rgba(31, 116, 173, 0.92);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0 0 18px;
    max-width: 330px;
    font-size: 23px;
    line-height: 1.15;
}

.blog-card__link {
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 650px) {
    .blog-section {
        margin-top: 54px;
    }

    .blog-card,
    .blog-card__overlay {
        min-height: 290px;
    }
}
.video-section {
    margin-top: 84px;
}

.featured-video {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dfe5eb;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(8, 43, 76, 0.12);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.featured-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 60px rgba(8, 43, 76, 0.2);
}

.featured-video__media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: #061f36;
}

.featured-video__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 400ms ease;
}

.featured-video:hover .featured-video__media img {
    transform: scale(1.025);
}

.featured-video__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 24, 42, 0.04),
            rgba(4, 24, 42, 0.3)
        );
}

.featured-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    color: #082b4c;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%);
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.featured-video:hover .featured-video__play {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.08);
}

.featured-video__content {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-video__label {
    margin-bottom: 14px;
    color: #276b9f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.featured-video h3 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.featured-video__content p {
    margin: 0 0 28px;
    color: #586577;
    line-height: 1.7;
}

.featured-video__link {
    color: #082b4c;
    font-weight: 800;
}

@media (max-width: 900px) {
    .featured-video {
        grid-template-columns: 1fr;
    }

    .featured-video__media,
    .featured-video__media img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .featured-video__content {
        padding: 30px;
    }
}
.shorts-section {
    margin-top: 84px;
    margin-bottom: 90px;
}

.shorts-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 260px);
    gap: 20px;
    overflow-x: auto;
    padding: 4px 4px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.short-card {
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dfe5eb;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(8, 43, 76, 0.1);
    scroll-snap-align: start;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.short-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(8, 43, 76, 0.18);
}

.short-card__media {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #061f36;
}

.short-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 350ms ease;
}

.short-card:hover .short-card__media img {
    transform: scale(1.1);
}

.short-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(3, 20, 36, 0.55)
        );
}

.short-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    padding-left: 4px;
    color: #082b4c;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.short-card:hover .short-card__play {
    transform: translate(-50%, -50%) scale(1.08);
}

.short-card__content {
    padding: 20px;
}

.short-card h3 {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.25;
}

.short-card__link {
    color: #276b9f;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 650px) {
    .shorts-grid {
        grid-auto-columns: minmax(190px, 72vw);
    }
}
/* Roku-style redesign foundation */

body {
    background:
        radial-gradient(
            circle at 25% 0%,
            rgba(95, 38, 133, 0.24),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #17051f 0%,
            #09040e 52%,
            #050208 100%
        );
    color: #ffffff;
}

.site-header {
    background: transparent;
}

.nav-shell {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.page-shell {
    width: min(1380px, calc(100% - 56px));
    margin-top: 42px;
}

.featured-spotlight {
    width: min(1380px, calc(100% - 56px));
    margin: 26px auto 42px;
}

.featured-spotlight__link {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.55fr);
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    background:
        linear-gradient(
            135deg,
            #341042,
            #16071f
        );
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.42),
        inset 0 1px rgba(255, 255, 255, 0.08);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.featured-spotlight__link:hover {
    transform: scale(1.012);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow:
        0 34px 95px rgba(0, 0, 0, 0.55),
        0 0 0 3px rgba(157, 78, 221, 0.26);
}

.featured-spotlight__content {
    position: relative;
    z-index: 3;
    padding: clamp(38px, 6vw, 82px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-spotlight__label {
    width: fit-content;
    margin-bottom: 20px;
    padding: 7px 11px;
    color: #ffffff;
    background: rgba(155, 65, 205, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.featured-spotlight h1 {
    max-width: 680px;
    margin: 0 0 22px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.featured-spotlight__content p {
    max-width: 610px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.6;
}

.featured-spotlight__button {
    width: fit-content;
    padding: 13px 20px;
    color: #15061d;
    background: #ffffff;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 900;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.featured-spotlight__link:hover
.featured-spotlight__button {
    background: #f0d8ff;
    transform: translateX(4px);
}

.featured-spotlight__media {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.featured-spotlight__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            #24102e 0%,
            rgba(36, 16, 46, 0.72) 13%,
            transparent 48%
        ),
        linear-gradient(
            0deg,
            rgba(9, 2, 13, 0.25),
            transparent 45%
        );
}

.featured-spotlight__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 600ms ease;
}

.featured-spotlight__link:hover
.featured-spotlight__media img {
    transform: scale(1.035);
}

.section-label {
    color: #bd86dc;
}

.section-heading h2 {
    color: #ffffff;
}

@media (max-width: 850px) {
    .page-shell,
    .featured-spotlight {
        width: min(100% - 28px, 1380px);
    }

    .featured-spotlight__link {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .featured-spotlight__media {
        grid-row: 1;
        aspect-ratio: 16 / 9;
    }

    .featured-spotlight__media::before {
        background:
            linear-gradient(
                0deg,
                #24102e 0%,
                rgba(36, 16, 46, 0.2) 58%,
                transparent 100%
            );
    }

    .featured-spotlight__media img {
        min-height: 0;
        height: 100%;
    }

    .featured-spotlight__content {
        padding: 32px;
    }

    .featured-spotlight h1 {
        font-size: clamp(34px, 9vw, 52px);
    }
}
/* Compact featured-story spotlight */

.featured-spotlight {
    width: min(1120px, calc(100% - 56px));
    margin-top: 24px;
    margin-bottom: 38px;
}

.featured-spotlight__link {
    min-height: 360px;
    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(0, 1.35fr);
}

.featured-spotlight__content {
    padding: clamp(30px, 4vw, 54px);
}

.featured-spotlight h1 {
    max-width: 560px;
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.02;
}

.featured-spotlight__content p {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
}

.featured-spotlight__media img {
    min-height: 360px;
}

.featured-spotlight__button {
    padding: 11px 17px;
    font-size: 14px;
}

@media (max-width: 850px) {
    .featured-spotlight {
        width: min(100% - 28px, 1120px);
    }

    .featured-spotlight__link {
        grid-template-columns: 1fr;
    }

    .featured-spotlight__media img {
        min-height: 0;
    }
}

.podcast-section {
    margin-top: 84px;
}

/* Compact horizontal podcast cards */

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.podcast-card {
    min-width: 0;
    min-height: 150px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.podcast-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(195, 126, 235, 0.55);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.podcast-card__image {
    min-width: 0;
    min-height: 150px;
    overflow: hidden;
    background: #24102e;
}

.podcast-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    transition: transform 400ms ease;
}

.podcast-card:hover .podcast-card__image img {
    transform: scale(1.045);
}

.podcast-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.podcast-card__content {
    min-width: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.podcast-card__series {
    margin-bottom: 8px;
    color: #c98bea;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.podcast-card h3 {
    margin: 0 0 10px;
    display: -webkit-box;
    overflow: hidden;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: -0.015em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.podcast-card__date {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
}

.podcast-card__action {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .podcast-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .podcast-card {
        grid-template-columns: 125px minmax(0, 1fr);
        min-height: 125px;
    }

    .podcast-card__image,
    .podcast-card__image img,
    .podcast-card__placeholder {
        min-height: 125px;
    }

    .podcast-card__content {
        padding: 15px;
    }

    .podcast-card h3 {
        font-size: 15px;
    }

    .podcast-card__date {
        display: none;
    }
}
.site-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-brand__logo {
    display: block;
    width: auto;
    height: 48px;
    max-width: 240px;
    object-fit: contain;
}

@media (max-width: 700px) {
    .site-brand__logo {
        height: 40px;
        max-width: 210px;
    }
}
:root {
    --coastal-navy: #021f49;
    --coastal-navy-light: #0e2e57;
    --coastal-teal: #398f93;
    --coastal-teal-bright: #42999d;
    --coastal-aqua: #dfecee;
    --coastal-white: #ffffff;
}

/* Header and navigation */

.site-header {
    background: #ffffff;
    color: var(--coastal-navy);
}

.nav-shell {
    min-height: 108px;
    border-bottom: 1px solid #d9e7e9;
}

.site-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-brand__logo {
    display: block;
    width: clamp(205px, 21vw, 280px);
    height: auto;
    object-fit: contain;
}

.nav-link {
    color: rgba(2, 31, 73, 0.68);
}

.nav-link:hover,
.nav-link--active {
    color: var(--coastal-navy);
}

.nav-link--active::after {
    background: var(--coastal-teal);
}

/* Main page background */

body {
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(57, 143, 147, 0.27),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #082c4e 0%,
            #031b37 48%,
            #011329 100%
        );
    color: #ffffff;
}

/* Featured story */

.featured-spotlight__link {
    background:
        linear-gradient(
            135deg,
            var(--coastal-navy-light),
            #03172f
        );
    border-color: rgba(66, 153, 157, 0.45);
}

.featured-spotlight__link:hover {
    border-color: var(--coastal-teal-bright);
    box-shadow:
        0 34px 95px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(66, 153, 157, 0.24);
}

.featured-spotlight__label {
    background: rgba(57, 143, 147, 0.94);
}

.featured-spotlight__media::before {
    background:
        linear-gradient(
            90deg,
            #082846 0%,
            rgba(8, 40, 70, 0.76) 14%,
            transparent 50%
        ),
        linear-gradient(
            0deg,
            rgba(1, 19, 41, 0.3),
            transparent 45%
        );
}

.featured-spotlight__button {
    color: var(--coastal-navy);
    background: #ffffff;
}

.featured-spotlight__link:hover
.featured-spotlight__button {
    background: var(--coastal-aqua);
}

/* Section headings and accent text */

.section-label {
    color: #65c2c5;
}

.story-card__category,
.featured-video__label,
.short-card__link {
    color: var(--coastal-teal);
}

.blog-card__category {
    background: rgba(57, 143, 147, 0.95);
}

/* Podcast cards */

.podcast-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.podcast-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(66, 153, 157, 0.8);
}

.podcast-card__image {
    background: var(--coastal-navy-light);
}

.podcast-card__series {
    color: #69c5c8;
}

/* Mobile header */

@media (max-width: 700px) {
    .nav-shell {
        min-height: auto;
        padding: 18px 0;
    }

    .site-brand__logo {
        width: min(245px, 78vw);
    }

    .main-nav {
        border-top: 1px solid #d9e7e9;
        padding-top: 8px;
    }
}
/* Space between hero and first content section */

.featured-spotlight {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 28px 80px;
    background: #ffffff;
}

.featured-spotlight__link {
    width: min(1120px, 100%);
    margin: 0 auto;
}

@media (max-width: 850px) {
    .featured-spotlight {
        width: 100%;
        padding: 18px 14px 60px;
    }
}
/* Dark titles on white content cards */

.story-card h3,
.featured-video h3,
.short-card h3 {
    color: var(--coastal-navy);
}
/* Member logo carousel */

.member-section {
    margin-top: 84px;
    padding: 38px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d9e7e9;
    border-radius: 22px;
}

.member-section .section-label {
    color: var(--coastal-teal);
}

.member-section .section-heading h2 {
    color: var(--coastal-navy);
}

.member-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.member-carousel::before,
.member-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 70px;
    pointer-events: none;
}

.member-carousel::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #ffffff,
        transparent
    );
}

.member-carousel::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #ffffff,
        transparent
    );
}

.member-carousel__track {
    width: max-content;
    display: flex;
    animation: member-logo-scroll 45s linear infinite;
}

.member-carousel:hover .member-carousel__track {
    animation-play-state: paused;
}

.member-carousel__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.member-logo-card {
    width: 180px;
    height: 110px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    background: #f7fafb;
    border: 1px solid #dfe9eb;
    border-radius: 14px;
}

.member-logo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes member-logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 700px) {
    .member-section {
        margin-top: 60px;
        padding: 28px 18px;
    }

    .member-logo-card {
        width: 145px;
        height: 90px;
        padding: 14px;
    }

    .member-carousel::before,
    .member-carousel::after {
        width: 35px;
    }

    .member-carousel__track {
        animation-duration: 35s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .member-carousel {
        overflow-x: auto;
    }

    .member-carousel__track {
        animation: none;
    }

    .member-carousel__group[aria-hidden="true"] {
        display: none;
    }
}
/* Remove the white member carousel card styling */

.member-section {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.member-section .section-label {
    color: #9fe3e5;
}

.member-section .section-heading h2 {
    color: #ffffff;
}

.member-carousel::before,
.member-carousel::after {
    display: none;
}

.member-logo-card {
    background: #ffffff;
    border: 1px solid #dfe9eb;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
/* Site footer */

.site-footer {
    margin-top: 90px;
    padding: 48px 24px;
    background: transparent;
    border: 0;
}

.site-footer__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.site-footer__brand img {
    display: block;
    width: min(300px, 100%);
    height: auto;
    object-fit: contain;
}

.site-footer__contact {
    width: 430px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__contact-row {
    display: grid;
    grid-template-columns: 75px 1fr;
    align-items: start;
    gap: 12px;
}

.site-footer__contact-row span {
    color: #ffffff !important;
    font-weight: 600;
    text-align: right;
}

.site-footer__contact-row a,
.site-footer__contact-row a:visited {
    color: #ffffff !important;
    line-height: 1.6;
    text-align: left;
    text-decoration: none !important;
}

.site-footer__contact-row a:hover,
.site-footer__contact-row a:focus {
    color: #9fe3e5 !important;
    text-decoration: underline !important;
}

@media (max-width: 700px) {
    .site-footer {
        margin-top: 64px;
        padding: 40px 20px;
    }

    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .site-footer__brand img {
        width: min(250px, 100%);
    }

    .site-footer__contact {
        width: 100%;
    }

    .site-footer__contact-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .site-footer__contact-row span,
    .site-footer__contact-row a {
        text-align: left;
    }
}
.site-footer__contact,
.site-footer__contact span,
.site-footer__contact a,
.site-footer__contact a:link,
.site-footer__contact a:visited {
    color: #ffffff !important;
}

.site-footer__contact a,
.site-footer__contact a:link,
.site-footer__contact a:visited {
    text-decoration: none !important;
    border-bottom: 0 !important;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus {
    color: #9fe3e5 !important;
    text-decoration: underline !important;
}
.people-to-know {
    margin: 56px 0;
}

.people-to-know__card {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
    overflow: hidden;
    border-radius: 24px;
    background: #f4f1ea;
}

.people-to-know__photo {
    min-height: 390px;
}

.people-to-know__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.people-to-know__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    color: #111827;
}

.people-to-know__content .section-label {
    color: #00bfb2;
}

.people-to-know__tagline {
    margin: 8px 0 26px;
    color: #021f49;
    font-size: 0.95rem;
}

.people-to-know__content h2 {
    margin: 0;
    color: #021f49;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.people-to-know__role {
    margin: 12px 0 22px;
    color: #021f49;
    font-weight: 700;
}

.people-to-know__profile {
    max-width: 620px;
    margin: 0 0 26px;
    color: #021f49;
    line-height: 1.7;
}

.people-to-know__link {
    color:#00bfb2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 760px) {
    .people-to-know {
        margin: 28px 0;
    }

    .people-to-know__card {
        display: grid;
        grid-template-columns: 110px 1fr;
        align-items: stretch;
        border-radius: 16px;
        overflow: hidden;
    }

    .people-to-know__photo {
        min-height: 0;
        height: 100%;
    }

    .people-to-know__photo img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        object-position: center;
    }

    .people-to-know__content {
        padding: 18px 16px;
        justify-content: center;
    }

    .people-to-know__content .section-label {
        margin: 0 0 4px;
        font-size: 0.7rem;
        color: #00bfb2;
    }

    .people-to-know__tagline {
        display: none;
    }

    .people-to-know__content h2 {
        margin: 0;
        font-size: 1.45rem;
        line-height: 1.05;
    }

    .people-to-know__role {
        margin: 6px 0 10px;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .people-to-know__profile {
        margin: 0 0 12px;
        font-size: 0.82rem;
        line-height: 1.45;

        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .people-to-know__link {
        font-size: 0.75rem;
        color: #00bfb2;
    }
}
.person-profile-page {
    min-height: 100vh;
    background: #f7f7f5;
    padding: 48px 24px 80px;
}

.person-profile-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.person-profile-back {
    display: inline-block;
    margin-bottom: 32px;
    color: #00bfb2;
    font-weight: 700;
    text-decoration: none;
}

.person-profile-hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
    overflow: hidden;
    border-radius: 24px;
    background: white;
}

.person-profile-photo img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
}

.person-profile-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px;
}

.person-profile-intro h1 {
    margin: 8px 0 0;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: #021f49;
}

.person-profile-role {
    margin: 14px 0 24px;
    font-weight: 700;
    color: #4b5563;
}

.person-profile-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

.person-profile-links {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.person-profile-links a {
    color: #00bfb2;
    font-weight: 800;
    text-decoration: none;
}

.person-profile-body {
    max-width: 780px;
    margin: 48px auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

.people-to-know__link {
    text-decoration: none;
}

@media (max-width: 760px) {
    .person-profile-page {
        padding: 24px 16px 56px;
    }

    .person-profile-hero {
        grid-template-columns: 1fr;
    }

    .person-profile-photo img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .person-profile-intro {
        padding: 28px 22px;
    }

    .person-profile-intro h1 {
        font-size: 2.4rem;
    }
}
