/* =========================================================
   ZACH McCLANAHAN FOR U.S. SENATE
   MAIN STYLESHEET — PART 1
   FOUNDATION, GLOBAL STYLES, NAVIGATION, HERO
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --navy-950: #020817;
    --navy-900: #061126;
    --navy-850: #09172f;
    --navy-800: #0d1c38;
    --navy-700: #14294c;

    --red-700: #BF0A30;
    --red-600: #BF0A30;
    --red-500: #BF0A30;
    --red-400: #BF0A30;

    --gold-500: #c9a85d;
    --gold-400: #dfc078;
    --gold-300: #f0d08a;

    --white: #ffffff;
    --off-white: #f5f3ee;
    --gray-100: #e8e9ed;
    --gray-200: #d2d5dc;
    --gray-300: #aeb4c0;
    --gray-400: #878f9e;
    --gray-500: #606978;
    --gray-700: #2d3543;

    --black: #000000;

    --body-font: "Inter", sans-serif;
    --heading-font: "Barlow Condensed", sans-serif;

    --container-width: 1400px;
    --header-height: 92px;

    --border-light: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(0, 0, 0, 0.12);

    --shadow-small:
        0 8px 24px rgba(0, 0, 0, 0.18);

    --shadow-medium:
        0 20px 60px rgba(0, 0, 0, 0.28);

    --shadow-large:
        0 36px 100px rgba(0, 0, 0, 0.48);

    --transition-fast:
        180ms ease;

    --transition-medium:
        320ms cubic-bezier(0.22, 1, 0.36, 1);

    --transition-slow:
        650ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(159, 30, 46, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 25%,
            rgba(201, 168, 93, 0.08),
            transparent 28%
        ),
        var(--navy-950);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

img {
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

::selection {
    background: var(--red-600);
    color: var(--white);
}

/* =========================================================
   GLOBAL BACKGROUND GRID
========================================================= */

.background-grid {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 68px 68px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.9),
            transparent 85%
        );
}

/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.section-shell {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );
    margin-inline: auto;
}

section {
    position: relative;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 42px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--red-500),
            var(--gold-300)
        );
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.7vw, 6.8rem);
}

h2 span {
    display: block;
    color: var(--red-400);
}

p {
    color: var(--gray-200);
}

strong {
    font-weight: 800;
}

/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.primary-btn,
.secondary-btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        color var(--transition-medium),
        background-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.primary-btn::before,
.secondary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translateX(-102%);
    transition: transform var(--transition-medium);
}

.primary-btn {
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    color: var(--white);
    box-shadow:
        0 14px 38px rgba(159, 30, 46, 0.3);
}

.primary-btn::before {
    background:
        linear-gradient(
            135deg,
            var(--gold-300),
            var(--gold-500)
        );
}

.primary-btn:hover {
    color: var(--navy-950);
    transform: translateY(-3px);
    box-shadow:
        0 20px 52px rgba(159, 30, 46, 0.42);
}

.secondary-btn {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.secondary-btn::before {
    background: var(--white);
}

.secondary-btn:hover {
    color: var(--navy-950);
    border-color: var(--white);
    transform: translateY(-3px);
}

.primary-btn:hover::before,
.secondary-btn:hover::before {
    transform: translateX(0);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        color var(--transition-fast),
        gap var(--transition-fast);
}

.text-link:hover {
    gap: 16px;
    color: var(--gold-300);
}

/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.96),
            rgba(2, 8, 23, 0.78)
        );
    backdrop-filter: blur(20px);
    transition:
        min-height var(--transition-medium),
        background-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.main-header.scrolled {
    min-height: 76px;
    background: rgba(2, 8, 23, 0.96);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.28);
}

.main-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    opacity: 0.75;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--red-600) 25%,
            var(--gold-300) 50%,
            var(--red-600) 75%,
            transparent 100%
        );
}

.nav-container {
    width: min(
        calc(100% - 48px),
        1540px
    );
    min-height: inherit;
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.logo,
.header-logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.logo img,
.header-logo img {
    width: auto;
    max-width: 240px;
    height: 58px;
    object-fit: contain;
    transition:
        height var(--transition-medium),
        transform var(--transition-medium);
}

.logo:hover img,
.header-logo:hover img {
    transform: scale(1.025);
}

.main-header.scrolled .logo img,
.main-header.scrolled .header-logo img {
    height: 48px;
}

.nav-container nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
}

.nav-container nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
}

.nav-container nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--heading-font);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.nav-container nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background:
        linear-gradient(
            90deg,
            var(--red-500),
            var(--gold-300)
        );
    transition: transform var(--transition-medium);
}

.nav-container nav a:hover,
.nav-container nav a.active {
    color: var(--white);
}

.nav-container nav a:hover::after,
.nav-container nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header controls used by page-specific HTML */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.donate-btn,
.header-donate-button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    min-width: 138px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px 24px;
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow:
        0 12px 30px rgba(159, 30, 46, 0.28);
    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        color var(--transition-medium);
}

.donate-btn::before,
.header-donate-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translateY(102%);
    background:
        linear-gradient(
            135deg,
            var(--gold-300),
            var(--gold-500)
        );
    transition: transform var(--transition-medium);
}

.donate-btn:hover,
.header-donate-button:hover {
    color: var(--navy-950);
    transform: translateY(-2px);
    box-shadow:
        0 18px 42px rgba(159, 30, 46, 0.4);
}

.donate-btn:hover::before,
.header-donate-button:hover::before {
    transform: translateY(0);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    background:
        linear-gradient(rgba(0, 20, 48, 0.58), rgba(0, 20, 48, 0.68)),
        url("images/final-cta.jpg") center / cover no-repeat;
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    padding:
        calc(var(--header-height) + 80px)
        24px
        100px;
    background-color: var(--navy-950);
}

.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    z-index: -1;
    width: 52vw;
    height: 52vw;
    border-radius: 50%;
    opacity: 0.5;
    background:
        radial-gradient(
            circle,
            rgba(159, 30, 46, 0.36),
            transparent 68%
        );
    filter: blur(30px);
}

.hero::after {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -28%;
    z-index: -1;
    width: 58vw;
    height: 58vw;
    border-radius: 50%;
    opacity: 0.3;
    background:
        radial-gradient(
            circle,
            rgba(201, 168, 93, 0.24),
            transparent 70%
        );
    filter: blur(40px);
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: -5;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:
        saturate(0.75)
        contrast(1.1)
        brightness(0.62);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 23, 0.98) 0%,
            rgba(2, 8, 23, 0.88) 38%,
            rgba(2, 8, 23, 0.35) 72%,
            rgba(2, 8, 23, 0.62) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.25) 0%,
            rgba(2, 8, 23, 0.08) 48%,
            rgba(2, 8, 23, 0.96) 100%
        );
}

.hero-content {
    position: relative;
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-left: clamp(0px, 4vw, 70px);
}

.hero-content::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 12px;
    left: 0;
    width: 4px;
    background:
        linear-gradient(
            to bottom,
            var(--red-500),
            var(--gold-300),
            transparent
        );
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(4, 12, 29, 0.42);
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: clamp(0.78rem, 1.2vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.hero-tag::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red-500);
    box-shadow:
        0 0 0 5px rgba(189, 38, 59, 0.14),
        0 0 22px rgba(189, 38, 59, 0.8);
}

.hero h1 {
    max-width: 1100px;
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(4.4rem, 9vw, 10.7rem);
    line-height: 0.82;
    letter-spacing: -0.045em;
    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.48);
}

.hero h1 span {
    position: relative;
    display: block;
    width: fit-content;
    margin-top: 12px;
    padding-right: 14px;
    color: transparent;
    background:
        linear-gradient(
            110deg,
            var(--gold-300) 0%,
            var(--white) 45%,
            var(--gold-400) 100%
        );
    -webkit-background-clip: text;
    background-clip: text;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.04em;
    left: 0;
    z-index: -1;
    height: 0.16em;
    opacity: 0.8;
    transform: skewX(-14deg);
    background: var(--red-600);
}

.hero-content > p {
    max-width: 760px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.83);
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.25;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.hero-buttons .primary-btn,
.hero-buttons .secondary-btn {
    min-width: 220px;
}

.hero-buttons .hero-resource-btn {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(2, 8, 23, 0.3);
    backdrop-filter: blur(8px);
}

.hero-buttons .hero-resource-btn:hover {
    border-color: var(--gold-300);
    background: rgba(2, 8, 23, 0.72);
}

.hero-scroll {
    position: absolute;
    right: 42px;
    bottom: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--heading-font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll i {
    color: var(--gold-300);
    animation: hero-scroll-bounce 1.8s infinite;
}

@keyframes hero-scroll-bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* =========================================================
   HERO ENTRY ANIMATIONS
========================================================= */

.hero-tag,
.hero h1,
.hero-content > p,
.hero-buttons {
    opacity: 0;
    transform: translateY(34px);
    animation:
        hero-content-in
        900ms
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.hero-tag {
    animation-delay: 140ms;
}

.hero h1 {
    animation-delay: 260ms;
}

.hero-content > p {
    animation-delay: 400ms;
}

.hero-buttons {
    animation-delay: 520ms;
}

@keyframes hero-content-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   MOBILE MENU BUTTON SUPPORT
========================================================= */

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 1.2rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition:
        transform var(--transition-medium),
        opacity var(--transition-fast);
}

.mobile-menu-toggle span + span {
    margin-top: 5px;
}

/* =========================================================
   RESPONSIVE — HEADER AND HERO
========================================================= */

@media (max-width: 1220px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: 22px;
    }

    .nav-container nav ul {
        gap: 16px;
    }

    .nav-container nav a {
        font-size: 0.78rem;
    }

    .logo img,
.header-logo img {
        max-width: 190px;
        height: 50px;
    }

    .donate-btn,
.header-donate-button {
        min-width: 116px;
        padding-inline: 18px;
    }
}

@media (max-width: 1020px) {
    :root {
        --header-height: 78px;
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
    }

    .nav-container nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .donate-btn,
.header-donate-button {
        display: none;
    }

    .hero {
        min-height: 920px;
        padding-top: 150px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2, 8, 23, 0.95),
                rgba(2, 8, 23, 0.68)
            ),
            linear-gradient(
                180deg,
                rgba(2, 8, 23, 0.18),
                rgba(2, 8, 23, 0.92)
            );
    }

    .hero-content {
        padding-left: 30px;
    }
}

@media (max-width: 720px) {
    .section-shell,
    .nav-container {
        width: min(
            calc(100% - 30px),
            var(--container-width)
        );
    }

    .logo img,
.header-logo img {
        width: auto;
        max-width: 170px;
        height: 46px;
    }

    .hero {
        min-height: 840px;
        align-items: flex-end;
        padding:
            130px
            15px
            100px;
    }

    .hero-video video {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 8, 23, 0.22) 0%,
                rgba(2, 8, 23, 0.55) 42%,
                rgba(2, 8, 23, 0.98) 88%
            );
    }

    .hero-content {
        padding-left: 18px;
    }

    .hero-content::before {
        width: 3px;
    }

    .hero-tag {
        letter-spacing: 0.13em;
    }

    .hero h1 {
        font-size: clamp(4rem, 19vw, 7rem);
    }

    .hero-content > p {
        font-size: 1.15rem;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn {
        width: 100%;
        min-width: 0;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 420px) {
    .logo img,
.header-logo img {
        max-width: 145px;
        height: 42px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .hero {
        min-height: 780px;
        padding-bottom: 74px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 18vw, 5.4rem);
    }

    .hero-tag {
        padding: 9px 11px;
        font-size: 0.7rem;
    }
}

/* =========================================================
   MAIN STYLESHEET — PART 2
   MOVEMENT STATS, WHY RUNNING, STATEMENT, PRINCIPLES
========================================================= */

/* =========================================================
   MOVEMENT STATISTICS
========================================================= */

.movement-stats {
    overflow: hidden;
    padding: 120px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background:
        linear-gradient(
            135deg,
            rgba(6, 17, 38, 0.98),
            rgba(2, 8, 23, 0.98)
        );
}

.movement-stats::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(159, 30, 46, 0.2),
            transparent 70%
        );
    filter: blur(15px);
    pointer-events: none;
}

.movement-stats::after {
    content: "";
    position: absolute;
    bottom: -260px;
    left: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 168, 93, 0.12),
            transparent 70%
        );
    filter: blur(20px);
    pointer-events: none;
}

.stats-heading {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin-bottom: 66px;
}

.stats-heading h2 {
    margin-bottom: 0;
    font-size: clamp(3.4rem, 6vw, 7.2rem);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.stat-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 44px 34px 38px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        );
    transition:
        transform var(--transition-medium),
        background-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    background:
        linear-gradient(
            90deg,
            var(--red-500),
            var(--gold-300)
        );
    transition: transform var(--transition-medium);
}

.stat-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 0;
    background:
        radial-gradient(
            circle,
            rgba(189, 38, 59, 0.18),
            transparent 68%
        );
    transition: opacity var(--transition-medium);
}

.stat-card:hover {
    z-index: 2;
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow-medium);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-number {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: transparent;
    font-family: var(--heading-font);
    font-size: clamp(5rem, 7vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.85;
    background:
        linear-gradient(
            135deg,
            var(--white),
            var(--gold-300)
        );
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-number::after {
    content: "+";
    margin-left: 4px;
    color: var(--red-400);
    font-size: 0.38em;
    vertical-align: top;
}

.stat-card:nth-child(2) .stat-number::after,
.stat-card:nth-child(3) .stat-number::after {
    display: none;
}

.stat-card:nth-child(4) .stat-number::after {
    content: "%";
}

.stat-label {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-transform: uppercase;
}

.stat-card p {
    position: relative;
    z-index: 1;
    max-width: 280px;
    margin-bottom: 0;
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================================
   WHY I AM RUNNING
========================================================= */

.why-running {
    overflow: hidden;
    padding: 150px 0;
    background:
        linear-gradient(
            110deg,
            var(--off-white) 0%,
            #ece9e1 100%
        );
    color: var(--navy-950);
}

.why-running::before {
    content: "ILLINOIS";
    position: absolute;
    right: -40px;
    bottom: -60px;
    color: rgba(2, 8, 23, 0.045);
    font-family: var(--heading-font);
    font-size: clamp(10rem, 23vw, 30rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.75;
    pointer-events: none;
}

.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(360px, 0.9fr)
        minmax(500px, 1.1fr);
    align-items: center;
    gap: clamp(60px, 8vw, 130px);
}

.why-image-column {
    position: relative;
}

.image-frame {
    position: relative;
    z-index: 2;
    min-height: 720px;
    overflow: hidden;
    box-shadow:
        0 32px 80px rgba(2, 8, 23, 0.28);
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(2, 8, 23, 0.85) 100%
        );
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center top;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-frame:hover img {
    transform: scale(1.035);
}

.image-frame-border {
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.48);
    pointer-events: none;
}

.image-caption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.image-caption span:last-child {
    color: var(--gold-300);
}

.portrait-accent {
    position: absolute;
    pointer-events: none;
}

.portrait-accent-one {
    top: -32px;
    left: -32px;
    z-index: 1;
    width: 210px;
    height: 210px;
    border-top: 8px solid var(--red-600);
    border-left: 8px solid var(--red-600);
}

.portrait-accent-two {
    right: -34px;
    bottom: -34px;
    z-index: 3;
    width: 230px;
    height: 230px;
    border-right: 8px solid var(--gold-500);
    border-bottom: 8px solid var(--gold-500);
}

.why-content {
    position: relative;
}

.why-content .section-kicker {
    color: var(--red-600);
}

.why-content h2 {
    max-width: 840px;
    margin-bottom: 34px;
    color: var(--navy-950);
    font-size: clamp(3.7rem, 6.4vw, 7.2rem);
}

.why-content h2 span {
    color: var(--red-600);
}

.why-content > p {
    max-width: 820px;
    margin-bottom: 22px;
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.85;
}

.why-content .why-lead {
    margin-bottom: 28px;
    color: var(--navy-800);
    font-family: var(--heading-font);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.35;
    text-transform: none;
}

.why-signature {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 40px;
    margin-bottom: 38px;
}

.signature-line {
    width: 70px;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--red-600),
            var(--gold-500)
        );
}

.why-signature div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-signature strong {
    color: var(--navy-950);
    font-family: var(--heading-font);
    font-size: 1.45rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.why-signature span {
    color: var(--gray-500);
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}

.why-actions .text-link {
    color: var(--navy-900);
}

.why-actions .text-link:hover {
    color: var(--red-600);
}

/* =========================================================
   FULL-WIDTH STATEMENT
========================================================= */

.statement-section {
    isolation: isolate;
    display: flex;
    min-height: 760px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 130px 24px;
    text-align: center;
}

.statement-background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.statement-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:
        saturate(0.68)
        contrast(1.08);
}

.statement-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.78),
            rgba(2, 8, 23, 0.94)
        ),
        linear-gradient(
            90deg,
            rgba(159, 30, 46, 0.24),
            transparent 45%,
            rgba(201, 168, 93, 0.1)
        );
}

.statement-section::before {
    content: "";
    position: absolute;
    inset: 28px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.statement-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 90px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            to bottom,
            var(--red-500),
            var(--gold-300)
        );
}

.statement-content {
    width: min(100%, 1180px);
}

.statement-content .section-kicker {
    justify-content: center;
}

.statement-content h2 {
    margin-bottom: 30px;
    font-size: clamp(3.8rem, 7.8vw, 9rem);
}

.statement-content h2 span {
    color: var(--gold-300);
}

.statement-content > p:not(.section-kicker) {
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--heading-font);
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================================================
   CAMPAIGN PRINCIPLES
========================================================= */

.principles-section {
    overflow: hidden;
    padding: 140px 0;
    background:
        linear-gradient(
            145deg,
            var(--navy-900),
            var(--navy-950)
        );
}

.principles-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    width: 680px;
    height: 380px;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(159, 30, 46, 0.16),
            transparent 70%
        );
    filter: blur(20px);
}

.principles-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 1050px;
    margin-bottom: 72px;
}

.principles-header h2 {
    margin-bottom: 0;
}

.principles-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.principle-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    padding: 38px 30px;
    border: 1px solid var(--border-light);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        background-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.principle-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    transform: scaleX(0);
    transform-origin: left;
    background:
        linear-gradient(
            90deg,
            var(--red-500),
            var(--gold-300)
        );
    transition: transform var(--transition-medium);
}

.principle-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 0;
    background:
        radial-gradient(
            circle,
            rgba(201, 168, 93, 0.14),
            transparent 70%
        );
    transition: opacity var(--transition-medium);
}

.principle-card:hover {
    transform: translateY(-12px);
    border-color: rgba(240, 208, 138, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.34);
}

.principle-card:hover::before {
    transform: scaleX(1);
}

.principle-card:hover::after {
    opacity: 1;
}

.principle-number {
    position: absolute;
    top: 26px;
    right: 26px;
    color: rgba(255, 255, 255, 0.09);
    font-family: var(--heading-font);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
}

.principle-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 74px;
    height: 74px;
    align-items: center;
    justify-content: center;
    margin-bottom: 52px;
    border: 1px solid rgba(240, 208, 138, 0.28);
    background:
        linear-gradient(
            145deg,
            rgba(240, 208, 138, 0.13),
            rgba(159, 30, 46, 0.1)
        );
    color: var(--gold-300);
    font-size: 1.8rem;
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.025);
}

.principle-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.principle-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    color: var(--gray-300);
    font-size: 0.97rem;
    line-height: 1.78;
}

/* =========================================================
   SCROLL REVEAL SUPPORT
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(44px);
    transition:
        opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-54px);
    transition:
        opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(54px);
    transition:
        opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   RESPONSIVE — PART 2 SECTIONS
========================================================= */

@media (max-width: 1180px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns:
            minmax(320px, 0.85fr)
            minmax(440px, 1.15fr);
        gap: 70px;
    }

    .image-frame,
    .image-frame img {
        height: 650px;
        min-height: 650px;
    }

    .principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .principle-card {
        min-height: 360px;
    }
}

@media (max-width: 900px) {
    .movement-stats,
    .principles-section {
        padding: 105px 0;
    }

    .why-running {
        padding: 110px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .why-image-column {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .image-frame,
    .image-frame img {
        height: 720px;
        min-height: 720px;
    }

    .why-content {
        max-width: 760px;
    }

    .statement-section {
        min-height: 660px;
        padding-block: 110px;
    }
}

@media (max-width: 680px) {
    .movement-stats {
        padding: 88px 0;
    }

    .stats-heading {
        margin-bottom: 46px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 270px;
        padding: 36px 26px;
    }

    .stat-number {
        font-size: 5.5rem;
    }

    .why-running {
        padding: 92px 0;
    }

    .why-running::before {
        display: none;
    }

    .why-grid {
        gap: 62px;
    }

    .image-frame,
    .image-frame img {
        height: 570px;
        min-height: 570px;
    }

    .portrait-accent-one {
        top: -18px;
        left: -10px;
        width: 130px;
        height: 130px;
        border-width: 5px;
    }

    .portrait-accent-two {
        right: -10px;
        bottom: -18px;
        width: 145px;
        height: 145px;
        border-width: 5px;
    }

    .image-frame-border {
        inset: 12px;
    }

    .image-caption {
        right: 20px;
        bottom: 20px;
        left: 20px;
        font-size: 0.68rem;
    }

    .why-content h2 {
        font-size: clamp(3.3rem, 15vw, 5.4rem);
    }

    .why-content .why-lead {
        font-size: 1.35rem;
    }

    .why-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .why-actions .primary-btn {
        width: 100%;
    }

    .why-actions .text-link {
        justify-content: center;
    }

    .statement-section {
        min-height: 620px;
        padding:
            100px
            20px;
    }

    .statement-section::before {
        inset: 14px;
    }

    .statement-content h2 {
        font-size: clamp(3.3rem, 15vw, 6rem);
    }

    .principles-section {
        padding: 90px 0;
    }

    .principles-header {
        margin-bottom: 48px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-card {
        min-height: 330px;
    }
}

@media (max-width: 430px) {
    .image-frame,
    .image-frame img {
        height: 480px;
        min-height: 480px;
    }

    .why-signature {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .signature-line {
        width: 54px;
    }

    .statement-content > p:not(.section-kicker) {
        font-size: 1.1rem;
    }

    .principle-card {
        padding: 34px 24px;
    }
}

/* =========================================================
   MAIN STYLESHEET — PART 3
   ISSUES, BREAKTHROUGH STATEMENT, ACCOUNTABILITY STRIP
========================================================= */

/* =========================================================
   ISSUES SECTION
========================================================= */

.issues-section {
    overflow: hidden;
    padding: 150px 0;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(159, 30, 46, 0.14),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--navy-950),
            var(--navy-900)
        );
}

.issues-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    opacity: 0.15;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    mask-image:
        linear-gradient(
            to left,
            rgba(0, 0, 0, 1),
            transparent
        );
    pointer-events: none;
}

.issues-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.9fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 76px;
}

.issues-header h2 {
    margin-bottom: 0;
}

.issues-intro {
    max-width: 640px;
    margin-bottom: 10px;
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.85;
}

.issues-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.issue-card {
    position: relative;
    isolation: isolate;
    grid-column: span 4;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--navy-900);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.issue-card-large {
    grid-column: span 8;
}

.issue-card-wide {
    grid-column: span 8;
}

.issue-card:hover {
    z-index: 3;
    transform: translateY(-10px);
    border-color: rgba(240, 208, 138, 0.4);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.42);
}

.issue-card-background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.issue-card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        saturate(0.7)
        contrast(1.08)
        brightness(0.72);
    transition:
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.issue-card:hover .issue-card-background img {
    transform: scale(1.055);
    filter:
        saturate(0.88)
        contrast(1.08)
        brightness(0.78);
}

.issue-card-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.14) 0%,
            rgba(2, 8, 23, 0.72) 44%,
            rgba(2, 8, 23, 0.98) 100%
        ),
        linear-gradient(
            100deg,
            rgba(159, 30, 46, 0.2),
            transparent 50%
        );
}

.issue-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 6px;
    transform: scaleX(0);
    transform-origin: left;
    background:
        linear-gradient(
            90deg,
            var(--red-500),
            var(--gold-300)
        );
    transition: transform var(--transition-medium);
}

.issue-card:hover::after {
    transform: scaleX(1);
}

.issue-card-content {
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px 36px;
}

.issue-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: auto;
}

.issue-number {
    color: rgba(255, 255, 255, 0.26);
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.issue-category {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(2, 8, 23, 0.38);
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.issue-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 26px;
    border: 1px solid rgba(240, 208, 138, 0.26);
    background:
        linear-gradient(
            145deg,
            rgba(240, 208, 138, 0.14),
            rgba(159, 30, 46, 0.12)
        );
    color: var(--gold-300);
    font-size: 1.5rem;
    backdrop-filter: blur(12px);
}

.issue-card h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(2.5rem, 4vw, 4.8rem);
    line-height: 0.95;
    overflow-wrap: break-word;
}

.issue-card:not(.issue-card-large):not(.issue-card-wide) h3 {
    font-size: clamp(2.25rem, 3.1vw, 3.8rem);
}

.issue-card p {
    max-width: 720px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.75;
}

.issue-points {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
}

.issue-points-horizontal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.issue-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-200);
    font-size: 0.88rem;
    line-height: 1.5;
}

.issue-points i {
    margin-top: 4px;
    color: var(--red-400);
    font-size: 0.75rem;
}

.issue-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        gap var(--transition-fast),
        color var(--transition-fast);
}

.issue-link:hover {
    gap: 18px;
    color: var(--white);
}

.issues-footer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 28px;
    margin-top: 54px;
    padding-top: 40px;
}

.issues-footer-line {
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--red-500),
            var(--gold-300)
        );
}

.issues-footer p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--gray-300);
    line-height: 1.75;
}

/* =========================================================
   BREAKTHROUGH STATEMENT
========================================================= */

.breakthrough-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 145px 0;
    background:
        linear-gradient(
            125deg,
            var(--off-white),
            #e9e4d9
        );
    color: var(--navy-950);
}

.breakthrough-section::before {
    content: "COUNTRY OVER PARTY";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    transform:
        translate(-50%, -50%)
        rotate(-4deg);
    color: rgba(2, 8, 23, 0.035);
    font-family: var(--heading-font);
    font-size: clamp(7rem, 16vw, 20rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.8;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
}

.breakthrough-lines {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.45;
    background-image:
        linear-gradient(
            rgba(2, 8, 23, 0.04) 1px,
            transparent 1px
        );
    background-size: 100% 42px;
}

.breakthrough-content {
    position: relative;
    max-width: 1180px;
    text-align: center;
}

.breakthrough-content .section-kicker {
    justify-content: center;
    color: var(--red-600);
}

.breakthrough-content h2 {
    margin-bottom: 32px;
    color: var(--navy-950);
    font-size: clamp(3.8rem, 7vw, 8.2rem);
}

.breakthrough-content h2 span {
    color: var(--red-600);
}

.breakthrough-content > p:not(.section-kicker) {
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--gray-700);
    font-size: 1.08rem;
    line-height: 1.9;
}

/* =========================================================
   ACCOUNTABILITY STRIP
========================================================= */

.accountability-strip {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(
            90deg,
            var(--red-700),
            var(--red-500),
            var(--red-700)
        );
}

.accountability-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: accountability-scroll 28s linear infinite;
}

.accountability-strip:hover .accountability-track {
    animation-play-state: paused;
}

.accountability-item {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 34px;
    padding-inline: 38px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(1.3rem, 2.4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.accountability-item i {
    color: var(--gold-300);
    font-size: 0.72em;
}

@keyframes accountability-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   RESPONSIVE — PART 3
========================================================= */

@media (max-width: 1180px) {
    .issues-header {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .issues-intro {
        max-width: 820px;
    }

    .issue-card,
    .issue-card-large,
    .issue-card-wide {
        grid-column: span 6;
    }

    .issue-card-large {
        grid-column: span 12;
    }

    .issues-footer {
        grid-template-columns: 70px 1fr;
    }

    .issues-footer .secondary-btn {
        grid-column: 2;
        width: fit-content;
    }
}

@media (max-width: 900px) {
    .issues-section {
        padding: 110px 0;
    }

    .issue-card,
    .issue-card-large,
    .issue-card-wide {
        grid-column: span 12;
    }

    .issue-card {
        min-height: 540px;
    }

    .issue-points-horizontal {
        grid-template-columns: 1fr;
    }

    .breakthrough-section {
        padding: 110px 0;
    }
}

@media (max-width: 680px) {
    .issues-section {
        padding: 90px 0;
    }

    .issues-header {
        margin-bottom: 48px;
    }

    .issues-grid {
        gap: 14px;
    }

    .issue-card {
        min-height: 570px;
    }

    .issue-card-content {
        padding: 28px 24px;
    }

    .issue-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .issue-icon {
        width: 58px;
        height: 58px;
        margin-top: 52px;
    }

    .issue-card h3 {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
    }

    .issues-footer {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 40px;
    }

    .issues-footer-line {
        width: 70px;
    }

    .issues-footer .secondary-btn {
        grid-column: auto;
        width: 100%;
    }

    .breakthrough-section {
        padding: 92px 0;
    }

    .breakthrough-content h2 {
        font-size: clamp(3.2rem, 14vw, 5.6rem);
    }

    .accountability-item {
        min-height: 70px;
        gap: 22px;
        padding-inline: 26px;
        font-size: 1.3rem;
    }
}

@media (max-width: 420px) {
    .issue-card {
        min-height: 610px;
    }

    .issue-card-content {
        padding: 26px 20px;
    }

    .issue-category {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .issue-points li {
        font-size: 0.82rem;
    }

    .accountability-item {
        font-size: 1.1rem;
    }
}

/* =========================================================
   MAIN STYLESHEET — PART 4
   CAMPAIGN VIDEO, TIMELINE, ILLINOIS, VOLUNTEER, PODCAST
========================================================= */

/* =========================================================
   CAMPAIGN VIDEO
========================================================= */

.campaign-video-section {
    overflow: hidden;
    padding: 150px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(159, 30, 46, 0.18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--navy-900),
            var(--navy-950)
        );
}

.campaign-video-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 168, 93, 0.13),
            transparent 70%
        );
    filter: blur(18px);
    pointer-events: none;
}

.campaign-video-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
}

.campaign-video-copy h2 {
    max-width: 780px;
    margin-bottom: 30px;
}

.campaign-video-copy > p:not(.section-kicker) {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--gray-300);
    line-height: 1.82;
}

.campaign-video-copy .campaign-video-lead {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
}

.campaign-video-features {
    display: grid;
    gap: 16px;
    margin: 34px 0 38px;
}

.video-feature {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-feature i {
    margin-top: 4px;
    color: var(--gold-300);
    font-size: 1.05rem;
}

.video-feature div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.video-feature strong {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.video-feature span {
    color: var(--gray-300);
    font-size: 0.92rem;
}

.campaign-video-player {
    position: relative;
}

.video-frame {
    position: relative;
    z-index: 2;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--navy-950);
    box-shadow: var(--shadow-large);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.16),
            rgba(2, 8, 23, 0.84)
        ),
        url("images/zach-portrait.png") center / cover no-repeat;
    text-align: center;
}

.video-play-button {
    display: flex;
    width: 92px;
    height: 92px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    color: var(--white);
    font-size: 1.7rem;
    box-shadow:
        0 0 0 14px rgba(189, 38, 59, 0.12),
        0 18px 44px rgba(0, 0, 0, 0.35);
}

.video-placeholder p {
    margin-bottom: 0;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.video-placeholder span {
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.video-frame-accent {
    position: absolute;
    right: -24px;
    bottom: -24px;
    z-index: 1;
    width: 58%;
    height: 58%;
    border-right: 8px solid var(--gold-500);
    border-bottom: 8px solid var(--red-600);
}

/* =========================================================
   TIMELINE
========================================================= */

.timeline-section {
    overflow: hidden;
    padding: 150px 0;
    background:
        linear-gradient(
            135deg,
            var(--off-white),
            #e8e4db
        );
    color: var(--navy-950);
}

.timeline-section::before {
    content: "2028";
    position: absolute;
    right: -20px;
    bottom: -90px;
    color: rgba(2, 8, 23, 0.045);
    font-family: var(--heading-font);
    font-size: clamp(14rem, 30vw, 36rem);
    font-weight: 800;
    line-height: 0.7;
    pointer-events: none;
}

.timeline-header {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin-bottom: 90px;
}

.timeline-header .section-kicker {
    color: var(--red-600);
}

.timeline-header h2 {
    color: var(--navy-950);
}

.timeline-header p:last-child {
    max-width: 800px;
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.82;
}

.timeline {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 80px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            to bottom,
            var(--red-600),
            var(--gold-500),
            var(--red-600)
        );
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: center;
}

.timeline-item-left .timeline-card {
    grid-column: 1;
}

.timeline-item-right .timeline-card {
    grid-column: 3;
}

.timeline-marker {
    position: relative;
    z-index: 3;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    justify-self: center;
    border: 6px solid var(--off-white);
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    box-shadow:
        0 12px 32px rgba(159, 30, 46, 0.3);
}

.timeline-marker span {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 800;
}

.timeline-card {
    position: relative;
    padding: 40px 38px;
    border: 1px solid rgba(2, 8, 23, 0.12);
    background: rgba(255, 255, 255, 0.76);
    box-shadow:
        0 20px 50px rgba(2, 8, 23, 0.1);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 32px;
    width: 22px;
    height: 22px;
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.98);
}

.timeline-item-left .timeline-card::before {
    right: -11px;
}

.timeline-item-right .timeline-card::before {
    left: -11px;
}

.timeline-date {
    margin-bottom: 10px;
    color: var(--red-600);
    font-family: var(--heading-font);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.timeline-card h3 {
    margin-bottom: 18px;
    color: var(--navy-950);
    font-size: clamp(2.1rem, 3vw, 3.4rem);
}

.timeline-card > p:not(.timeline-date) {
    color: var(--gray-700);
    line-height: 1.75;
}

.timeline-card ul {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.timeline-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-800);
    font-size: 0.92rem;
    font-weight: 600;
}

.timeline-card li i {
    color: var(--red-600);
}

/* =========================================================
   ILLINOIS MOVEMENT
========================================================= */

.illinois-section {
    isolation: isolate;
    min-height: 820px;
    overflow: hidden;
    padding: 150px 0;
}

.illinois-background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.illinois-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        saturate(0.72)
        contrast(1.06)
        brightness(0.62);
}

.illinois-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 23, 0.98) 0%,
            rgba(2, 8, 23, 0.84) 48%,
            rgba(2, 8, 23, 0.52) 100%
        );
}

.illinois-grid {
    display: grid;
    grid-template-columns:
        minmax(380px, 0.9fr)
        minmax(500px, 1.1fr);
    align-items: center;
    gap: clamp(60px, 8vw, 130px);
}

.illinois-map-column {
    display: flex;
    justify-content: center;
}

.illinois-map-wrap {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 0.68;
}

.illinois-map {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 24px 50px rgba(0, 0, 0, 0.5));
}

.map-glow {
    position: absolute;
    inset: 12%;
    z-index: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(189, 38, 59, 0.24),
            transparent 70%
        );
    filter: blur(30px);
}

.map-point {
    position: absolute;
    z-index: 3;
    width: 18px;
    height: 18px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--red-500);
    box-shadow:
        0 0 0 8px rgba(189, 38, 59, 0.16),
        0 0 24px rgba(189, 38, 59, 0.8);
}

.map-point span {
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    animation: map-point-pulse 2.4s infinite;
}

.map-point-one {
    top: 19%;
    left: 54%;
}

.map-point-two {
    top: 34%;
    left: 42%;
}

.map-point-three {
    top: 51%;
    left: 57%;
}

.map-point-four {
    top: 68%;
    left: 46%;
}

.map-point-five {
    top: 83%;
    left: 58%;
}

@keyframes map-point-pulse {
    0% {
        opacity: 0.8;
        transform: scale(0.65);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.illinois-content h2 {
    max-width: 800px;
}

.illinois-content > p:not(.section-kicker) {
    max-width: 760px;
    color: var(--gray-200);
    line-height: 1.82;
}

.illinois-content .illinois-lead {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
}

.illinois-regions {
    display: grid;
    gap: 14px;
    margin: 38px 0;
}

.region-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.region-number {
    color: var(--red-400);
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 800;
}

.region-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.region-item p {
    margin-bottom: 0;
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* =========================================================
   VOLUNTEER SECTION
========================================================= */

.volunteer-section {
    overflow: hidden;
    padding: 150px 0;
    background:
        linear-gradient(
            145deg,
            var(--navy-950),
            var(--navy-900)
        );
}

.volunteer-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    width: 720px;
    height: 420px;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(159, 30, 46, 0.16),
            transparent 70%
        );
    filter: blur(24px);
}

.volunteer-header {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin-bottom: 72px;
}

.volunteer-header > p:last-child {
    max-width: 760px;
    color: var(--gray-300);
    line-height: 1.8;
}

.volunteer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.volunteer-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 34px 30px;
    border: 1px solid var(--border-light);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        background-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.volunteer-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    transform: scaleX(0);
    transform-origin: left;
    background:
        linear-gradient(
            90deg,
            var(--red-500),
            var(--gold-300)
        );
    transition: transform var(--transition-medium);
}

.volunteer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 208, 138, 0.38);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.34);
}

.volunteer-card:hover::before {
    transform: scaleX(1);
}

.volunteer-card-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 800;
}

.volunteer-card-icon {
    display: inline-flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    margin-bottom: 46px;
    border: 1px solid rgba(240, 208, 138, 0.25);
    background:
        linear-gradient(
            145deg,
            rgba(240, 208, 138, 0.12),
            rgba(159, 30, 46, 0.1)
        );
    color: var(--gold-300);
    font-size: 1.6rem;
}

.volunteer-card h3 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: clamp(2rem, 2.8vw, 3rem);
}

.volunteer-card p {
    margin-bottom: 30px;
    color: var(--gray-300);
    line-height: 1.72;
}

.volunteer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        gap var(--transition-fast),
        color var(--transition-fast);
}

.volunteer-card:hover .volunteer-link {
    gap: 16px;
    color: var(--white);
}

.volunteer-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 54px;
    padding-top: 38px;
    border-top: 1px solid var(--border-light);
}

.volunteer-footer p {
    margin-bottom: 0;
    color: var(--gray-400);
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* =========================================================
   PODCAST SECTION
========================================================= */

.podcast-section {
    overflow: hidden;
    padding: 150px 0;
    background:
        linear-gradient(
            135deg,
            #05070d,
            #0b1020
        );
}

.podcast-background-lines {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
}

.podcast-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(420px, 0.9fr)
        minmax(500px, 1.1fr);
    align-items: center;
    gap: clamp(60px, 8vw, 130px);
}

.podcast-artwork-column {
    position: relative;
}

.podcast-artwork {
    position: relative;
    width: min(100%, 540px);
    aspect-ratio: 1;
    margin-inline: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01)
        );
    box-shadow: var(--shadow-large);
}

.podcast-artwork-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(189, 38, 59, 0.34),
            transparent 68%
        );
    filter: blur(34px);
}

.podcast-artwork-inner {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(
            circle at center,
            rgba(159, 30, 46, 0.15),
            transparent 58%
        ),
        linear-gradient(
            145deg,
            #10182c,
            #050810
        );
    text-align: center;
}

.podcast-small-title {
    margin-bottom: 24px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.podcast-artwork h2 {
    margin-bottom: 24px;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.77;
}

.podcast-artwork h2 span {
    display: inline;
    color: var(--red-400);
}

.podcast-mic {
    display: flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    color: var(--white);
    font-size: 2rem;
    box-shadow:
        0 0 0 12px rgba(189, 38, 59, 0.12);
}

.podcast-artwork-tag {
    margin-bottom: 0;
    color: var(--gray-200);
    font-family: var(--heading-font);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.audio-wave {
    position: absolute;
    right: 0;
    bottom: -34px;
    left: 0;
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.audio-wave span {
    width: 5px;
    height: 22px;
    border-radius: 6px;
    background:
        linear-gradient(
            to top,
            var(--red-500),
            var(--gold-300)
        );
    animation: audio-wave 1.2s ease-in-out infinite;
}

.audio-wave span:nth-child(2n) {
    animation-delay: 120ms;
}

.audio-wave span:nth-child(3n) {
    animation-delay: 240ms;
}

@keyframes audio-wave {
    0%,
    100% {
        height: 18px;
    }

    50% {
        height: 58px;
    }
}

.podcast-content h2 {
    max-width: 800px;
}

.podcast-content > p:not(.section-kicker) {
    max-width: 760px;
    color: var(--gray-300);
    line-height: 1.82;
}

.podcast-content .podcast-lead {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
}

.podcast-episode {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    margin: 34px 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
}

.episode-icon {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    color: var(--white);
}

.episode-label {
    margin-bottom: 6px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.podcast-episode h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: clamp(1.5rem, 2.2vw, 2.4rem);
    line-height: 1;
}

.podcast-episode span {
    color: var(--gray-400);
    font-size: 0.88rem;
}

.podcast-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.podcast-platforms a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.035);
    color: var(--gray-200);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.podcast-platforms a:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 208, 138, 0.4);
    color: var(--gold-300);
}

/* =========================================================
   RESPONSIVE — PART 4
========================================================= */

@media (max-width: 1120px) {
    .campaign-video-grid,
    .illinois-grid,
    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .campaign-video-copy,
    .illinois-content,
    .podcast-content {
        max-width: 860px;
    }

    .campaign-video-player,
    .illinois-map-column,
    .podcast-artwork-column {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 20px;
    }

    .timeline-line {
        left: 35px;
    }

    .timeline-marker {
        grid-column: 1;
        justify-self: center;
    }

    .timeline-item-left .timeline-card,
    .timeline-item-right .timeline-card {
        grid-column: 2;
    }

    .timeline-item-left .timeline-card::before,
    .timeline-item-right .timeline-card::before {
        right: auto;
        left: -11px;
    }

    .volunteer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .campaign-video-section,
    .timeline-section,
    .illinois-section,
    .volunteer-section,
    .podcast-section {
        padding: 100px 0;
    }

    .video-frame-accent {
        right: -12px;
        bottom: -12px;
        border-width: 5px;
    }

    .timeline-header {
        margin-bottom: 60px;
    }

    .timeline {
        gap: 46px;
    }

    .timeline-item {
        grid-template-columns: 54px 1fr;
        gap: 14px;
    }

    .timeline-line {
        left: 27px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }

    .timeline-card {
        padding: 28px 24px;
    }

    .timeline-card::before {
        top: 24px;
        width: 16px;
        height: 16px;
    }

    .timeline-item-left .timeline-card::before,
    .timeline-item-right .timeline-card::before {
        left: -8px;
    }

    .illinois-map-wrap {
        width: min(100%, 390px);
    }

    .volunteer-grid {
        grid-template-columns: 1fr;
    }

    .volunteer-card {
        min-height: 340px;
    }

    .volunteer-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .volunteer-footer .primary-btn {
        width: 100%;
    }

    .volunteer-footer p {
        text-align: center;
    }

    .podcast-artwork {
        width: min(100%, 440px);
    }

    .podcast-artwork-inner {
        padding: 26px;
    }

    .podcast-episode {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .campaign-video-section,
    .timeline-section,
    .illinois-section,
    .volunteer-section,
    .podcast-section {
        padding: 82px 0;
    }

    .video-frame {
        aspect-ratio: 4 / 3;
    }

    .video-play-button {
        width: 72px;
        height: 72px;
        font-size: 1.3rem;
    }

    .timeline-item {
        grid-template-columns: 42px 1fr;
        gap: 10px;
    }

    .timeline-line {
        left: 21px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }

    .timeline-marker span {
        font-size: 0.76rem;
    }

    .timeline-card {
        padding: 24px 20px;
    }

    .region-item {
        grid-template-columns: 42px 1fr;
    }

    .volunteer-card {
        padding: 30px 24px;
    }

    .podcast-artwork h2 {
        font-size: clamp(3.4rem, 16vw, 5rem);
    }

    .podcast-mic {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .podcast-platforms {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .podcast-platforms a {
        justify-content: center;
    }
}

/* =========================================================
   MAIN STYLESHEET — PART 5
   NEWS, EVENTS, SIGNUP, DONATION, FINAL CTA, FOOTER,
   MOBILE MENU, BACK TO TOP
========================================================= */

/* =========================================================
   NEWS SECTION
========================================================= */

.news-section {
    overflow: hidden;
    padding: 150px 0;
    background:
        linear-gradient(
            135deg,
            var(--off-white),
            #e9e5dc
        );
    color: var(--navy-950);
}

.news-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(159, 30, 46, 0.11),
            transparent 70%
        );
    pointer-events: none;
}

.news-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 70px;
}

.news-header .section-kicker {
    color: var(--red-600);
}

.news-header h2 {
    margin-bottom: 0;
    color: var(--navy-950);
}

.news-header .text-link {
    flex-shrink: 0;
    margin-bottom: 14px;
    color: var(--navy-900);
}

.news-header .text-link:hover {
    color: var(--red-600);
}

.news-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(520px, 1.15fr)
        minmax(420px, 0.85fr);
    gap: 34px;
}

.featured-news-card {
    overflow: hidden;
    border: 1px solid rgba(2, 8, 23, 0.12);
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 22px 60px rgba(2, 8, 23, 0.12);
}

.featured-news-image {
    position: relative;
    min-height: 440px;
    overflow: hidden;
}

.featured-news-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-news-card:hover .featured-news-image img {
    transform: scale(1.045);
}

.news-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(2, 8, 23, 0.8) 100%
        );
}

.news-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 10px 14px;
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
}

.featured-news-content {
    padding: 38px;
}

.news-date {
    margin-bottom: 10px;
    color: var(--red-600);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.featured-news-content h3 {
    margin-bottom: 18px;
    color: var(--navy-950);
    font-size: clamp(2.5rem, 4.2vw, 4.8rem);
}

.featured-news-content > p:not(.news-date) {
    margin-bottom: 26px;
    color: var(--gray-700);
    line-height: 1.8;
}

.featured-news-content .issue-link {
    color: var(--red-600);
}

.featured-news-content .issue-link:hover {
    color: var(--navy-950);
}

.news-list {
    display: grid;
    gap: 18px;
}

.news-list-card {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 28px;
    border: 1px solid rgba(2, 8, 23, 0.12);
    background: rgba(255, 255, 255, 0.68);
    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        border-color var(--transition-medium);
}

.news-list-card:hover {
    transform: translateX(8px);
    border-color: rgba(159, 30, 46, 0.26);
    box-shadow:
        0 18px 40px rgba(2, 8, 23, 0.1);
}

.news-list-number {
    color: rgba(2, 8, 23, 0.16);
    font-family: var(--heading-font);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 0.9;
}

.news-list-content h3 {
    margin-bottom: 12px;
    color: var(--navy-950);
    font-size: clamp(1.8rem, 2.7vw, 2.7rem);
}

.news-list-content > p:not(.news-date) {
    margin-bottom: 18px;
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.7;
}

.news-list-content .text-link {
    color: var(--navy-900);
    font-size: 0.78rem;
}

.news-list-content .text-link:hover {
    color: var(--red-600);
}

/* =========================================================
   EVENTS SECTION
========================================================= */

.events-section {
    isolation: isolate;
    overflow: hidden;
    padding: 150px 0;
}

.events-background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.events-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        saturate(0.65)
        contrast(1.08)
        brightness(0.58);
}

.events-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.82),
            rgba(2, 8, 23, 0.97)
        ),
        linear-gradient(
            90deg,
            rgba(159, 30, 46, 0.2),
            transparent 50%
        );
}

.events-header {
    max-width: 1020px;
    margin-bottom: 70px;
}

.events-header > p:last-child {
    max-width: 780px;
    color: var(--gray-300);
    line-height: 1.8;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.event-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        );
    backdrop-filter: blur(18px);
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 208, 138, 0.36);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.34);
}

.event-date-block {
    display: flex;
    min-height: 118px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    color: var(--white);
}

.event-date-block strong {
    font-family: var(--heading-font);
    font-size: 4.6rem;
    line-height: 0.8;
}

.event-month,
.event-year {
    font-family: var(--heading-font);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    writing-mode: vertical-rl;
}

.event-content {
    padding: 34px 30px;
}

.event-type {
    margin-bottom: 12px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.event-content h3,
.event-empty-content h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.event-details {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.event-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    color: var(--gray-200);
    font-size: 0.9rem;
}

.event-details i {
    width: 16px;
    color: var(--red-400);
}

.event-content > p:not(.event-type) {
    margin-bottom: 24px;
    color: var(--gray-300);
    line-height: 1.72;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    transition:
        gap var(--transition-fast),
        color var(--transition-fast);
}

.event-link:hover {
    gap: 16px;
    color: var(--white);
}

.event-card-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            145deg,
            rgba(159, 30, 46, 0.16),
            rgba(255, 255, 255, 0.025)
        );
}

.event-empty-content {
    padding: 40px 32px;
    text-align: center;
}

.event-empty-icon {
    display: flex;
    width: 84px;
    height: 84px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border: 1px solid rgba(240, 208, 138, 0.28);
    background: rgba(240, 208, 138, 0.08);
    color: var(--gold-300);
    font-size: 2rem;
}

.event-empty-content > p:not(.event-type) {
    margin-bottom: 30px;
    color: var(--gray-300);
    line-height: 1.72;
}

.events-footer {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

/* =========================================================
   EMAIL SIGNUP
========================================================= */

.signup-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background:
        linear-gradient(
            135deg,
            var(--navy-800),
            var(--navy-950)
        );
}

.signup-grid {
    display: grid;
    grid-template-columns:
        minmax(420px, 0.9fr)
        minmax(520px, 1.1fr);
    align-items: center;
    gap: 80px;
}

.signup-content h2 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 5vw, 5.8rem);
}

.signup-content > p:last-child {
    max-width: 700px;
    color: var(--gray-300);
    line-height: 1.8;
}

.signup-form {
    padding: 34px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(16px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.form-group input {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
}

.form-group input::placeholder {
    color: var(--gray-500);
}

.form-group input:focus {
    border-color: var(--gold-300);
    background: rgba(255, 255, 255, 0.065);
    box-shadow:
        0 0 0 3px rgba(240, 208, 138, 0.1);
}

.form-submit-group {
    justify-content: flex-end;
}

.form-submit {
    width: 100%;
    min-height: 54px;
    margin-top: auto;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.78rem;
    line-height: 1.5;
    cursor: pointer;
}

.form-consent input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--red-500);
}

/* =========================================================
   DONATION SECTION
========================================================= */

.donation-section {
    isolation: isolate;
    overflow: hidden;
    padding: 150px 0;
}

.donation-background {
    position: absolute;
    inset: 0;
    z-index: -4;
}

.donation-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        saturate(0.75)
        contrast(1.08)
        brightness(0.58);
}

.donation-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 23, 0.98) 0%,
            rgba(2, 8, 23, 0.86) 48%,
            rgba(2, 8, 23, 0.62) 100%
        ),
        linear-gradient(
            180deg,
            rgba(159, 30, 46, 0.1),
            rgba(2, 8, 23, 0.9)
        );
}

.donation-stars {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.22;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.85) 1px,
            transparent 1.5px
        );
    background-size: 48px 48px;
}

.donation-grid {
    display: grid;
    grid-template-columns:
        minmax(480px, 1fr)
        minmax(420px, 0.8fr);
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
}

.donation-content h2 {
    max-width: 920px;
}

.donation-content .donation-lead {
    max-width: 780px;
    color: var(--gray-200);
    font-size: 1.05rem;
    line-height: 1.85;
}

.donation-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 34px;
}

.donation-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-200);
    font-family: var(--heading-font);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.donation-trust-item i {
    color: var(--gold-300);
}

.donation-panel {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(22px);
}

.donation-panel-header {
    margin-bottom: 26px;
    text-align: center;
}

.donation-panel-header p {
    margin-bottom: 6px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.donation-panel-header span {
    color: var(--gray-400);
    font-size: 0.88rem;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.donation-amount {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 800;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.donation-amount:hover {
    transform: translateY(-3px);
    border-color: var(--gold-300);
    background: var(--gold-300);
    color: var(--navy-950);
}

.donation-amount-other {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.donation-main-button {
    width: 100%;
}

.donation-disclaimer {
    margin: 18px 0 0;
    color: var(--gray-500);
    font-size: 0.7rem;
    line-height: 1.55;
    text-align: center;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {
    isolation: isolate;
    display: flex;
    min-height: 720px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px;
    text-align: center;
}

.final-cta-background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.final-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        saturate(0.72)
        contrast(1.08)
        brightness(0.58);
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.74),
            rgba(2, 8, 23, 0.95)
        ),
        linear-gradient(
            90deg,
            rgba(159, 30, 46, 0.24),
            transparent 50%,
            rgba(201, 168, 93, 0.11)
        );
}

.final-cta-section::before {
    content: "";
    position: absolute;
    inset: 26px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.final-cta-content {
    width: min(100%, 1120px);
}

.final-cta-content .section-kicker {
    justify-content: center;
}

.final-cta-content h2 {
    margin-bottom: 28px;
    font-size: clamp(4rem, 8vw, 9.2rem);
}

.final-cta-content h2 span {
    color: var(--gold-300);
}

.final-cta-content > p:not(.section-kicker) {
    max-width: 860px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.final-cta-buttons .primary-btn,
.final-cta-buttons .secondary-btn {
    min-width: 220px;
}

/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    position: relative;
    background:
        linear-gradient(
            145deg,
            #020611,
            #071126
        );
}

.footer-top-line {
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--red-600),
            var(--gold-300),
            var(--red-600)
        );
}

/* =====================================
   MAIN FOOTER GRID
===================================== */

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.2fr)
        minmax(150px, 0.8fr)
        minmax(150px, 0.8fr)
        minmax(240px, 1.2fr);
    align-items: start;
    justify-items: center;
    gap: 45px;
    padding-top: 90px;
    padding-bottom: 70px;
}

/* =====================================
   FOOTER BRAND
===================================== */

.footer-brand {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 260px;
    height: 70px;
    margin: 0 auto;
    object-fit: contain;
}

.footer-brand > p {
    width: 100%;
    max-width: 410px;
    margin-right: auto;
    margin-left: auto;
    color: var(--gray-400);
    line-height: 1.75;
    text-align: center;
}

.footer-brand .footer-tagline {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--gray-400);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: 0.04em;
    text-align: center;
}

.footer-brand .footer-slogan {
    margin-top: 24px;
    margin-bottom: 0;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

/* =====================================
   FOOTER COLUMNS
===================================== */

.footer-column {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-column h3 {
    margin-top: 0;
    margin-bottom: 24px;
    color: var(--white);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-align: center;
}

.footer-column ul {
    display: grid;
    justify-items: center;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-column li a {
    display: inline-block;
    color: var(--gray-400);
    font-size: 0.9rem;
    text-align: center;
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer-column li a:hover {
    transform: translateX(3px);
    color: var(--gold-300);
}

/* =====================================
   CONNECT COLUMN
===================================== */

.footer-connect {
    align-items: center;
    text-align: center;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-socials a {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.035);
    color: var(--gray-300);
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        background-color var(--transition-fast);
}

.footer-socials a:hover {
    transform: translateY(-3px);
    border-color: var(--gold-300);
    background: rgba(240, 208, 138, 0.08);
    color: var(--gold-300);
}

.footer-email {
    display: inline-block;
    color: var(--gray-400);
    font-size: 0.88rem;
    text-align: center;
    overflow-wrap: anywhere;
    transition: color var(--transition-fast);
}

.footer-email:hover {
    color: var(--gold-300);
}

/* =====================================
   FOOTER BOTTOM
===================================== */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding-top: 28px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.72rem;
    line-height: 1.5;
}

.footer-bottom p:first-child {
    text-align: left;
}

.footer-bottom p:nth-child(2) {
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.72rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--gold-300);
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 1050px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        gap: 55px 40px;
        padding-top: 75px;
        padding-bottom: 60px;
    }

    .footer-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom p:first-child,
    .footer-bottom p:nth-child(2) {
        text-align: center;
    }

    .footer-legal {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 650px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 65px;
        padding-bottom: 50px;
    }

    .footer-brand,
    .footer-column,
    .footer-connect {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        max-width: 230px;
        height: auto;
        max-height: 70px;
    }

    .footer-brand > p {
        text-align: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 24px;
        padding-bottom: 24px;
        text-align: center;
    }

    .footer-bottom p:first-child,
    .footer-bottom p:nth-child(2) {
        text-align: center;
    }

    .footer-legal {
        grid-column: auto;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 4px;
    }
}
/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    display: flex;
    width: min(88vw, 440px);
    height: 100svh;
    flex-direction: column;
    padding: 24px;
    transform: translateX(105%);
    background:
        linear-gradient(
            160deg,
            var(--navy-900),
            var(--navy-950)
        );
    box-shadow:
        -20px 0 70px rgba(0, 0, 0, 0.48);
    transition: transform var(--transition-medium);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-logo img {
    width: auto;
    max-width: 190px;
    height: 54px;
    object-fit: contain;
}

.mobile-menu-close {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 1.2rem;
    transition:
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--red-600);
    color: var(--white);
}

.mobile-navigation {
    display: grid;
    margin-top: 32px;
}

.mobile-navigation a {
    display: flex;
    min-height: 56px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-200);
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

.mobile-navigation a:hover {
    padding-left: 10px;
    color: var(--gold-300);
}

.mobile-donate-button {
    width: 100%;
    margin-top: auto;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1900;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(5px);
    transition:
        opacity var(--transition-medium),
        visibility var(--transition-medium);
}

.mobile-menu-backdrop.open {
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(
            135deg,
            var(--red-500),
            var(--red-700)
        );
    color: var(--white);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.34);
    transition:
        opacity var(--transition-medium),
        transform var(--transition-medium),
        visibility var(--transition-medium),
        background-color var(--transition-fast);
}

.back-to-top.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-500);
    color: var(--navy-950);
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--gold-300);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   RESPONSIVE — PART 5
========================================================= */

@media (max-width: 1160px) {
    .news-grid,
    .signup-grid,
    .donation-grid {
        grid-template-columns: 1fr;
    }

    .news-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-list-card {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-card-empty {
        grid-column: 1 / -1;
        min-height: 380px;
    }

    .signup-content,
    .signup-form,
    .donation-content,
    .donation-panel {
        width: min(100%, 840px);
    }

    .donation-panel {
        margin-inline: auto;
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(2, 0.7fr);
    }

    .footer-connect {
        grid-column: 2 / -1;
    }

    .footer-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .footer-legal {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .news-section,
    .events-section,
    .donation-section {
        padding: 105px 0;
    }

    .signup-section {
        padding: 86px 0;
    }

    .news-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-list {
        grid-template-columns: 1fr;
    }

    .news-list-card {
        grid-template-columns: 62px 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card-empty {
        grid-column: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-connect {
        grid-column: auto;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-legal {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .news-section,
    .events-section,
    .donation-section {
        padding: 88px 0;
    }

    .featured-news-image,
    .featured-news-image img {
        height: 330px;
        min-height: 330px;
    }

    .featured-news-content {
        padding: 28px 24px;
    }

    .news-list-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .event-card {
        min-height: 0;
    }

    .event-date-block {
        min-height: 100px;
    }

    .signup-form,
    .donation-panel {
        padding: 26px 22px;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .final-cta-section {
        min-height: 620px;
        padding:
            100px
            18px;
    }

    .final-cta-section::before {
        inset: 14px;
    }

    .final-cta-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .final-cta-buttons .primary-btn,
    .final-cta-buttons .secondary-btn {
        width: 100%;
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .footer-brand,
    .footer-connect {
        grid-column: auto;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 420px) {
    .featured-news-image,
    .featured-news-image img {
        height: 280px;
        min-height: 280px;
    }

    .news-badge {
        top: 16px;
        left: 16px;
    }

    .event-content,
    .event-empty-content {
        padding: 28px 22px;
    }

    .donation-amount {
        min-height: 58px;
        font-size: 1.15rem;
    }

    .footer-logo img {
        max-width: 220px;
        height: 60px;
    }

    .mobile-menu {
        width: 100%;
    }
}

/* =========================================================
   GLOBAL WIDTH CORRECTION
   Tightens overly wide layouts across all pages
========================================================= */

:root {
    --site-width: 1240px;
    --content-width: 1120px;
    --text-width: 720px;
}

/* Main site container */

.container {
    width: min(
        calc(100% - 48px),
        var(--site-width)
    );
    margin-inline: auto;
}

/* Prevent large sections from stretching too far */

.about-hero-grid,
.about-introduction-grid,
.family-grid,
.why-running-grid,
.campaign-video-grid,
.illinois-grid,
.podcast-grid,
.signup-grid,
.donation-grid,
.news-grid,
.issues-header,
.footer-grid {
    width: 100%;
    max-width: var(--content-width);
    margin-inline: auto;
}

/* Tighten major headings and copy */

.about-hero-content,
.about-introduction-content,
.family-content,
.why-running-heading,
.campaign-video-copy,
.illinois-content,
.podcast-content,
.signup-content,
.donation-content,
.timeline-header,
.life-story-header,
.events-header,
.volunteer-header,
.news-header {
    max-width: 760px;
}

.about-hero-intro,
.about-introduction-content p,
.family-content p,
.why-running-heading p,
.campaign-video-copy p,
.illinois-content p,
.podcast-content p,
.signup-content p,
.donation-content p,
.life-story-header p,
.events-header p,
.volunteer-header p {
    max-width: var(--text-width);
}

/* Reduce oversized grid gaps */

.about-hero-grid {
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, 0.65fr);
    gap: 48px;
}

.about-introduction-grid {
    grid-template-columns:
        minmax(340px, 0.72fr)
        minmax(0, 1fr);
    gap: 72px;
}

.family-grid {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(330px, 0.68fr);
    gap: 60px;
}

.why-running-grid {
    grid-template-columns:
        minmax(340px, 0.7fr)
        minmax(0, 1fr);
    gap: 68px;
}

.campaign-video-grid,
.illinois-grid,
.podcast-grid,
.signup-grid,
.donation-grid {
    gap: 64px;
}

.news-grid {
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(340px, 0.72fr);
    gap: 26px;
}

/* Tighten cards */

.story-grid,
.issues-grid,
.volunteer-grid,
.events-grid {
    max-width: var(--content-width);
    margin-inline: auto;
}

.story-card,
.volunteer-card,
.event-card {
    padding-left: 28px;
    padding-right: 28px;
}

/* About page hero adjustment */

.about-hero-content h1 {
    max-width: 760px;
    font-size: clamp(4.5rem, 7.5vw, 8.5rem);
}

.about-hero-quote {
    max-width: 420px;
    padding: 30px;
}

.about-hero-quote blockquote {
    font-size: clamp(1.6rem, 2.2vw, 2.45rem);
}

/* Prevent headings from visually spanning too far */

h1,
h2,
h3 {
    text-wrap: balance;
}

.section-header,
.section-heading,
.final-cta-content,
.about-final-cta-content,
.campaign-standard-content,
.breakthrough-content {
    max-width: 980px;
    margin-inline: auto;
}

/* Footer correction */

.footer-grid {
    grid-template-columns:
        minmax(260px, 1.15fr)
        repeat(3, minmax(130px, 0.5fr));
    gap: 46px;
}

/* Large-screen correction */

@media (min-width: 1500px) {
    .container {
        width: min(
            calc(100% - 80px),
            var(--site-width)
        );
    }
}

/* Tablet */

@media (max-width: 1100px) {
    .about-hero-grid,
    .about-introduction-grid,
    .family-grid,
    .why-running-grid,
    .campaign-video-grid,
    .illinois-grid,
    .podcast-grid,
    .signup-grid,
    .donation-grid,
    .news-grid {
        max-width: 820px;
    }

    .about-hero-quote {
        max-width: 680px;
    }

    .footer-grid {
        max-width: 820px;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .container {
        width: min(
            calc(100% - 32px),
            var(--site-width)
        );
    }

    .about-hero-grid,
    .about-introduction-grid,
    .family-grid,
    .why-running-grid,
    .campaign-video-grid,
    .illinois-grid,
    .podcast-grid,
    .signup-grid,
    .donation-grid,
    .news-grid {
        width: 100%;
        max-width: none;
    }

    .about-hero-content h1 {
        font-size: clamp(3.8rem, 18vw, 5.7rem);
    }

    .about-hero-quote {
        width: 100%;
        max-width: none;
    }

    .story-card,
    .volunteer-card,
    .event-card {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(
            calc(100% - 24px),
            var(--site-width)
        );
    }
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100000;
    padding: 12px 18px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    background: #001b3f;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid #d20a2e;
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

/* Final policy-card sizing: applies to current and future issue cards. */

.issue-card {
    container-type: inline-size;
}

.issue-card h3,
.issue-card:not(.issue-card-large):not(.issue-card-wide) h3 {
    max-width: 100%;
    font-size: clamp(2rem, 10cqi, 3.8rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.issue-card-content > * {
    max-width: 100%;
}

.issue-category,
.issue-points li,
.policy-card-prompt {
    overflow-wrap: anywhere;
}

/* Mailing-list preferences */

.subscription-preferences {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0 0 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
}

.subscription-preferences legend {
    padding: 0 8px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.subscription-preferences label {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 0.82rem;
    line-height: 1.35;
    cursor: pointer;
}

.subscription-preferences input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--red-500);
}

@media (max-width: 520px) {
    .subscription-preferences {
        grid-template-columns: 1fr;
    }
}

.issue-card,
.issue-card-content,
.footer-column,
.form-group {
    min-width: 0;
}

/* Home policy rolodex */

.policy-rolodex {
    display: block;
}

.policy-rolodex-stage {
    position: relative;
    min-height: 650px;
    perspective: 1600px;
}

.policy-rolodex-stage .issue-card {
    position: absolute;
    inset: 0;
    width: min(760px, calc(100% - 150px));
    min-height: 620px;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) translateZ(-260px) rotateY(0deg) scale(.82);
    transition:
        transform 520ms cubic-bezier(.22, 1, .36, 1),
        opacity 420ms ease,
        filter 420ms ease;
}

.policy-rolodex-stage .issue-card.active {
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
}

.policy-rolodex-stage .issue-card[data-rolodex-offset="-1"] {
    z-index: 4;
    opacity: .58;
    transform: translateX(-42%) translateZ(-150px) rotateY(16deg) scale(.88);
    filter: brightness(.72);
}

.policy-rolodex-stage .issue-card[data-rolodex-offset="1"] {
    z-index: 4;
    opacity: .58;
    transform: translateX(42%) translateZ(-150px) rotateY(-16deg) scale(.88);
    filter: brightness(.72);
}

.policy-rolodex-stage .issue-card[data-rolodex-offset="-2"],
.policy-rolodex-stage .issue-card[data-rolodex-offset="2"] {
    z-index: 3;
    opacity: .2;
}

.policy-rolodex-controls {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.policy-rolodex-button,
.policy-rolodex-dots button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    color: var(--white);
}

.policy-rolodex-button {
    width: 48px;
    height: 48px;
}

.policy-rolodex-button:hover,
.policy-rolodex-button:focus-visible {
    border-color: var(--gold-300);
    background: var(--red-600);
}

.policy-rolodex-status {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--gray-300);
    font-family: var(--heading-font);
}

.policy-rolodex-status strong {
    color: var(--gold-300);
    font-size: 1.45rem;
}

.policy-rolodex-dots {
    display: flex;
    gap: 7px;
}

.policy-rolodex-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
}

.policy-rolodex-dots button.active {
    border-color: var(--gold-300);
    background: var(--gold-300);
}

@media (max-width: 760px) {
    .policy-rolodex-stage {
        min-height: 640px;
    }

    .policy-rolodex-stage .issue-card {
        width: calc(100% - 32px);
        min-height: 610px;
    }

    .policy-rolodex-stage .issue-card[data-rolodex-offset="-1"] {
        transform: translateX(-12%) translateZ(-160px) rotateY(8deg) scale(.9);
    }

    .policy-rolodex-stage .issue-card[data-rolodex-offset="1"] {
        transform: translateX(12%) translateZ(-160px) rotateY(-8deg) scale(.9);
    }

    .policy-rolodex-dots {
        max-width: 120px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================================================
   LEGAL, VOTER RESOURCES, AND 404 PAGES
========================================================= */

.legal-hero,
.voter-hero {
    background:
        radial-gradient(circle at 82% 28%, rgba(191, 10, 48, 0.2), transparent 32%),
        linear-gradient(145deg, var(--navy-900), var(--navy-950));
}

.legal-section,
.resource-section {
    padding: var(--section-space) 0;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.6fr);
    gap: clamp(44px, 7vw, 90px);
    align-items: start;
}

.legal-summary {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    padding: 30px;
    border-left: 5px solid var(--red-500);
    background: rgba(255, 255, 255, 0.045);
}

.legal-summary h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.legal-updated {
    margin-top: 28px;
    color: var(--gold-300);
}

.legal-content {
    padding: clamp(26px, 5vw, 56px);
    background: var(--off-white);
    color: var(--navy-950);
    box-shadow: var(--shadow-medium);
}

.legal-content h2 {
    margin: 42px 0 14px;
    color: var(--navy-950);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: #263247;
    line-height: 1.75;
}

.legal-content ul {
    display: grid;
    gap: 9px;
    margin: 0 0 22px 22px;
}

.legal-content a {
    color: var(--red-500);
    font-weight: 700;
    text-decoration: underline;
}

.resource-notice,
.voter-day-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid rgba(240, 208, 138, 0.36);
    background: rgba(240, 208, 138, 0.07);
}

.resource-notice {
    justify-content: flex-start;
}

.resource-notice > i {
    color: var(--gold-300);
    font-size: 2rem;
}

.resource-notice h2 {
    margin-bottom: 6px;
    font-size: 1.7rem;
}

.resource-notice p,
.voter-day-panel p {
    margin: 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 42px;
}

.resource-card {
    display: flex;
    min-height: 340px;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.04);
}

.resource-card > i {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 25px;
    background: var(--red-500);
    color: var(--white);
    font-size: 1.35rem;
}

.resource-card h2 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.resource-card p {
    margin-bottom: 26px;
}

.resource-card .secondary-btn {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.voter-day-panel {
    padding: clamp(30px, 5vw, 54px);
    background: linear-gradient(120deg, rgba(191, 10, 48, 0.2), rgba(255, 255, 255, 0.035));
}

.voter-day-panel > div {
    max-width: 720px;
}

.voter-day-panel h2 {
    margin-bottom: 12px;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.error-page {
    min-height: 100vh;
}

.error-main {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 34px 20px;
    background:
        radial-gradient(circle at 50% 42%, rgba(191, 10, 48, 0.25), transparent 28%),
        var(--navy-950);
}

.error-panel {
    width: min(100%, 850px);
    padding: clamp(35px, 7vw, 80px);
    border: 1px solid var(--border-light);
    text-align: center;
    box-shadow: var(--shadow-large);
}

.error-logo {
    display: inline-block;
    width: min(270px, 80%);
    margin-bottom: 35px;
}

.error-logo img {
    width: 100%;
}

.error-code {
    margin: 0;
    color: var(--red-500);
    font-family: var(--heading-font);
    font-size: clamp(7rem, 22vw, 15rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.7;
    opacity: 0.92;
}

.error-panel .section-kicker {
    justify-content: center;
    margin-top: 28px;
}

.error-panel h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 7vw, 6rem);
}

.error-panel > p:not(.error-code, .section-kicker) {
    max-width: 600px;
    margin: 0 auto 30px;
}

.error-panel .hero-buttons {
    justify-content: center;
}

@media (max-width: 950px) {
    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .legal-layout,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        position: static;
    }

    .resource-card {
        min-height: 0;
    }

    .voter-day-panel {
        align-items: stretch;
        flex-direction: column;
    }
}

/* =========================================================
   Q&A FORM — FINAL CASCADE OVERRIDE
========================================================= */

body .ask-question-section form.question-submit-form h2,
body .ask-question-section form.question-submit-form .form-group > label,
body .ask-question-section form.question-submit-form .form-label,
body .ask-question-section form.question-submit-form .attribution-options label,
body .ask-question-section form.question-submit-form .attribution-options span,
body .ask-question-section form.question-submit-form .form-consent,
body .ask-question-section form.question-submit-form .form-consent span {
    color: #020817 !important;
}

body .ask-question-section form.question-submit-form input[type="text"],
body .ask-question-section form.question-submit-form input[type="email"],
body .ask-question-section form.question-submit-form input[type="tel"],
body .ask-question-section form.question-submit-form select,
body .ask-question-section form.question-submit-form textarea {
    border: 1px solid rgba(2, 8, 23, 0.22) !important;
    background: #ffffff !important;
    color: #020817 !important;
    -webkit-text-fill-color: #020817 !important;
}

body .ask-question-section form.question-submit-form select option {
    background: #ffffff !important;
    color: #020817 !important;
}

body .ask-question-section form.question-submit-form input::placeholder,
body .ask-question-section form.question-submit-form textarea::placeholder {
    color: #606978 !important;
    opacity: 1;
}

/* =========================================================
   PODCAST DIRECTORY AND REPLACEABLE ARTWORK
========================================================= */

.podcast-shows-section {
    padding: var(--section-space) 0;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(191, 10, 48, 0.14),
            transparent 30%
        ),
        var(--navy-950);
}

.podcast-shows-header {
    max-width: 860px;
    margin-bottom: 54px;
}

.podcast-shows-header p:not(.section-kicker) {
    max-width: var(--text-width);
}

.podcast-shows-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.podcast-show-card {
    overflow: hidden;
    border: 1px solid var(--border-light);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow: var(--shadow-medium);
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium);
}

.podcast-show-card:hover {
    transform: translateY(-7px);
    border-color: rgba(240, 208, 138, 0.5);
}

.podcast-show-artwork,
.podcast-feature-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background:
        linear-gradient(
            145deg,
            var(--navy-800),
            var(--navy-950)
        );
}

.podcast-show-artwork img,
.podcast-feature-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-artwork-placeholder,
.podcast-feature-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    padding: 30px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 4.4rem);
    font-weight: 800;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
}

.podcast-artwork-placeholder i,
.podcast-feature-placeholder i {
    color: var(--red-500);
    font-size: 3rem;
}

.podcast-feature-placeholder strong {
    font-size: clamp(2.6rem, 5vw, 5.6rem);
    line-height: 0.86;
}

.podcast-feature-placeholder span {
    color: var(--gold-300);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.podcast-show-content {
    padding: 30px;
}

.podcast-show-content h3 {
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.podcast-show-content > p:not(.episode-label) {
    margin-bottom: 24px;
}

.podcast-section-alternate {
    border-top: 1px solid var(--border-light);
    background:
        linear-gradient(
            145deg,
            var(--navy-950),
            var(--navy-900)
        );
}

@media (max-width: 820px) {
    .podcast-shows-grid {
        grid-template-columns: 1fr;
    }

    .podcast-show-card {
        width: min(100%, 620px);
        margin-inline: auto;
    }
}

@media (max-width: 520px) {
    .podcast-show-content {
        padding: 24px;
    }
}

/* =========================================================
   PUBLIC VOTER Q&A
========================================================= */

.questions-section,
.ask-question-section {
    padding: var(--section-space) 0;
}

.questions-section {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(191, 10, 48, 0.13),
            transparent 30%
        ),
        var(--navy-950);
}

.questions-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 44px;
}

.questions-heading h2 {
    margin-bottom: 0;
}

.questions-heading > p {
    max-width: 520px;
    margin-bottom: 12px;
}

.question-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
}

.question-filters button {
    min-height: 42px;
    padding: 9px 15px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.035);
    color: var(--gray-200);
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.question-filters button:hover,
.question-filters button.active {
    border-color: var(--red-500);
    background: var(--red-500);
    color: var(--white);
}

.public-answers-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 1040px);
    gap: 16px;
    margin-inline: auto;
}

.public-answer-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--red-500);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.public-answer-card.featured {
    grid-row: auto;
    border-color: rgba(240, 208, 138, 0.4);
    border-left-color: var(--gold-300);
    background: rgba(240, 208, 138, 0.055);
}

.answer-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.answer-card-topline i {
    margin-right: 6px;
}

.public-answer-card h3 {
    max-width: 900px;
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 2.7vw, 2.55rem);
    line-height: 1.08;
    text-wrap: balance;
}

.voter-attribution {
    margin-bottom: 18px;
    color: var(--gray-400);
    font-size: 0.82rem;
}

.public-answer {
    flex: 1;
    padding-left: 18px;
    border-left: 2px solid rgba(207, 10, 44, 0.45);
}

.public-answer p {
    color: var(--gray-200);
    font-size: 0.98rem;
    line-height: 1.7;
}

.public-answer-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    color: var(--gray-400);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.public-answer-card footer a {
    color: var(--gold-300);
}

.questions-empty {
    padding: 70px 20px;
    border: 1px dashed var(--border-light);
    text-align: center;
}

.questions-empty i {
    margin-bottom: 18px;
    color: var(--red-500);
    font-size: 2.4rem;
}

.questions-empty h3 {
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.ask-question-section {
    background: var(--off-white);
    color: var(--navy-950);
}

.ask-question-section h2,
.ask-question-section h3,
.ask-question-section .contact-content h2 {
    color: var(--navy-950);
}

.ask-question-section .contact-content > p {
    color: var(--gray-700);
}

.qa-guidelines {
    display: grid;
    gap: 13px;
}

.qa-guidelines > div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.qa-guidelines i {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--red-500);
    color: var(--white);
}

.qa-guidelines strong,
.qa-guidelines span {
    display: block;
}

.qa-guidelines strong {
    margin-bottom: 2px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.qa-guidelines span {
    color: var(--gray-700);
    font-size: 0.88rem;
}

.question-submit-form {
    width: 100%;
    min-width: 0;
    border-color: rgba(2, 8, 23, 0.12);
    background: var(--white);
}

.question-submit-form h2,
.question-submit-form label,
.question-submit-form .form-label {
    color: var(--navy-950);
}

.question-submit-form .contact-form-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.question-submit-form .form-group {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 9px;
}

.question-submit-form .form-group.full-width,
.question-submit-form .full-width {
    grid-column: 1 / -1;
}

.question-submit-form input[type="text"],
.question-submit-form input[type="email"],
.question-submit-form select,
.question-submit-form textarea {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    border-color: rgba(2, 8, 23, 0.16);
    background: var(--off-white);
    color: var(--navy-950);
}

.question-submit-form textarea {
    min-height: 180px;
}

.question-submit-form .form-group > small {
    display: block;
    width: 100%;
    color: var(--gray-400);
    text-align: right;
}

.attribution-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.attribution-options .form-label {
    width: 100%;
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.attribution-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-size: 0.85rem;
}

.attribution-options input[type="radio"],
.question-submit-form .form-consent input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--red-500);
}

.question-submit-form .form-consent {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(2, 8, 23, 0.12);
    background: var(--off-white);
}

.question-submit-form .form-consent span {
    color: var(--gray-700);
    font-size: 0.78rem;
    line-height: 1.55;
}

.question-submit-form .contact-form-actions {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.question-submit-form .contact-form-status {
    flex: 1;
    margin: 0;
    color: var(--gray-700);
}

/* Final Q&A form lock — prevents later shared contact rules from overriding it */

body .ask-question-section .question-submit-form h2,
body .ask-question-section .question-submit-form label,
body .ask-question-section .question-submit-form .form-label {
    color: var(--navy-950);
}

body .ask-question-section .question-submit-form input[type="text"],
body .ask-question-section .question-submit-form input[type="email"],
body .ask-question-section .question-submit-form select,
body .ask-question-section .question-submit-form textarea {
    border: 1px solid rgba(2, 8, 23, 0.18);
    background: var(--white);
    color: var(--navy-950);
}

body .ask-question-section .question-submit-form input::placeholder,
body .ask-question-section .question-submit-form textarea::placeholder {
    color: var(--gray-500);
}

body .ask-question-section .question-submit-form select:focus,
body .ask-question-section .question-submit-form input:focus,
body .ask-question-section .question-submit-form textarea:focus {
    border-color: var(--red-500);
    box-shadow: 0 0 0 3px rgba(191, 10, 48, 0.1);
}

/* Homepage rotating Q&A */

.homepage-qa-section {
    overflow: hidden;
    padding: var(--section-space) 0;
    background: var(--off-white);
    color: var(--navy-950);
}

.homepage-qa-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    align-items: center;
    gap: clamp(42px, 7vw, 90px);
}

.homepage-qa-copy h2 {
    color: var(--navy-950);
}

.homepage-qa-copy > p:not(.section-kicker) {
    color: var(--gray-700);
}

.homepage-qa-copy .section-kicker {
    color: var(--red-500);
}

.qa-carousel {
    position: relative;
    min-height: 420px;
}

.qa-slide {
    position: absolute;
    inset: 0;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateX(28px);
    flex-direction: column;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(2, 8, 23, 0.12);
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transition:
        opacity var(--transition-medium),
        transform var(--transition-medium),
        visibility var(--transition-medium);
}

.qa-slide.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.qa-slide-topic {
    margin-bottom: 22px;
    color: var(--red-500);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.qa-slide h3 {
    margin-bottom: 18px;
    color: var(--navy-950);
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.qa-slide blockquote {
    flex: 1;
    margin: 0;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
}

.qa-slide footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(2, 8, 23, 0.1);
}

.qa-slide footer span {
    color: var(--gray-500);
    font-size: 0.78rem;
}

.qa-carousel-controls {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
}

.qa-carousel-controls button {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(2, 8, 23, 0.14);
    background: var(--white);
    color: var(--navy-950);
}

.qa-carousel-controls button:hover {
    border-color: var(--red-500);
    background: var(--red-500);
    color: var(--white);
}

.qa-carousel-status {
    color: var(--gray-500);
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .questions-heading,
    .homepage-qa-layout {
        grid-template-columns: 1fr;
    }

    .public-answers-grid {
        grid-template-columns: 1fr;
    }

    .public-answer-card.featured {
        grid-row: auto;
    }
}

@media (max-width: 560px) {
    .question-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .question-filters button {
        width: 100%;
    }

    .qa-carousel {
        min-height: 500px;
    }

    .question-submit-form .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .question-submit-form .form-group.full-width,
    .question-submit-form .full-width,
    .question-submit-form .contact-form-actions {
        grid-column: auto;
    }

    .question-submit-form .contact-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .question-submit-form .contact-form-actions .primary-btn {
        width: 100%;
    }
}

/* =========================================================
   HOMEPAGE MERCH FEATURE
========================================================= */

.homepage-merch-section {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.homepage-merch-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    align-items: stretch;
    gap: 42px;
}

.homepage-merch-artwork {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(240, 208, 138, 0.3);
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(191, 10, 48, 0.35),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            var(--navy-800),
            var(--navy-950)
        );
    box-shadow: var(--shadow-medium);
}

.homepage-merch-artwork::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.homepage-merch-artwork-inner {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    padding: 40px;
    text-align: center;
}

.homepage-merch-artwork i {
    color: var(--gold-300);
    font-size: 6rem;
}

.homepage-merch-artwork strong {
    max-width: 430px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(3rem, 5vw, 5.8rem);
    letter-spacing: -0.04em;
    line-height: 0.84;
}

.homepage-merch-artwork span {
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.14em;
}

.homepage-merch-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(20px, 4vw, 58px);
}

.homepage-merch-content h3 {
    margin-bottom: 22px;
    font-size: clamp(3.2rem, 6vw, 6.6rem);
}

.homepage-merch-content > p:not(.section-kicker) {
    max-width: 680px;
    margin-bottom: 28px;
}

.homepage-merch-content .issue-points {
    margin-bottom: 34px;
}

@media (max-width: 900px) {
    .homepage-merch-grid {
        grid-template-columns: 1fr;
    }

    .homepage-merch-artwork,
    .homepage-merch-artwork-inner {
        min-height: 430px;
    }
}

/* =========================================================
   WINRED MERCH STOREFRONT
========================================================= */

.merch-section .stat-number::after {
    display: none;
}

.merch-section .stat-number i,
#why-merch .stat-number i {
    color: var(--gold-300);
    font-size: 0.65em;
}

#why-merch .stat-number::after {
    display: none;
}

.winred-storefront {
    overflow: hidden;
    border: 1px solid rgba(240, 208, 138, 0.35);
    background: var(--navy-900);
    box-shadow: var(--shadow-large);
}

.winred-storefront-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-light);
    background:
        linear-gradient(
            110deg,
            rgba(191, 10, 48, 0.18),
            rgba(255, 255, 255, 0.035)
        );
}

.winred-storefront-header h3 {
    margin: 8px 0 0;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.winred-secure-label {
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.winred-secure-label i {
    margin-right: 7px;
}

.winred-embed-shell {
    position: relative;
    min-height: 680px;
    background: var(--white);
}

.winred-storeframe {
    width: 100%;
    min-height: 900px;
    border: 0;
    background: var(--white);
}

.direct-store-shell,
.direct-store-cta {
    min-height: 560px;
}

.winred-placeholder {
    display: flex;
    min-height: 680px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 70px 24px;
    background:
        radial-gradient(
            circle at center,
            rgba(191, 10, 48, 0.2),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--navy-900),
            var(--navy-950)
        );
    text-align: center;
}

.winred-placeholder[hidden],
.winred-storeframe[hidden],
.winred-external-link[hidden] {
    display: none;
}

.winred-placeholder-icon {
    display: flex;
    width: 94px;
    height: 94px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(240, 208, 138, 0.35);
    background: rgba(240, 208, 138, 0.08);
    color: var(--gold-300);
    font-size: 2.25rem;
}

.winred-placeholder .section-kicker {
    justify-content: center;
}

.winred-placeholder h3 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.winred-placeholder > p:not(.section-kicker) {
    max-width: 660px;
    margin-bottom: 30px;
}

.merch-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.merch-trust-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.035);
}

.merch-trust-card > i {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    background: var(--red-500);
    color: var(--white);
}

.merch-trust-card h3 {
    margin-bottom: 7px;
    font-size: 1.25rem;
}

.merch-trust-card p {
    margin: 0;
    font-size: 0.88rem;
}

@media (max-width: 820px) {
    .merch-trust-grid {
        grid-template-columns: 1fr;
    }

    .winred-storefront-header {
        align-items: stretch;
        flex-direction: column;
    }

    .winred-external-link {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .winred-storefront-header {
        padding: 20px;
    }

    .winred-embed-shell,
    .winred-placeholder {
        min-height: 560px;
    }

    .winred-placeholder {
        padding: 54px 20px;
    }
}

/* =========================================================
   SHARED SITE CONSISTENCY
   Applies the same frame, header, navigation, logo and footer
   dimensions to every page.
========================================================= */

:root {
    --red-700: #BF0A30;
    --red-600: #BF0A30;
    --red-500: #BF0A30;
    --red-400: #BF0A30;
    --site-width: 1240px;
    --content-width: 1120px;
    --text-width: 720px;
    --header-height: 92px;
    --header-logo-height: 58px;
    --header-logo-width: 240px;
    --page-hero-min-height: 560px;
    --section-space: clamp(88px, 9vw, 138px);
}

body {
    width: 100%;
}

main {
    display: block;
    width: 100%;
    min-height: 60vh;
}

.container,
.section-shell,
.nav-container {
    width: min(calc(100% - 48px), var(--site-width));
    margin-inline: auto;
}

.main-header {
    height: var(--header-height);
    min-height: var(--header-height);
}

.main-header.scrolled {
    height: 76px;
    min-height: 76px;
}

.nav-container {
    height: 100%;
    min-height: 100%;
    grid-template-columns:
        minmax(190px, var(--header-logo-width))
        minmax(0, 1fr)
        minmax(190px, var(--header-logo-width));
}

.logo,
.header-logo {
    width: var(--header-logo-width);
    height: var(--header-logo-height);
    justify-content: flex-start;
}

.logo img,
.header-logo img {
    width: 100%;
    max-width: var(--header-logo-width);
    height: var(--header-logo-height);
    object-fit: contain;
    object-position: left center;
}

.main-header.scrolled .logo,
.main-header.scrolled .header-logo,
.main-header.scrolled .logo img,
.main-header.scrolled .header-logo img {
    height: 48px;
}

.nav-container nav,
.nav-container nav ul {
    width: 100%;
}

.header-actions {
    min-width: 138px;
}

.main-footer {
    width: 100%;
}

.main-footer .footer-grid,
.main-footer .footer-bottom {
    width: min(calc(100% - 48px), var(--content-width));
    margin-inline: auto;
}

.footer-grid {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 46px;
}

.footer-brand {
    grid-column: auto;
    max-width: 320px;
    margin-inline: auto;
}

.footer-logo {
    width: 260px;
    height: 70px;
}

.footer-logo img {
    width: 100%;
    max-width: 260px;
    height: 70px;
    object-position: center;
}

/* Shared interior-page hero */

.page-hero,
.about-hero,
.platform-hero,
.issues-hero,
.news-hero,
.events-hero,
.volunteer-hero,
.podcast-hero,
.merch-hero,
.contact-hero {
    display: flex;
    min-height: var(--page-hero-min-height);
    align-items: center;
    overflow: hidden;
    padding:
        calc(var(--header-height) + 72px)
        0
        92px;
}

.page-hero .container,
.page-hero .section-shell,
.about-hero .container,
.platform-hero .container,
.issues-hero .container,
.news-hero .container,
.events-hero .container,
.volunteer-hero .container,
.podcast-hero .container,
.merch-hero .container,
.contact-hero .container {
    width: min(calc(100% - 48px), var(--content-width));
}

.page-hero h1,
.platform-hero h1,
.issues-hero h1,
.news-hero h1,
.events-hero h1,
.volunteer-hero h1,
.podcast-hero h1,
.merch-hero h1,
.contact-hero h1 {
    max-width: 920px;
    margin-bottom: 24px;
    font-size: clamp(4rem, 8vw, 8rem);
}

.page-hero p,
.platform-hero p,
.issues-hero p,
.news-hero p,
.events-hero p,
.volunteer-hero p,
.podcast-hero p,
.merch-hero p,
.contact-hero p {
    max-width: var(--text-width);
    margin-bottom: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

/* =========================================================
   MERCH PAGE
========================================================= */

.merch-section {
    padding: var(--section-space) 0;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(191, 10, 48, 0.13),
            transparent 30%
        ),
        var(--navy-950);
}

.merch-header {
    width: min(100%, 760px);
    margin-bottom: 54px;
}

.merch-header p {
    max-width: var(--text-width);
}

.merch-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    padding: 18px 20px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.035);
}

.merch-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.merch-filter {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--gray-200);
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.merch-filter:hover,
.merch-filter.active,
.merch-filter[aria-pressed="true"] {
    border-color: var(--red-500);
    background: var(--red-500);
    color: var(--white);
}

.merch-sort,
.merch-select {
    min-height: 44px;
    padding: 10px 38px 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: 0;
    background-color: var(--navy-900);
    color: var(--white);
}

.merch-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.merch-card,
.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.merch-card:hover,
.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(240, 208, 138, 0.55);
    box-shadow: var(--shadow-medium);
}

.merch-card-image,
.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--off-white);
}

.merch-card-image img,
.product-card-image img {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
}

.merch-card:hover .merch-card-image img,
.product-card:hover .product-card-image img {
    transform: scale(1.045);
}

.merch-badge,
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 7px 11px;
    background: var(--red-500);
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.merch-card-content,
.product-card-content {
    padding: 25px;
}

.merch-card h2,
.merch-card h3,
.product-card h2,
.product-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.65rem, 2.5vw, 2.2rem);
    line-height: 1;
}

.merch-price,
.product-price {
    margin-bottom: 20px;
    color: var(--gold-300);
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 800;
}

.merch-card-actions,
.product-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.merch-card-actions .primary-btn,
.product-card-actions .primary-btn {
    width: 100%;
}

.merch-empty {
    grid-column: 1 / -1;
    padding: 70px 28px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    text-align: center;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-section {
    padding: var(--section-space) 0;
}

.contact-grid {
    display: grid;
    width: 100%;
    max-width: var(--content-width);
    grid-template-columns:
        minmax(280px, 0.75fr)
        minmax(0, 1.25fr);
    gap: 64px;
    margin-inline: auto;
}

.contact-content {
    max-width: 470px;
}

.contact-content > p {
    max-width: var(--text-width);
    margin-bottom: 36px;
}

.contact-methods {
    display: grid;
    gap: 14px;
}

.contact-method,
.contact-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.035);
}

.contact-method-icon,
.contact-card-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--red-500);
    color: var(--white);
}

.contact-method h3,
.contact-card h3 {
    margin: 0 0 4px;
    font-size: 1.15rem;
}

.contact-method p,
.contact-method a,
.contact-card p,
.contact-card a {
    margin: 0;
    color: var(--gray-300);
    overflow-wrap: anywhere;
}

.contact-method a:hover,
.contact-card a:hover {
    color: var(--gold-300);
}

.contact-form,
.contact-form-panel {
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid var(--border-light);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow-medium);
}

.contact-form h2,
.contact-form-panel h2 {
    margin-bottom: 30px;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group,
.contact-field {
    display: grid;
    gap: 9px;
}

.form-group.full-width,
.contact-field.full-width,
.contact-form-grid .full-width {
    grid-column: 1 / -1;
}

.form-group label,
.contact-field label {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    outline: 0;
    background: rgba(2, 8, 23, 0.62);
    color: var(--white);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.contact-form textarea,
.contact-form-panel textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
    border-color: var(--gold-300);
    box-shadow: 0 0 0 3px rgba(240, 208, 138, 0.12);
}

.contact-form ::placeholder,
.contact-form-panel ::placeholder {
    color: var(--gray-400);
}

.contact-form-actions {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.contact-form-status {
    margin: 0;
    font-size: 0.9rem;
}

/* Cloudflare verification shared by every public form */

.campaign-security-check {
    width: 100%;
    margin: 8px 0 18px;
    padding: 14px 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid var(--red-500);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 12px 28px rgba(2, 8, 23, 0.14);
}

.campaign-security-check::before {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-300);
    content: "SECURE SUBMISSION";
    font-family: var(--heading-font);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.campaign-turnstile {
    width: 100%;
    max-width: 320px;
    min-height: 65px;
}

.campaign-turnstile iframe {
    display: block;
    max-width: 100%;
}

.contact-form .campaign-security-check,
.contact-form-panel .campaign-security-check,
.question-submit-form .campaign-security-check {
    grid-column: 1 / -1;
    border-color: rgba(5, 17, 38, 0.14);
    border-left-color: var(--red-500);
    background: rgba(5, 17, 38, 0.035);
}

.contact-form .campaign-security-check::before,
.contact-form-panel .campaign-security-check::before,
.question-submit-form .campaign-security-check::before {
    color: var(--navy-800);
}

@media (max-width: 520px) {
    .campaign-security-check {
        padding: 12px;
    }

    .campaign-turnstile {
        max-width: 100%;
    }
}

/* Shared consistency breakpoints */

@media (max-width: 1160px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    .footer-brand,
    .footer-connect {
        grid-column: auto;
    }

    .merch-grid,
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        gap: 42px;
    }
}

@media (max-width: 1020px) {
    :root {
        --header-height: 78px;
        --header-logo-height: 50px;
        --header-logo-width: 190px;
        --page-hero-min-height: 500px;
    }

    .main-header,
    .main-header.scrolled {
        height: var(--header-height);
        min-height: var(--header-height);
    }

    .nav-container {
        grid-template-columns: var(--header-logo-width) 1fr auto;
    }

    .logo,
    .header-logo,
    .logo img,
    .header-logo img,
    .main-header.scrolled .logo,
    .main-header.scrolled .header-logo,
    .main-header.scrolled .logo img,
    .main-header.scrolled .header-logo img {
        height: var(--header-logo-height);
    }
}

@media (max-width: 820px) {
    .contact-grid {
        max-width: 680px;
        grid-template-columns: 1fr;
    }

    .contact-content {
        max-width: var(--text-width);
    }

    .merch-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .container,
    .section-shell,
    .nav-container,
    .main-footer .footer-grid,
    .main-footer .footer-bottom,
    .page-hero .container,
    .page-hero .section-shell,
    .about-hero .container,
    .platform-hero .container,
    .issues-hero .container,
    .news-hero .container,
    .events-hero .container,
    .volunteer-hero .container,
    .podcast-hero .container,
    .merch-hero .container,
    .contact-hero .container {
        width: min(calc(100% - 32px), var(--site-width));
    }

    .nav-container {
        grid-template-columns: minmax(150px, var(--header-logo-width)) 1fr auto;
        gap: 12px;
    }

    .page-hero,
    .about-hero,
    .platform-hero,
    .issues-hero,
    .news-hero,
    .events-hero,
    .volunteer-hero,
    .podcast-hero,
    .merch-hero,
    .contact-hero {
        min-height: 440px;
        padding:
            calc(var(--header-height) + 58px)
            0
            68px;
    }

    .page-hero h1,
    .platform-hero h1,
    .issues-hero h1,
    .news-hero h1,
    .events-hero h1,
    .volunteer-hero h1,
    .podcast-hero h1,
    .merch-hero h1,
    .contact-hero h1 {
        font-size: clamp(3.4rem, 17vw, 5.6rem);
    }

    .footer-grid,
    .merch-grid,
    .products-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-connect {
        grid-column: auto;
    }

    .form-group.full-width,
    .contact-field.full-width,
    .contact-form-grid .full-width {
        grid-column: auto;
    }

    .contact-form-actions {
        grid-column: auto;
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .container,
    .section-shell,
    .nav-container,
    .main-footer .footer-grid,
    .main-footer .footer-bottom {
        width: min(calc(100% - 24px), var(--site-width));
    }

    .logo,
    .header-logo {
        width: 166px;
    }

    .logo img,
    .header-logo img {
        max-width: 166px;
    }

    .merch-card-content,
    .product-card-content,
    .contact-form,
    .contact-form-panel {
        padding: 22px;
    }
}

.campaign-content-empty {
    grid-column: 1 / -1;
    width: 100%;
    padding: clamp(2rem, 6vw, 5rem);
    border: 1px solid rgba(7, 24, 49, .16);
    background: #fff;
    color: #071831;
    text-align: center;
}

.campaign-content-empty h3 {
    margin: 0 0 .5rem;
}

.campaign-content-empty p {
    margin: 0;
}
.campaign-site-alert {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px 60px 10px 22px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.campaign-site-alert-red { background: #c8102e; }
.campaign-site-alert-navy { background: #071831; }
.campaign-site-alert-gold { background: #b88a27; color: #071831; }

.campaign-site-alert > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
    text-align: center;
}

.campaign-site-alert strong {
    font-family: var(--heading-font);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.campaign-site-alert a {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
}

.campaign-site-alert button {
    position: absolute;
    right: 18px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    background: transparent;
    color: inherit;
}

.has-site-alert .main-header { top: 48px; }

@media (max-width: 720px) {
    .campaign-site-alert {
        min-height: 64px;
        padding-left: 14px;
        font-size: .76rem;
    }
    .has-site-alert .main-header { top: 64px; }
}
.podcast-embed {
    width: 100%;
    margin: 22px 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #020817;
}

.podcast-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.issue-points li i.fa-check {
    color: #cf0a2c !important;
    flex: 0 0 auto;
}

.live-podcast-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.live-podcast-card {
    display: grid;
    grid-template-columns: minmax(190px, 34%) 1fr;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(7, 24, 55, .12);
    box-shadow: 0 18px 50px rgba(7, 24, 55, .12);
}

.live-podcast-card.featured {
    border-top: 5px solid #cf0a2c;
}

.live-podcast-art {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: #071837;
}

.live-podcast-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-podcast-play {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    transform: translate(-50%, -50%);
    color: #fff;
    background: #cf0a2c;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.live-podcast-featured {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem .7rem;
    color: #fff;
    background: #cf0a2c;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.live-podcast-copy {
    min-width: 0;
    padding: clamp(1.4rem, 3vw, 2.25rem);
}

.live-podcast-copy h3 {
    margin: .3rem 0 .65rem;
    overflow-wrap: anywhere;
    color: #071837;
    font-size: clamp(1.55rem, 2.5vw, 2.4rem);
    line-height: .98;
}

.live-podcast-meta,
.live-podcast-guest {
    color: #667085;
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.live-podcast-summary {
    margin: 1rem 0;
    color: #344054;
    line-height: 1.7;
}

.live-podcast-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.podcast-listen-button {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1.1rem;
    color: #fff;
    background: #cf0a2c;
    font-weight: 900;
    text-transform: uppercase;
}

.podcast-listen-button.secondary {
    color: #071837;
    background: #eef1f6;
}

#podcast .live-podcast-card.home-feature {
    grid-column: 1 / -1;
    width: min(100%, 1120px);
    margin-inline: auto;
}

@media (max-width: 850px) {
    .live-podcast-grid,
    .live-podcast-card {
        grid-template-columns: 1fr;
    }

    .live-podcast-art {
        min-height: 240px;
        max-height: 420px;
    }
}
.qa-carousel-controls[hidden],
.questions-empty[hidden],
.public-answer-card[hidden] {
    display: none !important;
}

/* =========================================================
   LIVE PODCAST CARDS — DETAILED EDITORIAL DESIGN
========================================================= */

.live-podcast-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(2rem, 5vw, 3.75rem) !important;
    width: min(100%, 1180px);
    margin-inline: auto;
}

.live-podcast-card.podcast-card-v2 {
    display: grid;
    grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(6, 17, 38, .14);
    border-top: 6px solid var(--red-600);
    background:
        linear-gradient(135deg, rgba(246, 248, 252, .96), #fff 55%);
    box-shadow: 0 28px 70px rgba(2, 8, 23, .16);
}

.live-podcast-grid .podcast-card-v2:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 40%);
}

.live-podcast-grid .podcast-card-v2:nth-child(even) .live-podcast-art {
    order: 2;
}

.podcast-card-v2 .live-podcast-art {
    position: relative;
    min-height: 440px;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, rgba(191, 10, 48, .45), transparent 38%),
        var(--navy-900);
}

.podcast-card-v2 .live-podcast-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .7s ease;
}

.podcast-card-v2:hover .live-podcast-art img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
}

.podcast-art-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2, 8, 23, .04) 35%, rgba(2, 8, 23, .9) 100%);
    pointer-events: none;
}

.podcast-card-v2 .live-podcast-play {
    z-index: 3;
    width: 78px;
    height: 78px;
    border: 3px solid rgba(255, 255, 255, .82);
    transition: transform .25s ease, background .25s ease;
}

.podcast-card-v2:hover .live-podcast-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--red-500);
}

.podcast-card-v2 .live-podcast-featured {
    z-index: 4;
}

.podcast-show-stamp {
    position: absolute;
    right: 1.25rem;
    bottom: 1.15rem;
    left: 1.25rem;
    z-index: 3;
    overflow-wrap: anywhere;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    line-height: 1;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.podcast-card-v2 .live-podcast-copy {
    display: flex;
    min-width: 0;
    padding: clamp(1.65rem, 4vw, 3rem);
    flex-direction: column;
}

.podcast-card-topline {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(6, 17, 38, .12);
}

.podcast-card-topline .episode-label {
    display: flex;
    gap: .5rem;
    align-items: center;
    margin: 0;
    color: var(--red-600);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.podcast-card-topline time {
    color: #667085;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.podcast-card-v2 .live-podcast-copy h3 {
    max-width: 17ch;
    margin: .35rem 0 .9rem;
    color: var(--navy-900);
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    line-height: .92;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.podcast-card-v2 .live-podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0 0 1.15rem;
}

.podcast-card-v2 .live-podcast-meta span {
    padding: .4rem .65rem;
    color: var(--navy-800);
    background: #e9edf4;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.podcast-card-v2 .live-podcast-guest {
    display: flex;
    gap: .7rem;
    align-items: center;
    margin: 0 0 1rem;
    color: var(--navy-800);
    font-size: .88rem;
    font-weight: 800;
    text-transform: none;
}

.podcast-card-v2 .live-podcast-guest > i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    color: #fff;
    background: var(--navy-800);
    border-radius: 50%;
}

.podcast-card-v2 .live-podcast-guest small,
.podcast-card-v2 .live-podcast-guest span {
    display: block;
}

.podcast-card-v2 .live-podcast-guest small {
    color: var(--red-600);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.podcast-card-v2 .live-podcast-summary {
    margin: 0;
    color: #344054;
    font-size: 1rem;
    line-height: 1.72;
}

.episode-soundwave {
    display: flex;
    height: 52px;
    gap: 4px;
    align-items: center;
    margin: 1.35rem 0;
    padding: .7rem .8rem;
    overflow: hidden;
    background:
        linear-gradient(90deg, var(--navy-900), var(--navy-800));
}

.episode-soundwave i {
    width: 4px;
    height: var(--wave-height);
    min-height: 5px;
    flex: 1 1 4px;
    background: linear-gradient(180deg, #fff, var(--red-400));
    transform-origin: center;
    animation: campaign-podcast-wave 1.15s ease-in-out var(--wave-delay) infinite alternate;
}

@keyframes campaign-podcast-wave {
    0% { transform: scaleY(.28); opacity: .58; }
    55% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(.48); opacity: .78; }
}

.episode-notes {
    margin: 0 0 1rem;
    border-block: 1px solid rgba(6, 17, 38, .12);
}

.episode-notes summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
    color: var(--navy-900);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .07em;
    cursor: pointer;
    text-transform: uppercase;
}

.episode-notes[open] summary i {
    transform: rotate(180deg);
}

.episode-notes .live-podcast-body {
    max-height: 240px;
    overflow: auto;
    padding: 0 .35rem .75rem 0;
    color: #475467;
    line-height: 1.7;
}

.podcast-card-v2 .live-podcast-actions {
    margin-top: auto;
    padding-top: .35rem;
}

.podcast-card-v2 .podcast-listen-button {
    min-height: 52px;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(191, 10, 48, .18);
}

.podcast-card-v2 .podcast-listen-button.secondary {
    box-shadow: none;
}

.podcast-card-v2 .podcast-embed {
    margin: .4rem 0 1rem;
    overflow: hidden;
    background: #000;
}

.podcast-card-v2 .podcast-embed iframe {
    display: block;
    width: 100%;
    min-height: 250px;
    border: 0;
}

#podcast .podcast-card-v2.home-feature {
    grid-template-columns: minmax(340px, 42%) minmax(0, 1fr);
    width: min(100%, 1180px);
    margin-inline: auto;
}

@media (max-width: 900px) {
    .live-podcast-card.podcast-card-v2,
    .live-podcast-grid .podcast-card-v2:nth-child(even),
    #podcast .podcast-card-v2.home-feature {
        grid-template-columns: 1fr;
    }

    .live-podcast-grid .podcast-card-v2:nth-child(even) .live-podcast-art {
        order: 0;
    }

    .podcast-card-v2 .live-podcast-art {
        min-height: 360px;
        max-height: 520px;
    }
}

@media (max-width: 560px) {
    .podcast-card-v2 .live-podcast-art {
        min-height: 300px;
    }

    .podcast-card-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .podcast-card-v2 .live-podcast-copy h3 {
        font-size: clamp(1.8rem, 11vw, 2.7rem);
    }

    .podcast-card-v2 .live-podcast-actions,
    .podcast-card-v2 .podcast-listen-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .episode-soundwave i {
        animation: none;
        opacity: .8;
    }
}

/* Separate show buckets */
.podcast-directory-buckets,
.podcast-home-buckets {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(2.5rem, 6vw, 5rem);
    width: 100%;
}

.podcast-show-bucket {
    min-width: 0;
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid rgba(6, 17, 38, .14);
    border-top: 7px solid var(--red-600);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(239, 242, 247, .94));
    box-shadow: 0 20px 55px rgba(2, 8, 23, .1);
}

.podcast-show-bucket[data-podcast-show="patriot-2-patriot"] {
    border-top-color: var(--navy-700);
}

.podcast-bucket-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
    padding: 0 0 1.2rem;
    border-bottom: 1px solid rgba(6, 17, 38, .14);
}

.podcast-bucket-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #fff;
    background: var(--red-600);
    font-size: 1.35rem;
    box-shadow: 7px 7px 0 rgba(6, 17, 38, .12);
}

[data-podcast-show="patriot-2-patriot"] .podcast-bucket-icon {
    background: var(--navy-700);
}

.podcast-bucket-header p,
.podcast-bucket-header h3,
.podcast-bucket-header span {
    margin: 0;
}

.podcast-bucket-header p {
    color: var(--red-600);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

[data-podcast-show="patriot-2-patriot"] .podcast-bucket-header p {
    color: var(--navy-700);
}

.podcast-bucket-header h3 {
    margin: .15rem 0;
    overflow-wrap: anywhere;
    color: var(--navy-900);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: .95;
    text-transform: uppercase;
}

.podcast-bucket-header > div > span {
    color: #667085;
    font-size: .88rem;
    font-weight: 700;
}

.podcast-bucket-header > strong {
    padding: .55rem .7rem;
    color: var(--navy-800);
    background: #e6eaf1;
    font-size: .7rem;
    letter-spacing: .06em;
    white-space: nowrap;
    text-transform: uppercase;
}

.home-podcast-bucket {
    padding: clamp(1rem, 3vw, 2.25rem);
}

#podcast .home-podcast-bucket .podcast-card-v2.home-feature {
    width: 100%;
}

@media (max-width: 620px) {
    .podcast-show-bucket {
        padding: .85rem;
    }

    .podcast-bucket-header {
        grid-template-columns: auto 1fr;
    }

    .podcast-bucket-header > strong {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .podcast-bucket-icon {
        width: 48px;
        height: 48px;
    }
}

/* Policy detail popup */
.issue-card[data-policy-card] {
    cursor: pointer;
}

.issue-card[data-policy-card]:focus-visible {
    outline: 4px solid #fff;
    outline-offset: -8px;
}

.policy-card-prompt {
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    margin-top: 1rem;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.policy-card-prompt i {
    color: var(--red-400);
    transition: transform .2s ease;
}

.issue-card:hover .policy-card-prompt i,
.issue-card:focus-visible .policy-card-prompt i {
    transform: translateX(5px);
}

.policy-detail-dialog {
    width: min(960px, calc(100vw - 2rem));
    max-width: none;
    max-height: min(92vh, 980px);
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #fff;
    box-shadow: 0 35px 100px rgba(2, 8, 23, .48);
}

.policy-detail-dialog::backdrop {
    background: rgba(2, 8, 23, .82);
    backdrop-filter: blur(5px);
}

.policy-detail-shell {
    position: relative;
    max-height: min(92vh, 980px);
    overflow: auto;
}

.policy-detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    background: rgba(2, 8, 23, .78);
    cursor: pointer;
}

.policy-detail-close:hover,
.policy-detail-close:focus-visible {
    color: #fff;
    background: var(--red-600);
}

.policy-detail-hero {
    position: relative;
    min-height: clamp(300px, 44vw, 450px);
    overflow: hidden;
    isolation: isolate;
    background: var(--navy-900);
}

.policy-detail-hero > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.policy-detail-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(2, 8, 23, .96), rgba(2, 8, 23, .58) 70%, rgba(2, 8, 23, .35)),
        linear-gradient(0deg, rgba(2, 8, 23, .75), transparent 65%);
}

.policy-detail-hero-copy {
    display: flex;
    min-height: inherit;
    max-width: 760px;
    padding: clamp(2rem, 6vw, 4.5rem);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.policy-detail-hero-copy > p {
    margin: 0 0 1rem;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.policy-detail-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 1rem;
    place-items: center;
    color: #fff;
    background: var(--red-600);
    font-size: 1.4rem;
}

.policy-detail-hero h2 {
    max-width: 15ch;
    margin: 0;
    overflow-wrap: anywhere;
    color: #fff;
    font-size: clamp(2.4rem, 7vw, 5.4rem);
    line-height: .87;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.policy-detail-body {
    padding: clamp(1.5rem, 5vw, 4rem);
}

.policy-detail-summary {
    margin: 0 0 2rem;
    padding-left: 1.25rem;
    border-left: 6px solid var(--red-600);
    color: var(--navy-900);
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    line-height: 1.55;
}

.policy-detail-body section + section {
    margin-top: 2.5rem;
}

.policy-detail-body h3 {
    margin: 0 0 1rem;
    color: var(--navy-900);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
}

.policy-detail-commitments {
    padding: clamp(1.25rem, 3vw, 2rem);
    color: #fff;
    background: var(--navy-900);
}

.policy-detail-commitments h3 {
    color: #fff;
}

.policy-detail-commitments ul {
    display: grid;
    gap: .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.policy-detail-commitments li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .75rem;
    align-items: start;
    line-height: 1.5;
}

.policy-detail-commitments li i {
    margin-top: .2rem;
    color: var(--red-400);
}

.policy-detail-position {
    color: #344054;
    font-size: 1.02rem;
    line-height: 1.8;
}

.policy-detail-position p {
    margin: 0 0 1.15rem;
}

.policy-detail-body,
.policy-detail-body p,
.policy-detail-body li,
.policy-detail-summary,
.policy-detail-position {
    color: #000 !important;
}

.policy-detail-body h3,
.policy-detail-commitments h3 {
    color: #000 !important;
}

.policy-detail-commitments {
    color: #000;
    background: #f1f3f6;
    border: 1px solid rgba(0, 0, 0, .14);
    border-left: 7px solid var(--red-600);
}

/* Clean, classic five-point separators in the accountability ticker */
.accountability-item {
    gap: 30px;
}

.accountability-item i.fa-star {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    border-radius: 0;
    font-size: .58em;
    line-height: 1;
    text-shadow: none;
    box-shadow: none;
    filter: drop-shadow(2px 2px 0 rgba(6, 17, 38, .42));
}

/* Live merchandise catalog */
.merch-catalog {
    margin: clamp(2rem, 5vw, 4rem) 0;
    padding: clamp(1rem, 3vw, 2rem);
    border-top: 7px solid var(--red-600);
    background: #f4f6f9;
    box-shadow: 0 24px 65px rgba(2, 8, 23, .12);
}

.merch-catalog-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 2rem;
    align-items: end;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(6, 17, 38, .14);
}

.merch-catalog-heading h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: .9;
}

.merch-catalog-heading h3 span {
    display: block;
    color: var(--red-600);
}

.merch-catalog-heading > p {
    margin: 0;
    color: #000;
    line-height: 1.7;
}

.merch-catalog-controls {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.merch-brand-buckets {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.merch-brand-buckets button {
    padding: .75rem 1rem;
    border: 2px solid var(--navy-900);
    color: var(--navy-900);
    background: #fff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .07em;
    cursor: pointer;
    text-transform: uppercase;
}

.merch-brand-buckets button:hover,
.merch-brand-buckets button.active {
    color: #fff;
    background: var(--navy-900);
}

.merch-type-filter {
    display: grid;
    min-width: 190px;
    gap: .35rem;
    color: var(--navy-900);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.merch-type-filter select {
    padding: .75rem;
    border: 2px solid var(--navy-900);
    color: #000;
    background: #fff;
    font-weight: 700;
}

.merch-rolodex-stage {
    min-height: 570px;
}

.merch-rolodex-card {
    display: grid;
    grid-template-columns: minmax(320px, 45%) minmax(0, 1fr);
    min-height: 570px;
    overflow: hidden;
    border: 1px solid rgba(6, 17, 38, .14);
    background: #fff;
    box-shadow: 0 24px 55px rgba(2, 8, 23, .16);
}

.merch-rolodex-card[hidden] {
    display: none !important;
}

.merch-product-gallery {
    min-width: 0;
    padding: 1rem;
    background: var(--navy-900);
}

.merch-main-photo {
    position: relative;
    height: calc(100% - 92px);
    min-height: 420px;
    overflow: hidden;
    background: #fff;
}

.merch-main-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merch-featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem .7rem;
    color: #fff;
    background: var(--red-600);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.merch-photo-thumbs {
    display: flex;
    height: 78px;
    gap: .55rem;
    margin-top: .75rem;
    overflow-x: auto;
}

.merch-photo-thumbs button {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    padding: 0;
    overflow: hidden;
    border: 3px solid transparent;
    background: #fff;
    cursor: pointer;
}

.merch-photo-thumbs button.active {
    border-color: var(--red-500);
}

.merch-photo-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merch-product-copy {
    display: flex;
    min-width: 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    flex-direction: column;
}

.merch-product-topline {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(6, 17, 38, .14);
}

.merch-product-topline span {
    color: var(--red-600);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.merch-product-topline em {
    color: #667085;
    font-size: .72rem;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.merch-product-copy h4 {
    max-width: 15ch;
    margin: 1rem 0 .6rem;
    overflow-wrap: anywhere;
    color: var(--navy-900);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: .88;
    text-transform: uppercase;
}

.merch-catalog-price {
    margin: 0 0 1rem;
    color: var(--red-600);
    font-size: 1.35rem;
    font-weight: 900;
}

.merch-catalog-description {
    color: #000;
    line-height: 1.75;
}

.merch-style-list {
    margin: 1rem 0;
}

.merch-style-list > strong {
    color: var(--navy-900);
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.merch-style-list > div {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .55rem;
}

.merch-style-list span {
    padding: .4rem .6rem;
    color: #000;
    background: #e8ebf1;
    font-size: .75rem;
    font-weight: 800;
}

.merch-catalog-actions {
    display: flex;
    gap: .8rem;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.merch-catalog-actions small {
    color: #667085;
}

.merch-rolodex-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
}

.merch-rolodex-controls > button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    color: #fff;
    background: var(--navy-900);
    cursor: pointer;
}

.merch-rolodex-controls > div {
    display: flex;
    gap: .3rem;
    align-items: baseline;
    color: #667085;
}

.merch-rolodex-controls strong {
    color: var(--red-600);
    font-size: 1.3rem;
}

.merch-rolodex-dots {
    display: flex;
    gap: .35rem !important;
}

.merch-rolodex-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    background: #b5bdca;
    cursor: pointer;
}

.merch-rolodex-dots button.active {
    background: var(--red-600);
}

@media (max-width: 850px) {
    .merch-catalog-heading,
    .merch-rolodex-card {
        grid-template-columns: 1fr;
    }

    .merch-catalog-controls,
    .merch-catalog-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .merch-main-photo {
        min-height: 360px;
    }

    .merch-rolodex-stage {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .merch-catalog {
        padding: .8rem;
    }

    .merch-product-gallery {
        padding: .65rem;
    }

    .merch-main-photo {
        min-height: 300px;
    }

    .merch-catalog-actions .primary-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .policy-detail-dialog {
        width: 100vw;
        max-height: 100vh;
    }

    .policy-detail-shell {
        max-height: 100vh;
    }

    .policy-detail-hero-copy {
        padding: 5rem 1.25rem 2rem;
    }

    .policy-detail-body {
        padding: 1.5rem 1.15rem 2.5rem;
    }
}

/* =========================================================
   EDITORIAL Q&A + NATURAL-SCROLL GALLERIES
========================================================= */

.questions-section {
    background: #f5f3ee;
    color: var(--navy-950);
}

.questions-section .section-kicker {
    color: var(--red-600);
}

.questions-section .questions-heading h2 {
    color: var(--navy-950);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.questions-section .questions-heading h2 span {
    color: var(--red-600);
}

.questions-section .questions-heading > p {
    color: #475467;
}

.questions-section .question-filters {
    padding-bottom: 18px;
    border-bottom: 1px solid #d8dce3;
}

.questions-section .question-filters button {
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid #cfd4dc;
    border-radius: 999px;
    background: transparent;
    color: #344054;
    letter-spacing: .035em;
}

.questions-section .question-filters button:hover,
.questions-section .question-filters button.active {
    border-color: var(--navy-900);
    background: var(--navy-900);
    color: #fff;
}

.questions-section .public-answer-card,
.questions-section .public-answer-card.featured {
    min-height: 0;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid #d8dce3;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(6, 17, 38, .055);
}

.questions-section .answer-card-topline {
    margin-bottom: 13px;
    color: var(--red-600);
    font-size: .72rem;
    letter-spacing: .075em;
}

.questions-section .public-answer-card h3 {
    max-width: 880px;
    color: var(--navy-950);
    font-family: var(--body-font);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 750;
    letter-spacing: -.02em;
    line-height: 1.35;
    text-transform: none;
}

.questions-section .voter-attribution {
    color: #667085;
}

.questions-section .public-answer {
    padding: 0;
    border: 0;
}

.questions-section .public-answer p {
    max-width: 850px;
    color: #202939;
    font-size: 1rem;
    line-height: 1.72;
}

.questions-section .public-answer-card footer {
    justify-content: flex-start;
    color: #667085;
    border-top-color: #e4e7ec;
    font-family: var(--body-font);
    font-size: .72rem;
    letter-spacing: .035em;
}

.policy-scroll-gallery {
    display: block !important;
    width: 100%;
    max-width: none;
}

.policy-gallery-track,
.merch-gallery-track {
    display: flex;
    width: 100%;
    gap: clamp(16px, 2vw, 26px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(255, 255, 255, .34) transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.policy-gallery-track {
    padding: 8px max(24px, calc((100vw - 1280px) / 2)) 22px;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
}

.policy-gallery-track .issue-card {
    position: relative;
    inset: auto;
    width: clamp(330px, 58vw, 650px);
    min-width: clamp(330px, 58vw, 650px);
    min-height: 590px;
    margin: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    filter: none;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
}

.policy-gallery-track .issue-card:first-child {
    scroll-snap-align: start;
}

.policy-gallery-track .issue-card-content {
    padding: clamp(28px, 4vw, 42px);
}

.scroll-gallery-footer {
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    color: rgba(255, 255, 255, .62);
    font-family: var(--heading-font);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.scroll-gallery-progress {
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .16);
}

.scroll-gallery-progress i {
    display: block;
    width: 8%;
    height: 100%;
    background: var(--red-500);
    transition: width 120ms linear;
}

.merch-gallery-track {
    padding: 6px 0 18px;
    scrollbar-color: rgba(6, 17, 38, .35) transparent;
}

.merch-gallery-track .merch-rolodex-card {
    width: min(92%, 980px);
    min-width: min(92%, 980px);
    min-height: 560px;
    scroll-snap-align: start;
    box-shadow: 0 15px 38px rgba(2, 8, 23, .11);
}

.merch-gallery-footer {
    color: #667085;
}

.merch-gallery-footer .scroll-gallery-progress {
    background: #d8dce3;
}

.merch-brand-buckets button {
    border: 1px solid #cfd4dc;
    border-radius: 999px;
}

@media (max-width: 850px) {
    .policy-gallery-track {
        padding-inline: 20px;
    }

    .policy-gallery-track .issue-card {
        width: min(86vw, 520px);
        min-width: min(86vw, 520px);
        min-height: 560px;
    }

    .merch-gallery-track .merch-rolodex-card {
        width: 88%;
        min-width: 88%;
    }
}

@media (max-width: 560px) {
    .questions-section .questions-heading h2 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .questions-section .question-filters {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 14px;
    }

    .questions-section .question-filters button {
        width: auto;
        flex: 0 0 auto;
    }

    .scroll-gallery-footer {
        grid-template-columns: minmax(100px, 1fr) auto;
    }

    .scroll-gallery-footer > span {
        display: none;
    }

    .policy-gallery-track .issue-card {
        width: 88vw;
        min-width: 88vw;
        min-height: 530px;
    }

    .merch-gallery-track .merch-rolodex-card {
        width: 92%;
        min-width: 92%;
    }
}
