/* ============================================
   CSN Theme — Homepage Styles
   Both directions share structure;
   direction-specific overrides at the bottom.
   ============================================ */

/* ---- Direction Switcher (dev only) ---- */
.direction-switcher {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #111;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}
.direction-switcher .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.direction-switcher a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    transition: all 0.15s;
}
.direction-switcher a.active {
    color: white;
    background: var(--csn-red);
}
.direction-switcher a:hover { color: white; }

/* ---- LIVE Banner (when broadcast is live) ---- */
.csn-live-banner {
    background: linear-gradient(90deg, var(--csn-red) 0%, var(--csn-red-dark) 100%);
    color: white;
    padding: 0.65rem 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(200, 16, 46, 0.4);
}
.csn-live-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    animation: csn-live-shine 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes csn-live-shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}
.csn-live-banner__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 var(--gap);
    max-width: var(--container-wide);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.csn-live-banner__pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    background: rgba(0,0,0,0.18);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}
.csn-live-banner__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
    animation: csn-live-pulse 1.2s ease-in-out infinite;
}
@keyframes csn-live-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
.csn-live-banner__label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.csn-live-banner__matchup {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.csn-live-banner__station {
    opacity: 0.8;
    font-weight: 400;
}
.csn-live-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    color: var(--csn-red);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform 0.15s var(--ease);
    flex-shrink: 0;
}
.csn-live-banner__cta:hover {
    transform: scale(1.04);
}

@media (max-width: 640px) {
    .csn-live-banner__matchup { font-size: 0.85rem; }
    .csn-live-banner__station { display: none; }
}

/* ---- Ticker ---- */
.ticker {
    background: var(--csn-navy-deep);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 0.4rem 0;
    overflow: hidden;
}
.ticker__wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 var(--gap);
    max-width: var(--container-wide);
    margin: 0 auto;
}
.ticker__label {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--csn-red);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    white-space: nowrap;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
}
.ticker__track {
    display: flex;
    gap: 0.75rem;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}
.ticker__track-inner {
    display: flex;
    gap: 0.75rem;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
    flex-shrink: 0;
}
.ticker:hover .ticker__track-inner {
    animation-play-state: paused;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker__item { color: rgba(255,255,255,0.8); }
.ticker__item--link {
    text-decoration: none;
    transition: color 0.15s var(--ease);
}
.ticker__item--link:hover {
    color: var(--csn-gold);
}
.ticker__sep { color: var(--csn-gold); opacity: 0.6; }
.ticker__live-btn {
    padding: 0.35rem 0.9rem;
    font-size: 0.7rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn--sm { padding: 0.4rem 1rem; font-size: 0.8rem; }

/* ---- Site Header ---- */
.site-header {
    background: var(--surface-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gap);
    max-width: var(--container-wide);
    margin: 0 auto;
    height: 80px;
}

.site-header__logo-img {
    height: 50px;
    width: auto;
}

/* Brand block — CSN + KWF Title Sponsor side by side */
.site-header__brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Title Sponsor (KWF) — next to CSN logo, logo big with tag underneath */
.site-header__sponsor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    transition: transform 0.15s var(--ease);
    text-decoration: none;
}
.site-header__sponsor:hover {
    transform: translateY(-1px);
}
.site-header__sponsor:hover .site-header__sponsor-img {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}
.site-header__sponsor-img {
    height: 64px;
    width: auto;
    display: block;
    transition: filter 0.15s var(--ease);
}
.site-header__sponsor-tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--csn-gold);
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .site-header__brand { gap: 1rem; }
    .site-header__sponsor-img { height: 52px; }
    .site-header__sponsor-tag { font-size: 0.55rem; }
}
@media (max-width: 768px) {
    .site-header__sponsor { display: none; }
}

.logo-placeholder {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.logo-placeholder__csn {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--csn-navy);
    letter-spacing: -0.02em;
}
.logo-placeholder__sub {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.logo-placeholder--footer .logo-placeholder__csn { color: white; }
.logo-placeholder--footer .logo-placeholder__sub { color: var(--text-muted); }

/* Nav */
.site-nav__list {
    display: flex;
    gap: 0.25rem;
}
.site-nav__link {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    transition: all 0.15s var(--ease);
    color: var(--text-secondary);
}
.site-nav__link:hover {
    color: var(--csn-navy);
    background: var(--surface-light);
}

/* Mobile nav toggle */
.site-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}
.site-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--csn-navy);
    transition: 0.2s;
}

@media (max-width: 960px) {
    .site-nav__toggle { display: flex; }
    .site-nav__list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-light);
    }
    .site-nav__list.is-open { display: flex; }
    .site-nav__link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}


/* ---- HERO ---- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem var(--gap);
    max-width: var(--container-wide);
    margin: 0 auto;
}

.hero__status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero__matchup {
    margin: 0;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
}
.hero__vs {
    font-size: 0.4em;
    opacity: 0.5;
    font-weight: 600;
    display: inline-block;
    margin: 0 0.2em;
}
.hero__broadcast {
    max-width: 900px;
}

.hero__meta {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.hero__meta-sep { opacity: 0.4; }

.hero__actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero sponsor — block on the right with internal 2-column layout */
.hero__sponsor-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    color: white;
    width: 100%;
}
.hero__sponsor-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
}
/* Logo + video both share the same fixed height so they line up */
.hero__sponsor-logo,
.hero__sponsor-video {
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 0; /* prevent grid blowout from intrinsic media dimensions */
}
.hero__sponsor-logo {
    background: white;
    padding: 1rem 1.25rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.hero__sponsor-video {
    background: #000;
    position: relative;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    width: 100%;
}
.hero__sponsor-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}
.hero__sponsor-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.15s var(--ease);
    pointer-events: none;
}
.hero__sponsor-video:hover .hero__sponsor-video-play {
    background: rgba(0, 0, 0, 0.2);
}
.hero__sponsor-video-play svg {
    width: 36px;
    height: 36px;
    background: var(--csn-red);
    border-radius: 50%;
    padding: 8px 8px 8px 11px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
    transition: transform 0.15s var(--ease);
}
.hero__sponsor-video:hover .hero__sponsor-video-play svg {
    transform: scale(1.08);
}
.hero__sponsor-video.is-playing .hero__sponsor-video-play {
    opacity: 0;
}
.hero__sponsor-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 960px) {
    .hero__inner {
        grid-template-columns: 1fr;
        padding: 3rem var(--gap);
    }
    .hero__sponsor { order: -1; }
    .hero__sponsor-card { max-width: 480px; }
}


/* ---- SCORESTRIP ---- */
.scorestrip {
    background: var(--surface-light);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}
.scorestrip .container--wide {
    padding: 0 var(--gap);
    max-width: var(--container-wide);
    margin: 0 auto;
}
.scorestrip__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.scorestrip__title {
    display: flex;
    gap: 1rem;
}
.scorestrip__region {
    cursor: pointer;
    padding-bottom: 0.25rem;
    color: var(--text-secondary);
    transition: color 0.15s;
}
.scorestrip__region--active {
    color: var(--csn-navy);
    border-bottom: 2px solid var(--csn-red);
}

/* Sport tabs (top level — Football, Basketball, etc.) */
.scorestrip__sports {
    display: flex;
    gap: 0.25rem;
}
.scorestrip__sport-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: 999px;
    transition: all 0.15s var(--ease);
}
.scorestrip__sport-tab:hover {
    color: var(--csn-navy);
    background: rgba(26, 39, 68, 0.06);
}
.scorestrip__sport-tab--active {
    color: white;
    background: var(--csn-navy);
}
.scorestrip__sport-tab--active:hover {
    color: white;
    background: var(--csn-navy);
}
.scorestrip__sport-icon { font-size: 0.9em; }

/* Region sub-tabs (NC HS, SC HS, College, SoCon, etc.) */
.scorestrip__regions {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

/* Sport panels */
.scorestrip__sport-panel {
    display: none;
}
.scorestrip__sport-panel--active {
    display: block;
}

/* ScoreStream iframe panels */
.scorestrip__panel {
    display: none;
}
.scorestrip__panel--active {
    display: block;
}
.scorestrip__iframe {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
}


/* ---- SPORTS HUDDLE ---- */
.huddle__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
}

.huddle__hosts {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.huddle__host {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--csn-navy), var(--csn-red));
    flex-shrink: 0;
}

.huddle__player-card {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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


/* ---- BROADCAST CARDS ---- */
.broadcast-card__cover { position: relative; overflow: hidden; }
.broadcast-card:hover .broadcast-card__cover svg {
    transform: scale(1.1);
    opacity: 1;
}


/* ---- NEWS ---- */
.news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.news__item {
    background: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background-color 0.15s var(--ease);
    position: relative;
}
.news__item:hover { background-color: var(--surface-light); }
.news__item--featured:hover { background-color: var(--csn-navy-deep); }
.news__item-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
}
.news__item-meta {
    color: var(--text-secondary);
}

/* Featured item — spans left column, full height of the two right cards.
   Image is the BACKGROUND of the entire card, text overlaid in white. */
.news__item--featured {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 1.5rem;
    background-color: var(--csn-navy-deep);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
    justify-content: flex-end; /* anchor text to bottom */
    min-height: 100%;
}
/* Dark gradient overlay for text legibility */
.news__item--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0) 0%,
        rgba(15,26,46,0.2) 40%,
        rgba(15,26,46,0.85) 80%,
        rgba(15,26,46,0.95) 100%);
    z-index: 1;
}
.news__item--featured:hover {
    background-color: var(--csn-navy-deep);
}
.news__item--featured:hover::before {
    background: linear-gradient(180deg,
        rgba(0,0,0,0) 0%,
        rgba(15,26,46,0.3) 40%,
        rgba(15,26,46,0.9) 80%,
        rgba(15,26,46,1) 100%);
}
.news__item--featured h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    color: white;
}
.news__item--featured .news__item-meta {
    color: rgba(255,255,255,0.75);
}

/* Featured fallback — no image: use brand gradient */
.news__item--featured-fallback {
    background-image: linear-gradient(135deg, var(--csn-navy-deep) 0%, var(--csn-navy) 60%, #1e3050 100%) !important;
}
.news__item--featured-fallback::before {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 16, 46, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.12) 0%, transparent 50%);
}
.news__item--featured-fallback::after {
    content: 'CSN';
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: -0.02em;
    z-index: 2;
}

/* Inline source badge (used in fallback when no image) */
.news__source-badge--inline {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: var(--csn-gold);
    margin-bottom: 0.25rem;
}
.news__source-badge--inline::before {
    content: 'via ';
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

@media (max-width: 640px) {
    .news__grid { grid-template-columns: 1fr; }
    .news__item--featured {
        grid-column: 1;
        grid-row: auto;
        min-height: 280px;
    }
}


/* ---- NETWORK ---- */
.network__grid {
    align-items: stretch; /* equal heights via grid */
}
.network__grid .card--dark {
    transition: border-color 0.2s var(--ease);
}
.network__grid .card--dark:hover {
    border-color: var(--csn-gold);
}
.network__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}
.network__logo-wrap {
    background: white;
    height: 130px; /* fixed height — not aspect-ratio based */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2rem;
}
.network__logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.network__info {
    padding: 1rem 1.25rem 1.25rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Text-only network card — typographic wordmark style (not a placeholder) */
.network__card--text .network__text-mark {
    background:
        linear-gradient(135deg, rgba(200,16,46,0.08) 0%, transparent 50%),
        linear-gradient(225deg, rgba(212,168,67,0.08) 0%, transparent 50%),
        white;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.network__text-mark::before {
    /* Decorative border element */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--csn-gold) 50%, transparent 100%);
    opacity: 0.4;
    z-index: 0;
}
.network__text-mark-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--csn-red);
    position: relative;
    z-index: 1;
    background: white;
    padding: 0 0.65rem;
}
.network__text-mark-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--csn-navy);
    margin-top: 0.4rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    background: white;
    padding: 0 0.65rem;
}


/* ---- SUPPORTERS — Title sponsor + logo wall ---- */
.supporters__title-sponsor {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, var(--surface-light) 0%, white 100%);
    border: 2px solid var(--csn-gold);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
}
.supporters__title-tag h3 {
    color: var(--csn-navy);
    line-height: 1.1;
    font-size: 1.5rem;
}
.supporters__title-tag p { font-size: 0.9rem; }
.supporters__title-logo {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 168, 67, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}
.supporters__title-logo img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 4 / 3 grid — bare logos, no cards. First 4 on top row, last 3 centered below. */
.supporters__wall-label {
    margin-bottom: 2rem !important;
}
.supporters__wall {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem var(--gap);
    align-items: center;
    justify-items: center;
    padding: 0.5rem 0 3rem;
}
.supporters__wall-item {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s var(--ease);
    width: 100%;
    height: 130px; /* uniform container height */
    padding: 0 1rem;
}
.supporters__wall-item:hover {
    transform: translateY(-2px);
}
.supporters__wall-item img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* Items 5+ (the bottom-row 3) each span 4 of 12 cols = perfect 3-up centered */
.supporters__wall-item:nth-child(n+5) {
    grid-column: span 4;
}

@media (max-width: 768px) {
    .supporters__title-sponsor {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        gap: 1.25rem;
    }
    .supporters__title-logo { min-height: 110px; padding: 1.25rem; }
    .supporters__title-logo img { max-height: 110px; }
    .supporters__wall { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .supporters__wall-item,
    .supporters__wall-item:nth-child(n+5) { grid-column: span 1; }
    .supporters__wall-item img { max-height: 90px; }
}
@media (max-width: 480px) {
    .supporters__wall { grid-template-columns: 1fr; }
}

/* Old grid styles kept for backward compatibility on /supporters/ page if needed */
.supporters__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    align-items: start;
}
.supporters__item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.15s var(--ease);
    background: white;
    display: flex;
    flex-direction: column;
}
.supporters__item:hover {
    border-color: var(--csn-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.supporters__item--anchor {
    grid-column: span 2;
    background: var(--surface-light);
    border: 2px solid var(--csn-gold);
}
.supporters__item--anchor:hover {
    border-color: var(--csn-gold);
}

/* Logo wrap — fixed reasonable heights, no aspect-ratio constraint */
.supporters__logo-wrap {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background: white;
}
.supporters__item--anchor .supporters__logo-wrap {
    height: 110px; /* same height — anchor distinction is via gold border + larger logo */
    padding: 1rem 2rem;
}
.supporters__logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.supporters__item--anchor .supporters__logo {
    /* Anchor logo gets a bit more room visually */
    max-height: 90px;
}

.supporters__info {
    padding: 0.85rem 1rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
}
.supporters__item--anchor .supporters__info {
    padding: 1rem 1.25rem 1.15rem;
    border-top: 1px solid rgba(212, 168, 67, 0.25);
    background: white;
}
.supporters__name {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}
.supporters__item--anchor .supporters__name {
    font-size: 0.95rem;
    font-weight: 700;
}
.supporters__role {
    color: var(--text-secondary);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.65rem;
    font-weight: 600;
}
.supporters__item--anchor .supporters__role {
    color: var(--csn-gold);
    font-weight: 700;
}

@media (max-width: 768px) {
    .supporters__grid { grid-template-columns: repeat(2, 1fr); }
    .supporters__item--anchor { grid-column: span 2; }
}
@media (max-width: 480px) {
    .supporters__grid { grid-template-columns: 1fr; }
    .supporters__item--anchor { grid-column: span 1; }
}


/* ---- PHOTO HIGHLIGHTS ---- */
.photos__strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    padding: 0 var(--gap);
}
.photos__item {
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s var(--ease);
}
.photos__item:hover { transform: scale(1.03); }

@media (max-width: 960px) {
    .photos__strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .photos__strip { grid-template-columns: repeat(2, 1fr); }
}


/* ---- SOCON HUB ---- */
.socon { padding: 5rem 0; }


/* ---- FOOTER ---- */
.site-footer { padding: 4rem 0 2rem; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem;
}
.footer__heading {
    color: var(--csn-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a,
.footer__listen li {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.15s;
}
.footer__nav a:hover { color: white; }
.footer__social-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    transition: all 0.15s;
}
.footer__social-link:hover {
    color: white;
    border-color: rgba(255,255,255,0.3);
}
.footer__bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__brand { grid-column: span 2; }
}
@media (max-width: 480px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
}


/* ================================================================
   DIRECTION A — BOLD BROADCAST
   Dark hero, score-forward, broadcast-booth energy
   ================================================================ */

.home--direction-a .hero {
    background: linear-gradient(135deg, var(--csn-navy-deep) 0%, var(--csn-navy) 60%, #1e3050 100%);
    color: var(--text-light);
}
.home--direction-a .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 16, 46, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.home--direction-a .hero__inner { position: relative; z-index: 1; }
.home--direction-a .hero__station { color: var(--text-muted); }
.home--direction-a .hero__meta { color: var(--text-muted); }
.home--direction-a .hero__sponsor-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-dark);
}

/* Direction A: Sports Huddle gets a dark treatment */
.home--direction-a .huddle {
    background: var(--csn-navy-deep);
    color: var(--text-light);
}
.home--direction-a .huddle .btn--outline {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.3);
}
.home--direction-a .huddle .btn--outline:hover {
    border-color: white;
}


/* ================================================================
   DIRECTION B — CLEAN EDITORIAL
   Light hero, magazine layout, editorial breathing room
   ================================================================ */

.home--direction-b .hero {
    background: var(--surface-light);
    color: var(--text-primary);
}
.home--direction-b .hero__station { color: var(--text-secondary); }
.home--direction-b .hero__meta { color: var(--text-secondary); }
.home--direction-b .hero .btn--outline {
    color: var(--csn-navy);
    border-color: var(--border-light);
}
.home--direction-b .hero .btn--outline:hover {
    border-color: var(--csn-navy);
    background: rgba(26, 39, 68, 0.04);
}
.home--direction-b .hero__sponsor-card {
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Direction B: Sports Huddle light editorial */
.home--direction-b .huddle {
    background: white;
    color: var(--text-primary);
}
.home--direction-b .huddle .btn--outline {
    color: var(--csn-navy);
    border-color: var(--border-light);
}
.home--direction-b .huddle .badge--live {
    background: var(--csn-navy);
}

/* Direction B: Lighter scorestrip */
.home--direction-b .scorestrip {
    background: white;
    border-bottom-color: var(--border-light);
}

/* Direction B: News section subtle bg */
.home--direction-b .news {
    background: var(--surface-light);
}
.home--direction-b .news__grid {
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ==========================================================================
   Sponsored Ad Spots
   ========================================================================== */
.csn-ad-spot {
    width: 100%;
    margin: 0;
    padding: 1.5rem 0;
    background: var(--bg-light, #f6f7f9);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.csn-ad-spot__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    text-align: center;
}
.csn-ad-spot__label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted, #6b7280);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    flex-basis: 100%;
}
.csn-ad-spot--active .csn-ad-spot__media {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}
.csn-ad-spot--active .csn-ad-spot__media:hover {
    opacity: 0.85;
}
.csn-ad-spot--active .csn-ad-spot__media img {
    max-height: 70px;
    max-width: 360px;
    width: auto;
    height: auto;
    display: block;
}
.csn-ad-spot__tagline {
    font-size: 0.95rem;
    color: var(--text-muted, #6b7280);
    font-style: italic;
}

/* Available / empty-state */
.csn-ad-spot--available {
    background: linear-gradient(135deg, rgba(204, 38, 35, 0.04), rgba(212, 175, 55, 0.06));
    border-top: 1px dashed rgba(204, 38, 35, 0.25);
    border-bottom: 1px dashed rgba(204, 38, 35, 0.25);
    padding: 2rem 0;
}
.csn-ad-spot--available .csn-ad-spot__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: start;
    gap: 2rem;
    text-align: left;
    min-height: 80px;
}
.csn-ad-spot--available .csn-ad-spot__inner > * {
    align-self: center;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.csn-ad-spot--available .csn-ad-spot__cta {
    height: auto;
    flex-direction: row;
    align-items: center;
}
/* Ghost logo frame — suggests what a real sponsor ad would look like */
.csn-ad-spot__ghost {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 80px;
    border: 2px dashed rgba(204, 38, 35, 0.35);
    border-radius: 6px;
    background: rgba(255,255,255,0.5);
    line-height: 1;
    flex-shrink: 0;
}
.csn-ad-spot__ghost-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(204, 38, 35, 0.7);
}
.csn-ad-spot__ghost-sub {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(204, 38, 35, 0.55);
    margin-top: 0.35rem;
}
/* Pitch copy */
.csn-ad-spot__pitch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    margin: 0;
}
.csn-ad-spot__pitch > * { margin: 0; }
.csn-ad-spot__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--csn-red, #cc2623);
}
.csn-ad-spot__headline {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text, #1a1a1a);
    margin: 0;
}
.csn-ad-spot__sub {
    font-size: 0.9rem;
    color: var(--text-muted, #6b7280);
    margin: 0;
}
/* CTA */
.csn-ad-spot__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--csn-red, #cc2623);
    color: #fff;
    padding: 0.75rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 6px rgba(204, 38, 35, 0.2);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.csn-ad-spot__cta:hover {
    background: #a51d1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(204, 38, 35, 0.3);
}
.csn-ad-spot__cta svg {
    transition: transform 0.2s ease;
}
.csn-ad-spot__cta:hover svg {
    transform: translateX(3px);
}

@media (max-width: 820px) {
    .csn-ad-spot--available .csn-ad-spot__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        justify-items: center;
    }
    .csn-ad-spot__pitch { align-items: center; }
    .csn-ad-spot__eyebrow { justify-content: center; }
}
@media (max-width: 640px) {
    .csn-ad-spot { padding: 1.5rem 0; }
    .csn-ad-spot--active .csn-ad-spot__media { flex-direction: column; gap: 0.5rem; }
    .csn-ad-spot--active .csn-ad-spot__media img { max-height: 56px; }
    .csn-ad-spot__ghost { width: 130px; height: 70px; }
    .csn-ad-spot__headline { font-size: 1.05rem; }
}

/* ==========================================================================
   Carolina Sports Highlights — image cards
   ========================================================================== */
.csn-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}
.csn-highlight {
    background: #fff;
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: inherit;
    text-decoration: none;
}
.csn-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.csn-highlight--linked { cursor: pointer; }

.csn-highlight__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f4f6;
}
.csn-highlight__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.csn-highlight:hover .csn-highlight__image { transform: scale(1.04); }
.csn-highlight__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--csn-navy, #122) 0%, var(--csn-red, #cc2623) 100%);
    color: rgba(255,255,255,0.9);
}
.csn-highlight__sport {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--csn-red, #cc2623);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.csn-highlight__pinned {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    line-height: 1;
}
.csn-highlight__play {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--csn-red, #cc2623);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}
.csn-highlight:hover .csn-highlight__play {
    transform: scale(1.1);
    background: #fff;
}
.csn-highlight__body {
    padding: 1rem 1.25rem 1.15rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.csn-highlight__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--text, #1a1a1a);
}
.csn-highlight__caption {
    font-size: 0.92rem;
    color: var(--text-muted, #4b5563);
    margin: 0;
    line-height: 1.5;
}
.csn-highlight__credit {
    margin: 0.3rem 0 0;
    font-size: 0.78rem;
    color: var(--text-muted, #6b7280);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 0.6rem;
}
.csn-highlight__credit strong {
    color: var(--text, #1a1a1a);
    font-weight: 600;
}

.csn-highlights-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border: 1px dashed rgba(0,0,0,0.25);
    border-radius: var(--radius-lg, 12px);
    color: var(--csn-navy, #1a1a1a);
    font-weight: 500;
    font-size: 1rem;
}
.csn-highlights-empty p { margin: 0; color: inherit; }

@media (max-width: 640px) {
    .csn-highlights-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ==========================================================================
   Page: Sports Huddle
   ========================================================================== */
.huddle-hero {
    position: relative;
    min-height: 78vh;
    padding: 7rem 0 6rem;
    overflow: hidden;
    color: #fff;
    background: var(--csn-navy-deep, #0a0e1a);
    display: flex;
    align-items: center;
}
.huddle-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(0.3) brightness(0.45);
    z-index: 0;
}
.huddle-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(204,38,35,0.55) 100%);
    z-index: 1;
}
.huddle-hero__inner {
    position: relative; z-index: 2;
    width: 100%;
}
.huddle-hero__copy {
    max-width: 780px;
}
.huddle-hero__kicker {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--csn-gold, #ffc629);
    margin-bottom: 1rem;
}
.huddle-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    color: #fff;
}
.huddle-hero__tagline {
    font-size: 1.2rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    margin: 0 0 1.75rem;
    max-width: 680px;
}
.huddle-hero__air {
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: rgba(0,0,0,0.28);
    border-left: 3px solid var(--csn-gold, #ffc629);
    border-radius: 0 6px 6px 0;
    max-width: 640px;
}
.huddle-hero__air-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}
.huddle-hero__air-day {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 0.6rem;
}
.huddle-hero__air-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.huddle-hero__air-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
}
.huddle-hero__air-list strong { color: #fff; }
.huddle-hero__air-tag {
    flex-shrink: 0;
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--csn-navy-deep, #0a0e1a);
    background: var(--csn-gold, #ffc629);
    padding: 0.18rem 0.5rem;
    border-radius: 3px;
    min-width: 38px;
    text-align: center;
}
.huddle-hero__air-stations {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.huddle-hero__air-stations a {
    color: var(--csn-gold, #ffc629);
    border-bottom: 1px dotted rgba(255,198,41,0.5);
}
.huddle-hero__air-stations a:hover { color: #fff; border-bottom-color: #fff; }
.huddle-hero__ctas {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
}

/* About-style eyebrow used across inner pages */
.huddle-about__eyebrow,
.about-hero__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--csn-red, #cc2623);
    margin-bottom: 0.75rem;
}

/* About-the-show grid */
.huddle-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}
.huddle-about__lead h2 { margin: 0 0 1.25rem; }
.huddle-about__lead p { margin: 0 0 1rem; }
.huddle-about__lead p:last-child { margin-bottom: 0; }
.huddle-about__stats {
    display: grid;
    gap: 1rem;
    background: linear-gradient(135deg, var(--csn-navy, #122) 0%, rgba(204,38,35,0.85) 100%);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg, 12px);
    color: #fff;
}
.huddle-stat__num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}
.huddle-stat__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
}

/* Crew section */
.huddle-crew__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.huddle-person { padding: 1.75rem; display: flex; flex-direction: column; }
.huddle-person__role {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--csn-gold, #ffc629);
    margin-bottom: 0.5rem;
}
.huddle-person--guest .huddle-person__role { color: var(--csn-red, #cc2623); }
.huddle-person h3 { margin: 0 0 0.5rem; color: #fff; }

.huddle-guests {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--csn-red, #cc2623);
    border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 12px) 0;
}
.huddle-guests__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.65rem;
}
.huddle-guests__list li {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    line-height: 1.45;
    padding-left: 1.1rem;
    position: relative;
}
.huddle-guests__list li::before {
    content: '→';
    position: absolute; left: 0; top: 0;
    color: var(--csn-gold, #ffc629);
    font-weight: 700;
}
.huddle-guests__list strong { color: #fff; }

/* Listen section */
.huddle-listen__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}
.huddle-listen__ways {
    list-style: none; padding: 0; margin: 1.25rem 0 1.75rem;
    display: grid; gap: 0.85rem;
}
.huddle-listen__ways li {
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--text, #1a1a1a);
}
.huddle-listen__ways strong { color: var(--csn-red, #cc2623); margin-right: 0.4rem; }
.huddle-listen__call {
    background: var(--csn-navy, #122);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg, 12px);
}
.huddle-listen__call-label { font-weight: 700; font-size: 1rem; }
.huddle-listen__call-num { font-size: 0.92rem; color: rgba(255,255,255,0.78); margin-top: 0.25rem; }

.huddle-listen__station-card {
    padding: 2rem 1.75rem;
    text-align: center;
    background: #fff;
}
.huddle-listen__station-eyebrow {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--csn-red, #cc2623);
}
.huddle-listen__station-logo {
    margin: 1rem auto; padding: 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.huddle-listen__station-logo img { max-width: 200px; height: auto; margin: 0 auto; display: block; }

/* Episodes */
.huddle-episodes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.huddle-ep {
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.huddle-ep:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.1); }
.huddle-ep__thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.huddle-ep__body { padding: 1rem 1.25rem 1.25rem; flex-grow: 1; }
.huddle-ep__date { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.huddle-ep__title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin: 0.4rem 0 0; }

.huddle-empty-card {
    text-align: center; padding: 3rem 1.5rem;
    background: #fff; border: 1px dashed rgba(0,0,0,0.18);
    border-radius: var(--radius-lg, 12px);
    max-width: 640px; margin: 0 auto;
}
.huddle-empty-card__icon { font-size: 3rem; margin-bottom: 0.5rem; }

/* Final CTA (shared with about) */
.huddle-cta__inner,
.about-cta__inner {
    text-align: center; max-width: 720px; margin: 0 auto;
}
.huddle-cta__inner h2,
.about-cta__inner h2 { margin: 0 0 1rem; }
.huddle-cta__sub,
.about-cta__sub {
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.huddle-cta__buttons,
.about-cta__buttons {
    display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ==========================================================================
   Page: About
   ========================================================================== */
.about-hero {
    position: relative;
    padding: 7rem 0 6rem;
    overflow: hidden;
    color: #fff;
    background: var(--csn-navy-deep, #0a0e1a);
    text-align: center;
}
.about-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(0.2) brightness(0.7) contrast(1.05);
    z-index: 0;
}
.about-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,26,0.55) 0%, rgba(10,14,26,0.78) 100%);
    z-index: 1;
}
.about-hero__inner {
    position: relative; z-index: 2;
    max-width: 820px; margin: 0 auto;
}
.about-hero__eyebrow {
    color: var(--csn-gold, #ffc629);
}
.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
    color: #fff;
}
.about-hero__lead {
    font-size: 1.2rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Stats strip — overlaps hero slightly */
.about-stats {
    padding: 0;
    margin-top: -2.5rem;
    position: relative;
    z-index: 3;
}
.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
}
.about-stat {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
}
.about-stat:last-child { border-right: none; }
.about-stat__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--csn-red, #cc2623);
    margin-bottom: 0.4rem;
}
.about-stat__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text, #1a1a1a);
    line-height: 1.3;
}
.about-stat__label span {
    display: block;
    font-weight: 400;
    color: var(--text-muted, #6b7280);
    font-size: 0.78rem;
    margin-top: 0.2rem;
}

/* Story narrative */
.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}
.about-story__copy h2 { margin-top: 0; margin-bottom: 1.5rem; }
.about-story__heading { margin-bottom: 1.75rem !important; }
.about-story__copy p { margin-bottom: 1.1rem; }
.about-factbox {
    background: linear-gradient(135deg, var(--csn-navy, #122) 0%, var(--csn-red, #cc2623) 100%);
    color: #fff;
    padding: 1.75rem;
    border-radius: var(--radius-lg, 12px);
}
.about-factbox__label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--csn-gold, #ffc629);
    margin-bottom: 1rem;
}
.about-factbox__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.about-factbox__list li {
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.about-factbox__list li:last-child { border-bottom: none; padding-bottom: 0; }
.about-factbox__list strong { color: #fff; }

/* keep pullquote class around in case anything else uses it */
.about-pullquote {
    background: linear-gradient(135deg, var(--csn-navy, #122) 0%, var(--csn-red, #cc2623) 100%);
    color: #fff;
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg, 12px);
    position: relative;
}
.about-pullquote__mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.6;
    color: var(--csn-gold, #ffc629);
    margin-bottom: 0.5rem;
}
.about-pullquote__text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    color: #fff;
}
.about-pullquote__attr {
    margin-top: 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* Coverage cards */
.about-coverage__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-coverage__card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s;
}
.about-coverage__card:hover { transform: translateY(-3px); }
.about-coverage__icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}
.about-coverage__card h3 { margin: 0; color: #fff; }

/* Alternate light variant of the network section for the About page */
.network--alt .network__card--light {
    background: #fff;
    color: var(--text);
    border: 1px solid rgba(0,0,0,0.08);
}
.network--alt .network__card--light .heading-md { color: var(--text); }

/* Responsive */
@media (max-width: 900px) {
    .huddle-about__grid,
    .huddle-listen__grid,
    .about-story__grid {
        grid-template-columns: 1fr;
    }
    .about-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .about-stat:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
    .huddle-hero { padding: 4.5rem 0 3.5rem; }
    .about-hero { padding: 5rem 0 4.5rem; }
    .huddle-hero__ctas,
    .huddle-cta__buttons,
    .about-cta__buttons { justify-content: flex-start; }
    .huddle-cta__inner,
    .about-cta__inner { text-align: left; }
    .huddle-cta__buttons,
    .about-cta__buttons { justify-content: flex-start; }
}

/* ==========================================================================
   Inner-page button variants (light-section outline)
   ========================================================================== */
.section--light .btn--outline,
.btn--outline-dark {
    background: transparent;
    color: var(--text, #1a1a1a);
    border: 2px solid var(--text, #1a1a1a);
}
.section--light .btn--outline:hover,
.btn--outline-dark:hover {
    background: var(--text, #1a1a1a);
    color: #fff;
}
/* btn--outline-light is just a clearer alias for the default dark-bg outline */
.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ==========================================================================
   Fix: --text-muted is white-translucent by default (for dark sections).
   On light sections we need a dark muted color.
   ========================================================================== */
.section--light,
.about-stats__grid,
.huddle-listen__ways {
    --text-muted: #4b5563;
    --text: #1a1a1a;
}

/* Sports Huddle hero — network parent tag (sits top-right of air block) */
.huddle-hero__air-network {
    flex-shrink: 0;
    padding: 0.18rem 0.55rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--csn-gold, #ffc629);
    background: rgba(255,198,41,0.08);
    border: 1px solid rgba(255,198,41,0.35);
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1.4;
}

/* ==========================================================================
   Page: Contact
   ========================================================================== */
.contact-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: var(--csn-navy-deep, #0a0e1a);
}
.contact-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(0.3) brightness(0.6);
    z-index: 0;
}
.contact-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,26,0.65) 0%, rgba(10,14,26,0.88) 100%);
    z-index: 1;
}
.contact-hero__inner {
    position: relative; z-index: 2;
    max-width: 760px;
}
.contact-hero__eyebrow {
    color: var(--csn-gold, #ffc629);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.contact-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: #fff;
}
.contact-hero__lead {
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.contact-main__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}
.contact-main__form .ff-default,
.contact-main__form .frm-fluent-form {
    margin-top: 1rem;
}
.contact-main__form .ff-el-form-control {
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    padding: 0.7rem 0.9rem !important;
    font-size: 0.95rem !important;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-main__form .ff-el-form-control:focus {
    border-color: var(--csn-red, #cc2623) !important;
    box-shadow: 0 0 0 3px rgba(204,38,35,0.12) !important;
    outline: none !important;
}
.contact-main__form .ff-el-input--label label {
    font-weight: 600 !important;
    color: var(--csn-navy, #1a1a1a) !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.35rem !important;
}
.contact-main__form .ff-btn-submit {
    background: var(--csn-red, #cc2623) !important;
    color: #fff !important;
    padding: 0.8rem 1.75rem !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    font-size: 0.9rem !important;
    border: none !important;
    transition: background 0.15s, transform 0.15s;
    margin-top: 0.5rem;
}
.contact-main__form .ff-btn-submit:hover {
    background: var(--csn-red-dark, #a01a18) !important;
    transform: translateY(-1px);
}

.contact-main__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg, 12px);
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}
.contact-card__label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--csn-red, #cc2623);
    margin-bottom: 0.6rem;
}
.contact-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--csn-navy, #1a1a1a);
}
.contact-card__role {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.contact-card__divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 1rem 0;
}
.contact-card__line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--csn-navy, #1a1a1a);
    text-decoration: none;
    transition: color 0.15s;
}
.contact-card__line:hover { color: var(--csn-red, #cc2623); }
.contact-card__icon { font-size: 1rem; flex-shrink: 0; }

.contact-card--alt {
    background: linear-gradient(135deg, var(--csn-navy, #122) 0%, var(--csn-red, #cc2623) 100%);
    color: rgba(255,255,255,0.9);
}
.contact-card--alt .contact-card__label { color: var(--csn-gold, #ffc629); }
.contact-card__options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.contact-card__options li {
    font-size: 0.88rem;
    line-height: 1.5;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-card__options li:last-child { border: none; padding-bottom: 0; }
.contact-card__options strong { display: block; color: #fff; margin-bottom: 0.15rem; }

.contact-card--social .contact-card__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.contact-card--social .contact-card__social a {
    display: block;
    padding: 0.55rem 0.75rem;
    background: #f6f7f8;
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--csn-navy);
    text-decoration: none;
    transition: background 0.15s;
}
.contact-card--social .contact-card__social a:hover { background: #e9ebee; }

/* ==========================================================================
   Page: Teams
   ========================================================================== */
.teams-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: var(--csn-navy-deep, #0a0e1a);
}
.teams-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(0.25) brightness(0.65) contrast(1.05);
    z-index: 0;
}
.teams-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,26,0.55) 0%, rgba(10,14,26,0.82) 100%);
    z-index: 1;
}
.teams-hero__inner {
    position: relative; z-index: 2;
    max-width: 820px;
}
.teams-hero__eyebrow {
    color: var(--csn-gold, #ffc629);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.teams-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: #fff;
}
.teams-hero__lead {
    font-size: 1.15rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    margin: 0 auto;
    max-width: 680px;
}
.teams-hero__lead strong {
    color: var(--csn-gold, #ffc629);
    font-weight: 700;
}

.teams-section {
    margin-bottom: 3rem;
}
.teams-section:last-child { margin-bottom: 0; }
.teams-section__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--csn-red, #cc2623);
}
.teams-section__icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.teams-section__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--csn-navy, #1a1a1a);
    margin: 0 0 0.25rem;
}
.teams-section__subtitle {
    font-size: 0.95rem;
    color: var(--text-muted, #4b5563);
    margin: 0;
    line-height: 1.45;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.team-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    position: relative;
}
.team-card--linked:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-color: var(--csn-red, #cc2623);
}
.team-card__name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--csn-navy, #1a1a1a);
    line-height: 1.3;
}
.team-card__count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--csn-red, #cc2623);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.team-card__note {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    background: #f0f0f1;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
}
.team-card__count--muted {
    color: var(--text-muted, #6b7280);
}
.team-card__arrow {
    position: absolute;
    top: 1rem;
    right: 1.15rem;
    color: var(--csn-red, #cc2623);
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
}
.team-card--linked:hover .team-card__arrow {
    opacity: 1;
    transform: translateX(2px);
}

.teams-cta__inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.teams-cta__sub {
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}
.teams-cta__buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .contact-main__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .teams-section__header { flex-direction: column; gap: 0.5rem; }
}

/* ==========================================================================
   Page: The CSN Team
   ========================================================================== */
.team-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: var(--csn-navy-deep, #0a0e1a);
}
.team-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(0.3) brightness(0.6);
    z-index: 0;
}
.team-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,26,0.6) 0%, rgba(10,14,26,0.85) 100%);
    z-index: 1;
}
.team-hero__inner {
    position: relative; z-index: 2;
    max-width: 780px;
}
.team-hero__eyebrow {
    color: var(--csn-gold, #ffc629);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.team-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: #fff;
}
.team-hero__lead {
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    margin: 0 auto;
    max-width: 640px;
}

.team-roster__header {
    margin-bottom: 2.5rem;
}
.team-roster__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
/* On-Air group gets bigger min-width since cards have bios */
.team-roster--on-air .team-roster__grid {
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #e5e7eb;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.section--dark .team-member {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
}
.section--dark .team-member:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.18);
}

.team-member__photo {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--csn-navy, #122) 0%, var(--csn-red, #cc2623) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(204,38,35,0.18);
}
.section--dark .team-member__photo {
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.team-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-member__initials {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.95);
}

.team-member__body {
    width: 100%;
    min-width: 0;
}
.team-member__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.35rem;
    color: var(--text, #1a1a1a);
    letter-spacing: -0.005em;
}
.section--dark .team-member__name { color: #fff; }

.team-member__role {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--csn-red, #cc2623);
    line-height: 1.4;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.section--dark .team-member__role { color: var(--csn-gold, #ffc629); }

.team-member__bio {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4b5563;
    margin: 0;
    text-align: left;
}
.section--dark .team-member__bio { color: rgba(255,255,255,0.78); }

/* Cards without a bio: center role tightly, less padding */
.team-member:not(:has(.team-member__bio)) {
    padding: 1.5rem 1.25rem;
    gap: 0.85rem;
}
.team-member:not(:has(.team-member__bio)) .team-member__role {
    margin-bottom: 0;
}

.team-cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.team-cta__sub {
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.team-cta__buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .team-member { flex-direction: column; text-align: center; }
    .team-member__photo { margin: 0 auto; }
    .team-member__role { text-align: center; }
}
