@charset "UTF-8";
/* Victory News: Show Styles (Converted to SASS) */
/* ============================================================
   DESIGN TOKENS - TWO-TIER SYSTEM
   ============================================================ */
/* ============================================================
   TIER 1: GLOBAL COLOR PALETTE
   Brand-agnostic color definitions
   ============================================================ */
:root {
  /* Core Colors */
  --color-white: #FFFFFF;
  --color-black: #141414;
  /* Reds */
  --color-red: #D71724;
  --color-red-dark: #C54F39;
  /* Blues */
  --color-blue: #0456AC;
  --color-blue-dark: #023467;
  --color-blue-name: #052C64;
  --color-blue-text: #052C94;
  --color-blue-light: #4DA3FF;
  --color-blue-100: #E7F1FF;
  --color-blue-200: #DBE9FF;
  --color-blue-300: #E4D2FE;
  --color-blue-tainted: #88BBFE;
  --color-blue-400: #0D8EFD;
  --color-blue-900: #063172;
  /* Navy */
  --color-navy: #022045;
  --color-navy-dark: #023467;
  --color-navy-footer: #022245;
  /* Greys */
  --color-grey: #8C8A8A;
  --color-grey-muted: #9A9A9A;
  --color-grey-divider: #9F9F9F;
  --color-grey-100: #ABABAB;
  --color-grey-200: #7A7C7F;
  --color-grey-dark: #212529;
  /* Backgrounds */
  --color-bg-light: #FFFFFF;
  --color-bg-gray: #F2F2F2;
  --color-bg-section: #f8f8f8;
  --color-bg-alt: #E8E8E8;
  --color-bg-dark: #212020;
}

/* ============================================================
   TIER 1: GLOBAL TYPOGRAPHY
   Font family definitions and fallbacks
   ============================================================ */
:root {
  /* Font Fallbacks */
  --font-fallback-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-fallback-serif: Georgia, "Times New Roman", serif;
  /* Font Families */
  --font-neulis: "neulis-sans", var(--font-fallback-sans);
  --font-gotham: "gotham", "Gotham", var(--font-fallback-sans);
  --font-gotham-book: "gotham-n4", "gotham", "Gotham", var(--font-fallback-sans);
  --font-inter: "Inter", var(--font-fallback-sans);
  /* Adobe Fonts: Typekit exposes garamond-premier-pro-display (display/300); fallback to display name */
  --font-garamond: "garamond-premier-pro-display", "Garamond Premier Pro", var(--font-fallback-serif);
  --font-neuzeit: "neuzeit-grotesk", var(--font-fallback-sans);
}

/* ============================================================
   TIER 1: GLOBAL LAYOUT TOKENS
   Layout constants shared across all themes
   ============================================================ */
:root {
  --brand-bar-height: clamp(28px, 3vw + 24px, 44px);
  --site-header-height: 72px;
  --site-nav-offset: calc(var(--brand-bar-height) + 8px);
  --container-max: 1395px;
  --container-pad: clamp(1.25rem, 5vw, 5rem);
  --section-spacing: clamp(3.75rem, 5.6vw + 2.4rem, 7.5rem);
}

/* ============================================================
   TIER 2: SEMANTIC THEME TOKENS (Defaults)
   These are overridden in _themes.scss based on body class
   ============================================================ */
:root {
  /* Colors */
  --theme-primary: var(--color-red);
  --theme-primary-dark: var(--color-navy);
  --theme-bg-main: var(--color-white);
  --theme-bg-section: var(--color-bg-section);
  --theme-text-main: var(--color-black);
  --theme-text-light: var(--color-white);
  --theme-grey: var(--color-grey);
  /* Typography */
  --theme-font-header: var(--font-gotham);
  --theme-font-body: var(--font-gotham);
  --theme-font-book: var(--font-gotham-book);
  --theme-fw-header: 700;
  --theme-fw-body: 400;
  /* Section Titles */
  --theme-section-title-size: clamp(2.5rem, 5vw, 4.5rem);
  --theme-section-title-fw: 700;
  --theme-section-title-lh: 1.1;
  --theme-section-title-ls: 0.02em;
  /* Backgrounds (images/gradients) */
  --theme-hero-bg: #000;
  --theme-about-bg: #fff;
}

/* ============================================================
   UTILITY MIXINS
   ============================================================ */
/* ============================================================
   THEME SYSTEM
   All show-specific theming centralized here.
   Components reference --theme-* variables only.
   ============================================================ */
/* ============================================================
   VICTORY NEWS THEME
   ============================================================ */
body.victorynews {
  /* Colors */
  --theme-primary: var(--color-red);
  --theme-primary-dark: var(--color-navy);
  --theme-bg-main: var(--color-white);
  --theme-bg-section: var(--color-bg-section);
  --theme-text-main: var(--color-black);
  --theme-text-light: var(--color-white);
  --theme-grey: var(--color-grey);
  /* Typography */
  --theme-font-header: var(--font-gotham);
  --theme-font-body: var(--font-gotham);
  --theme-font-book: var(--font-gotham-book);
  --theme-fw-header: 700;
  --theme-fw-body: 400;
  /* Section Titles */
  --theme-section-title-size: clamp(2.5rem, 5vw, 4.5rem);
  --theme-section-title-fw: 700;
  --theme-section-title-lh: 1.1;
  --theme-section-title-ls: 0.02em;
  /* Backgrounds */
  --theme-hero-bg: #000;
  --theme-about-bg: #fff;
  /* Slim-header / embed pages: fallback under layered gradients */
  --theme-dark-bg: var(--color-black);
  /* Component-specific overrides */
  --theme-footer-top-gap: 40px;
  --theme-footer-top-pb: 0;
  --theme-footer-bottom-pt: 0;
  --theme-footer-desc-max-width: 37ch;
  --theme-copyright-max-width: 33ch;
}

/* ============================================================
   UNCLASSIFIED THEME
   ============================================================ */
body.unclassified {
  /* Colors */
  --theme-primary: var(--color-red-dark);
  --theme-primary-dark: #a83d29;
  --theme-bg-main: var(--color-white);
  --theme-text-main: var(--color-black);
  --theme-text-light: var(--color-white);
  --theme-grey: var(--color-grey);
  /* Typography */
  --theme-font-header: var(--font-neulis);
  --theme-font-body: var(--font-inter);
  --theme-fw-header: 600;
  --theme-fw-body: 400;
  /* Section Titles */
  --theme-section-title-size: clamp(32px, 5.33vw, 64px);
  --theme-section-title-fw: 500;
  --theme-section-title-lh: 0.9;
  --theme-section-title-ls: clamp(-1px, calc(-0.5px - (100vw - 768px) * 0.5 / 432), -0.5px);
  /* Backgrounds */
  --theme-hero-bg: url('../images/unclassified-hero-back.webp');
  --theme-about-bg: url('../images/unclassified-about-back.webp');
}

/* ============================================================
   AMERICA STANDS THEME
   ============================================================ */
body.americastands {
  /* Colors */
  --theme-primary: var(--color-blue);
  --theme-primary-dark: var(--color-blue-dark);
  --theme-bg-main: var(--color-white);
  --theme-text-main: var(--color-black);
  --theme-text-light: var(--color-white);
  --theme-grey: var(--color-grey);
  /* Typography */
  --theme-font-header: var(--font-garamond);
  --theme-font-body: var(--font-neuzeit);
  --theme-fw-header: 600;
  --theme-fw-body: 400;
  /* Section Titles */
  --theme-section-title-size: clamp(2rem, 4vw, 3.5rem);
  --theme-section-title-fw: 600;
  --theme-section-title-lh: 1.15;
  --theme-section-title-ls: 0.02em;
  /* Backgrounds */
  --theme-hero-bg: var(--color-navy);
  --theme-about-bg: linear-gradient(180deg, var(--color-navy) 0%, var(--color-blue-dark) 100%);
  /* Component-specific overrides */
  --theme-site-logo-max-width: clamp(174px, 16.07vw, 225px);
  --theme-about-title-size: clamp(36px, calc(36px + (100vw - 768px) * 25 / 432), 61px);
  --theme-about-title-fw: 300;
  --theme-subscribe-title-fw: 300;
  --theme-subscribe-title-size: clamp(5vw, 5.08vw, 61px);
  --theme-subscribe-bg: var(--color-blue-dark);
  --theme-subscribe-container-gap: 2.4rem;
  --theme-footer-brand-max-width: 505px;
  --theme-footer-top-gap: 1rem;
  --theme-footer-bg: var(--color-navy-footer);
  --theme-brand-bar-bg: var(--color-navy-footer);
  /* Container widths: match global --container-max so content doesn’t stretch on wide viewports */
}
body.americastands .section-container {
  max-width: calc(var(--container-max) + 30px);
  margin-inline: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
body.americastands .section-container.subscribe-container {
  max-width: 44ch;
}

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

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font-body);
  font-weight: var(--theme-fw-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
  overflow-x: hidden;
}

/* No default list markers on WP navs – add list-style only where you want markers */
nav ul,
nav ul li,
.menu,
.menu li,
.menu-item,
[role=navigation] ul,
[role=navigation] ul li,
.brand-nav-list,
.brand-nav-list li,
.site-nav ul,
.site-nav ul li,
.footer-nav ul,
.footer-nav ul li {
  list-style: none;
  list-style-type: none;
  padding-left: 0;
}

nav ul li::marker,
.menu li::marker,
.menu-item::marker,
[role=navigation] ul li::marker {
  content: "";
  display: none;
  font-size: 0;
}

/* Scroll Lock */
body.body-locked {
  overflow: hidden !important;
  height: 100vh !important;
  width: 100vw !important;
  position: fixed !important;
  touch-action: none;
  -webkit-overflow-scrolling: auto;
}

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

/* ============================================================
       TYPOGRAPHY SCALE
       ============================================================ */
/* Shared base: header-style classes */
.text-display,
.text-h1,
.text-h4,
.text-h-small {
  font-family: var(--theme-font-header);
  font-weight: var(--theme-fw-header);
  text-transform: uppercase;
}

/* Body-style classes inherit font-family/weight from <body>;
     only font-size needs declaration. */
.text-display {
  font-weight: 600;
  font-size: clamp(2.35rem, 11.25vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -5px;
}
@media (min-width: 1200px) {
  .text-display {
    font-size: 7.5rem;
  }
}

.text-h1 {
  font-size: var(--theme-section-title-size);
  font-weight: var(--theme-section-title-fw);
  line-height: var(--theme-section-title-lh);
  letter-spacing: var(--theme-section-title-ls);
}

.text-h4 {
  font-size: clamp(1rem, -0.218rem + 2.54vw, 2rem);
}

.text-h-small {
  font-size: 0.688rem;
}

.text-body-6 {
  font-size: 1rem;
}

.text-body-small {
  font-size: 0.875rem;
}

.text-body-xsmall {
  font-size: 0.813rem;
}

/* Main content area: container width + padding at 1200px and up */
@media (min-width: 1200px) {
  #primary.content-area {
    max-width: calc(var(--container-max) + 30px);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    width: 100%;
  }
}

.line-divider,
hr.line-divider {
  display: block;
  height: 1px;
  margin: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
}

.text-black {
  color: var(--theme-text-main);
}

.text-primary {
  color: var(--theme-primary);
}

.text-white {
  color: var(--theme-text-light);
}

:focus-visible {
  outline: 3px solid var(--theme-primary);
  outline-offset: 2px;
}

.text-nowrap {
  white-space: nowrap;
}

.text-btn-outline {
  display: inline-block;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--theme-text-main);
  border: 2px solid var(--theme-text-main);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.text-btn-outline:hover, .text-btn-outline:focus-visible {
  background-color: var(--theme-text-main);
  color: var(--theme-text-light);
}
.text-btn-outline {
  /* Inverted: dark fill, light text/border → light fill, dark text on hover */
}
.text-btn-outline--inverted {
  background-color: var(--theme-text-main);
  color: var(--theme-text-light);
  border-color: var(--theme-text-light);
}
.text-btn-outline--inverted:hover, .text-btn-outline--inverted:focus-visible {
  background-color: var(--theme-text-light);
  color: var(--theme-text-main);
  border-color: var(--theme-text-main);
}

body.americastands #resources .section-header .header-actions .text-btn-outline,
body.americastands .articles-section .section-header .header-actions .text-btn-outline {
  color: #fff;
  text-align: center;
  font-family: var(--font-neuzeit);
  font-size: clamp(13px, 13px + 0.0069444444 * (100vw - 768px), 16px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(20px, 20px + 0.0092592593 * (100vw - 768px), 24px);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
}
body.americastands #resources .section-header .header-actions .text-btn-outline:hover, body.americastands #resources .section-header .header-actions .text-btn-outline:focus-visible,
body.americastands .articles-section .section-header .header-actions .text-btn-outline:hover,
body.americastands .articles-section .section-header .header-actions .text-btn-outline:focus-visible {
  background-color: var(--theme-primary-dark);
  border-color: var(--theme-primary-dark);
  color: var(--theme-text-light);
}

/* ============================================================
       BRAND BAR
       ============================================================ */
.brand-bar {
  position: relative;
  z-index: 200;
  background-color: var(--theme-brand-bar-bg, var(--theme-text-main));
  width: 100%;
  height: var(--brand-bar-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .brand-bar {
    padding-left: clamp(0.75rem, 8.17vw, 81px); /* 81px at 992px, no larger */
  }
}

.brand-nav {
  display: flex;
  height: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 0;
}
.brand-nav::-webkit-scrollbar {
  display: none;
}
.brand-nav {
  /* WP menu list: no bullets, same flex as static links so .brand-link fills bar height */
}
.brand-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100%;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
}
.brand-nav li,
.brand-nav .menu-item {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.brand-nav li a,
.brand-nav .brand-link {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 100%;
}
.brand-nav {
  /* Active item = current page (WordPress adds .current-menu-item) */
}
.brand-nav .current-menu-item a,
.brand-nav .current-menu-item .brand-link {
  background-color: #f5f5f5;
  color: var(--theme-text-main);
  font-weight: 600;
}

/* Victory News: active brand item hover = theme primary accent */
body.victorynews .brand-nav-list .menu-item.current-menu-item > a:hover,
body.victorynews .brand-nav-list .menu-item.current-menu-item > .brand-link:hover,
body.victorynews .brand-nav .current-menu-item a:hover,
body.victorynews .brand-nav .current-menu-item .brand-link:hover,
body.victorynews .brand-link.active:hover {
  color: var(--theme-primary);
}

body.americastands .brand-nav .current-menu-item a,
body.americastands .brand-nav .current-menu-item .brand-link {
  color: var(--theme-text-main);
  font-weight: 400;
}

.brand-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 clamp(0.75rem, 2vw + 0.25rem, 1.75rem);
  color: var(--theme-grey);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--theme-font-body);
  font-size: clamp(0.625rem, 1.2vw + 0.5rem, 0.75rem);
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
  scroll-snap-align: start;
}
.brand-link.active {
  background-color: #F5F5F5;
  color: var(--theme-text-main);
  font-weight: 600;
}
.brand-link:hover:not(.active) {
  color: var(--theme-text-light);
}

body.americastands .brand-link {
  color: var(--color-grey-muted);
  text-align: center;
  font-family: var(--font-neuzeit);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
body.americastands .brand-link.active {
  color: var(--theme-text-main);
  font-weight: 400;
}

/* Unclassified brand link hover = unclassified red */
.brand-link[href*=unclassified]:hover {
  color: var(--color-red-dark);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1rem, 4vw, 3rem) var(--container-pad);
  position: relative;
  z-index: 100;
  width: 100%;
  flex-wrap: nowrap;
}

.site-logo {
  color: var(--theme-text-main);
  font-family: var(--theme-font-header);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo-img {
  display: block;
  max-width: var(--theme-site-logo-max-width, 225px);
  max-height: var(--theme-site-logo-max-height, 65px);
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Group hamburger + mobile CTA (e.g. Support button), vertically inline; hidden on desktop when nav is inline */
.site-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-header-right {
    display: none;
  }
}

/* Site nav: mobile first – slide-in panel from right */
.site-nav {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: min(320px, 85vw);
  height: 100vh;
  flex-direction: column;
  align-items: stretch;
  padding: calc(var(--site-header-height) + 1.5rem) 0 0.5rem 0;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99;
}
.site-nav.site-nav--open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .site-nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: clamp(5px, 5px + 0.0810185185 * (100vw - 768px), 40px);
    background: none;
    box-shadow: none;
    transform: none;
  }
}

.nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 3rem;
  left: 1rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--theme-text-main);
  transition: color 0.2s ease;
}
.nav-close:hover, .nav-close:focus-visible {
  color: var(--theme-primary);
}
@media (min-width: 768px) {
  .nav-close {
    display: none;
  }
}

/* Reset WP menu list so it matches static nav (no bullets, inline) */
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: clamp(5px, 5px + 0.0810185185 * (100vw - 768px), 40px);
  }
}

.site-nav li {
  margin: 0;
  padding: 0;
}

.site-nav-link,
.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem var(--container-pad);
  color: var(--theme-text-main);
  font-family: var(--theme-font-header);
  font-size: 0.9375rem;
  font-weight: var(--theme-fw-header);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.site-nav-link:hover,
.site-nav a:hover {
  color: var(--theme-primary);
}
@media (min-width: 768px) {
  .site-nav-link,
  .site-nav a {
    padding: 0.5rem 0.75rem;
    border-bottom: none;
  }
}
@media (min-width: 1200px) {
  .site-nav-link,
  .site-nav a {
    padding: 0.5rem 0.5rem;
    font-size: 0.875rem;
  }
}

body.americastands .site-nav-link,
body.americastands .site-nav a {
  color: #fff;
  font-family: var(--font-neuzeit);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hide mobile Support CTA on America Stands (only used on Victory News) */
body.americastands .nav-support-btn,
body.americastands #header-support-btn {
  display: none !important;
}

/* Unclassified: hide duplicate Support CTA (SUPPORT is already in .site-nav) */
body.unclassified .nav-support-btn,
body.unclassified #header-support-btn {
  display: none !important;
}

/* Unclassified: hide .site-header-right on desktop so header is just logo + nav (no extra Support CTA in the way) */
@media (min-width: 768px) {
  body.unclassified .site-header-right {
    display: none !important;
  }
}

/* Unclassified: keep nav on top of hero and other content */
body.unclassified .site-header {
  z-index: 9999;
}

body.unclassified .site-nav {
  z-index: 9998;
}

/* Unclassified: desktop nav link typography (Figma) */
@media (min-width: 768px) {
  body.unclassified .site-nav-link:not(.site-nav-cta),
  body.unclassified .site-nav a:not(.site-nav-cta) {
    color: var(--color-black);
    font-family: var(--font-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

.site-nav-cta {
  width: fit-content;
  align-self: flex-start;
  margin: 0.75rem var(--container-pad);
  background-color: var(--theme-primary);
  color: var(--theme-text-light);
  padding: 0.5rem 1.1rem;
  transition: background-color 0.2s ease;
  text-align: center;
  justify-content: center;
}
.site-nav-cta:hover {
  background-color: var(--theme-primary-dark);
}
@media (min-width: 768px) {
  .site-nav-cta {
    margin: 0;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle {
  /* Hamburger → X when open */
}
.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--theme-text-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
       HERO BLOCK BASE
============================================================ */
.hero-block {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  background-image: var(--theme-hero-bg);
  background-size: cover;
  background-position: 35% center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}
@media (min-width: 900px) {
  .hero-block {
    background-position: 50% center;
  }
}
.hero-block {
  /* ACF desktop + mobile background: mobile first, desktop at 768px+ */
}
.hero-block.hero-has-bg, .hero-block.hero-vnews-main {
  background-image: var(--hero-bg-mobile, var(--theme-hero-bg));
}
@media (min-width: 768px) {
  .hero-block.hero-has-bg, .hero-block.hero-vnews-main {
    background-image: var(--hero-bg-desktop, var(--hero-bg-mobile, var(--theme-hero-bg)));
  }
}

/* Gallery slides: same responsive BG vars when set */
.hero-block .swiper-slide.hero-slide-has-bg {
  background-image: var(--hero-bg-mobile);
}
@media (min-width: 768px) {
  .hero-block .swiper-slide.hero-slide-has-bg {
    background-image: var(--hero-bg-desktop, var(--hero-bg-mobile));
  }
}

.hero-block .text-display {
  letter-spacing: -0.04em;
  /* Scale so "TRUTH BEYOND" + video card fit side-by-side at 992px
       65px at 992px → 120px at ~1400px */
  font-size: 11.5vw;
}
@media (min-width: 768px) {
  .hero-block .text-display {
    font-size: clamp(3.1rem, 13.48vw - 4.3rem, 7.5rem);
  }
}
.hero-block .text-h1 {
  letter-spacing: -0.02em;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-swiper .swiper-slide {
    background-position: 65% center;
  }
}

.hero-slider-controls {
  position: absolute;
  bottom: 2rem;
  right: var(--container-pad);
  z-index: 10;
  display: flex;
  gap: 2rem;
}

.hero-slider-arrow {
  background: none;
  border: none;
  color: var(--theme-text-main);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.hero-slider-arrow:hover {
  color: var(--theme-primary);
}
.hero-slider-arrow--prev svg {
  transform: rotate(180deg);
}

.hero-pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

/* ============================================================
       HERO CONTAINER & CONTENT (Mobile First)
       ============================================================ */
.hero-container {
  width: 100%;
  max-width: calc(var(--container-max) + 30px);
  margin-inline: auto;
  padding: 0 15px 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.hero-content {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .hero-content {
    flex: 0 0 auto;
    width: auto;
  }
}

.hero-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 20ch;
  min-width: 0;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto 0 0;
  padding: 0;
}
@media (min-width: 992px) {
  .hero-title {
    flex-direction: column;
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .hero-title {
    width: 60%;
  }
}

.hero-row {
  display: block;
  width: 100%;
}
.hero-row--1, .hero-row--2 {
  width: auto;
  flex-shrink: 0;
}
.hero-row--1 .text-display, .hero-row--2 .text-display {
  white-space: nowrap;
  line-height: 0.9;
}
@media (min-width: 992px) {
  .hero-row--1 {
    margin-bottom: -0.15em;
  }
}
@media (min-width: 992px) {
  .hero-row--2 {
    margin-bottom: -0.1em;
  }
}
.hero-row--3 {
  flex-basis: 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
.hero-row--3 .text-display {
  order: 1;
  width: 100%;
  text-align: right;
  margin-left: 0;
}
@media (min-width: 1200px) {
  .hero-row--3 {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .hero-row--3 .text-display {
    flex: 0 0 auto;
    text-align: right;
    width: auto;
    order: 1;
  }
}

.hero-subtext {
  order: 2;
  margin: 0;
  font-family: var(--theme-font-body);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--theme-text-main);
  max-width: 38ch;
  text-align: left;
  white-space: normal;
  overflow-wrap: break-word;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-subtext {
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .hero-subtext {
    flex: 0 1 auto;
    width: auto;
    min-width: auto;
    max-width: 26ch;
    order: 2;
    margin-top: 0;
  }
}

/* ============================================================
       HERO VIDEO CARD (Mobile First)
       ============================================================ */
.hero-video-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: visible;
  align-self: flex-start;
}
@media (min-width: 992px) {
  .hero-video-card {
    max-width: clamp(280px, 15vw + 131px, 340px);
    display: flex;
    align-items: flex-end;
    align-self: center;
  }
  .hero-video-card .video-card-link {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .hero-video-card {
    align-self: flex-end;
  }
}
.hero-video-card:hover .video-card-play {
  transform: scale(1.08);
}

.video-card-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  /* Gradient only when no poster <img> (poster comes from ACF / template) */
  background-image: linear-gradient(135deg, #2a2a2a 0%, #4a4a4a 100%);
  background-size: cover;
  background-position: center;
}
.video-card-thumbnail img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 35%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.video-card-live-badge {
  position: absolute;
  top: 23px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--theme-primary);
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.live-label {
  font-family: var(--theme-font-header);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--theme-text-light);
}

.video-card-meta {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.video-card-label {
  font-family: var(--theme-font-body);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--theme-text-light);
  opacity: 0.85;
}

.video-card-title {
  font-family: var(--theme-font-header);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--theme-text-light);
  white-space: nowrap;
}

.video-card-play {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 2;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .video-card-play {
    width: clamp(40px, 40px + (100vw - 992px) * 20 / 408, 60px);
    height: clamp(40px, 40px + (100vw - 992px) * 20 / 408, 60px);
  }
}
.video-card-play:focus-visible {
  transform: scale(1.08);
  outline: 2px solid var(--theme-primary);
  outline-offset: 3px;
}
.video-card-play svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* ============================================================
       HERO GALLERY VARIANT (Swiper-based hero)
       Used by America Stands and potentially other shows
       ============================================================ */
/* When header is a sibling before .hero-gallery (theme DOM), overlay it on the slider */
body.americastands main {
  position: relative;
}

body.americastands main > .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: clamp(1rem, 4vw, 2rem) var(--container-pad);
  padding-block-end: 0;
  pointer-events: none;
}
body.americastands main > .site-header > * {
  pointer-events: auto;
}
@media (min-width: 1200px) {
  body.americastands main > .site-header {
    padding-block-end: 0;
  }
}

body.americastands main > .site-header .site-logo,
body.americastands main > .site-header .site-nav-link,
body.americastands main > .site-header .site-nav a,
body.americastands main > .site-header .nav-close,
body.americastands main > .site-header .nav-toggle .nav-toggle-bar {
  color: var(--theme-text-light);
}

body.americastands main > .site-header .site-nav-link:hover,
body.americastands main > .site-header .site-nav a:hover {
  color: var(--theme-primary);
}

body.americastands main > .site-header .nav-toggle .nav-toggle-bar {
  background-color: var(--theme-text-light);
}

/* Unclassified: header overhangs hero (same pattern as America Stands – header is sibling before .hero-block in WP) */
body.unclassified main {
  position: relative;
}

/* Full-bleed hero: WP wraps main in #primary with padding; break out so hero matches static HTML */
body.unclassified #primary.content-area {
  padding-inline: 0;
  max-width: none;
}

body.unclassified main > .site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: calc(var(--container-max) + 30px);
  box-sizing: border-box;
  z-index: 100;
  padding: clamp(1rem, 4vw, 2rem) var(--container-pad);
  padding-block-end: 0;
  pointer-events: none;
}
body.unclassified main > .site-header > * {
  pointer-events: auto;
}
@media (min-width: 1200px) {
  body.unclassified main > .site-header {
    padding-block-end: 0;
  }
}

body.unclassified main > .site-header .site-logo,
body.unclassified main > .site-header .site-nav-link:not(.site-nav-cta),
body.unclassified main > .site-header .site-nav a:not(.site-nav-cta),
body.unclassified main > .site-header .nav-close,
body.unclassified main > .site-header .nav-toggle .nav-toggle-bar {
  color: var(--theme-text-main, #141414);
}

body.unclassified main > .site-header .site-nav-link:hover,
body.unclassified main > .site-header .site-nav a:hover {
  color: var(--theme-primary);
}

/* Support CTA: always white text on red in unclassified header */
body.unclassified main > .site-header .site-nav-cta {
  color: var(--theme-text-light) !important;
  background-color: var(--theme-primary);
}
body.unclassified main > .site-header .site-nav-cta:hover {
  color: var(--theme-text-light) !important;
  background-color: var(--theme-primary-dark);
}

body.unclassified main > .site-header .nav-toggle .nav-toggle-bar {
  background-color: var(--theme-text-main, #141414);
}

/* Push hero content down so it’s not under the overhanging nav */
body.unclassified main > .hero-block {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 800px;
  height: 80vh;
  box-sizing: border-box;
  padding-top: clamp(80px, 12vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

body.unclassified main > .hero-block .hero-container {
  flex: 0 0 auto;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

body.unclassified main > .hero-block .hero-content {
  flex: 1 1 auto;
  min-width: 0;
  align-self: flex-end;
}

body.unclassified main > .hero-block .hero-title {
  text-align: left;
  width: min-content;
  max-width: none;
}

body.unclassified main > .hero-block .hero-subtext {
  text-align: left;
}

.hero-gallery {
  position: relative;
  height: 90vh;
  min-height: 800px;
  padding-top: 0;
  display: block;
  /* When header is inside hero (static HTML) */
}
.hero-gallery .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: calc(var(--container-max) + 30px);
  margin-inline: auto;
  z-index: 100;
  padding: clamp(1rem, 4vw, 2rem) var(--container-pad);
  padding-block-end: 0;
}
@media (min-width: 1200px) {
  .hero-gallery .site-header {
    padding-block-start: 77px;
    padding-block-end: 0;
  }
}
.hero-gallery .site-logo,
.hero-gallery .site-nav-link,
.hero-gallery .site-nav a,
.hero-gallery .nav-close,
.hero-gallery .nav-toggle .nav-toggle-bar {
  color: var(--theme-text-light);
}
.hero-gallery .site-nav-link:hover,
.hero-gallery .site-nav a:hover {
  color: var(--theme-primary);
}
.hero-gallery .nav-toggle .nav-toggle-bar {
  background-color: var(--theme-text-light);
}
.hero-gallery .hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-gallery .hero-swiper .swiper-slide {
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: clamp(60px, 12vw, 120px);
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.hero-gallery .hero-container {
  width: 100%;
  max-width: calc(var(--container-max) + 30px);
  margin: 0 auto;
  padding: 0 0 10vh;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .hero-gallery .hero-content.hero-box {
    max-width: none;
    padding: 0;
  }
}
.hero-gallery .hero-title {
  margin-bottom: 1rem;
}
.hero-gallery .hero-title .text-display,
.hero-gallery .hero-title .text-white {
  color: var(--theme-text-light);
  font-family: var(--theme-font-header);
  font-weight: 600;
  text-transform: uppercase;
}
body.americastands .hero-gallery .hero-title .text-display, body.americastands .hero-gallery .hero-title .text-white {
  color: #fff;
  font-family: var(--font-neuzeit);
  font-size: clamp(48px, 48px + 0.1574074074 * (100vw - 768px), 116px);
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}
body.americastands .hero-gallery .hero-title .text-white {
  max-width: 22ch;
}
.hero-gallery .hero-subtext {
  color: #fff;
  font-family: var(--font-neuzeit);
  font-size: clamp(15px, 15px + 0.0185185185 * (100vw - 768px), 23px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 1.5rem;
  max-width: 13ch;
}
@media (min-width: 1200px) {
  .hero-gallery .hero-subtext {
    max-width: 52ch;
  }
}
.hero-gallery .btn-hero {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: var(--theme-primary);
  color: var(--theme-text-light) !important;
  font-family: var(--theme-font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: opacity 0.2s;
}
.hero-gallery .btn-hero:hover {
  opacity: 0.9;
}
.hero-gallery {
  /* Pagination & progress: work when inside .hero-swiper or direct children of .hero-gallery */
}
.hero-gallery .hero-pagination {
  position: absolute;
  bottom: 95px;
  left: 50%;
  right: 50%;
  width: 100%;
  justify-content: center;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 27px; /* 46px center-to-center − 19px circle */
  flex-wrap: nowrap;
  transform: translateX(-50%);
}
.hero-gallery .hero-pagination .swiper-pagination-bullet {
  width: 19px;
  height: 19px;
  margin: 0;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #fff;
  opacity: 1;
  flex-shrink: 0;
  transition: width 0.2s ease, border-radius 0.2s ease, border-width 0.2s ease;
}
.hero-gallery .hero-pagination .swiper-pagination-bullet-active {
  width: 45px;
  height: 16px;
  border-radius: 8px;
  border-width: 2px;
}
.hero-gallery .hero-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 13px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 30;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-gallery .hero-progress-wrap {
    height: 18px;
  }
}
.hero-gallery .hero-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--theme-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

/* ============================================================
       NEWS BAR (HORIZONTAL SLIDER)
       ============================================================ */
.news-bar {
  background-color: var(--color-bg-dark);
  position: relative;
  align-self: flex-end;
  width: 100%;
  max-width: calc(var(--container-max) + 30px);
  margin-inline: auto;
  height: 129px;
  min-height: 129px;
  padding: 0.5rem var(--container-pad);
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.news-bar::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background-color: #1a1a1a;
}
@media (min-width: 768px) {
  .news-bar {
    height: auto;
    min-height: clamp(129px, 12vw + 100px, 200px);
    padding: clamp(24px, 24px + 0.0486111111 * (100vw - 768px), 45px) var(--container-pad);
  }
}

.news-bar-swiper {
  width: 100%;
  overflow: hidden;
  scroll-snap-type: x mandatory;
}
@media (max-width: 767px) {
  .news-bar-swiper {
    height: 100%;
    flex: 1;
    min-height: 0;
  }
}
.news-bar-swiper .swiper-wrapper {
  align-items: stretch;
}
.news-bar-swiper .swiper-slide {
  display: flex;
  height: auto;
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .news-bar-swiper .swiper-slide {
    height: 100%;
  }
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--theme-text-light);
  text-decoration: none;
  position: relative;
  flex: 1;
  min-height: 0;
  gap: 16px;
  /* Vertical divider: 1px, full height, in gutter so it doesn’t overlap text (hidden on mobile) */
}
.news-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}
.news-item:hover .news-play-btn {
  color: var(--theme-primary);
  transform: scale(1.1);
}
.news-item:hover .news-title {
  color: var(--color-blue-light);
}

/* Hide divider on last slide in DOM and on last visible slide */
.news-bar-swiper .swiper-slide:last-child .news-item::after,
.news-bar-swiper .swiper-slide-visible:not(:has(~ .swiper-slide-visible)) .news-item::after {
  display: none;
}

.news-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.news-badge {
  display: inline-flex;
  padding: 4px 12px;
  background-color: #555555;
  color: var(--theme-text-light);
  font-family: var(--theme-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  width: fit-content;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.news-title {
  margin: 0;
  color: var(--theme-text-light);
  font-family: var(--theme-font-header);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.2s ease;
  overflow: hidden;
  max-width: 25ch;
}

.news-date {
  font-family: var(--theme-font-body);
  font-size: 0.9375rem;
  color: #a0a0a0;
  font-weight: 400;
}

.news-play-btn {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 49px;
  color: var(--theme-text-light);
  transition: color 0.2s ease, transform 0.2s ease;
}
.news-play-btn svg {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .news-play-btn svg {
    width: 40px;
    height: 40px;
  }
}

/* Mobile: two-column grid look, compact to fit 129px bar */
@media (max-width: 767px) {
  .news-item {
    min-width: 0;
    max-width: none;
    width: 100%;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }
  .news-item-content {
    gap: 0.25rem;
    min-width: 0;
    flex: 1;
  }
  .news-title {
    color: #fff;
    font-family: var(--theme-font-body);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    max-width: none;
  }
  .news-date {
    font-size: 0.6875rem;
  }
  .news-badge {
    font-size: 0.625rem;
    padding: 2px 8px;
  }
  .news-play-btn {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-inline-end: 0;
  }
  .news-play-btn svg {
    width: 32px;
    height: 32px;
  }
}
/* Victory News specific overrides */
body.victorynews .news-bar::before {
  background-color: var(--color-bg-dark);
}

/* ============================================================
       SECTION CONTAINERS & HEADERS
       ============================================================ */
.section-container {
  max-width: calc(var(--container-max) + 30px);
  margin-inline: auto;
  padding: var(--section-spacing) 15px;
}

body.victorynews #special-week .section-container {
  padding-top: 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: clamp(56px, 56px + 0.0555555556 * (100vw - 768px), 80px);
}

body.unclassified .nightly-broadcast .section-header {
  flex-direction: row;
  margin-bottom: 24px;
}

body.americastands .section-header {
  margin-bottom: 56px;
}

.section-title-group {
  max-width: min(90vw, 380px);
}
@media (min-width: 600px) {
  .section-title-group {
    max-width: 600px;
  }
}
.section-title-group h2 {
  margin: 0;
}

/* Section title: fluid 32px → 64px, letter-spacing -0.5px → -1px */
.section-title-group h2,
.section-title {
  color: var(--color-black);
  font-family: var(--font-inter);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: -0.015625em; /* -0.5px at 32px, -1px at 64px */
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .section-title-group h2,
  .section-title {
    font-size: clamp(32px, 32px + (100vw - 320px) * 32 / 448, 64px);
  }
}

/* America Stands: section titles – mobile until 768px, then fluid to 61px */
body.americastands .section-title {
  color: var(--color-black);
  font-family: var(--font-garamond);
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body.americastands .section-title {
    font-size: clamp(36px, 36px + (100vw - 768px) * 25 / 432, 61px);
  }
}

.section-description {
  margin: 0 0 64px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
  width: 100%;
  max-width: 100%;
}
@media (min-width: 600px) {
  .section-description {
    max-width: 45ch;
  }
}
@media (min-width: 992px) {
  .section-description {
    max-width: 60ch;
  }
}

body.unclassified .nightly-broadcast .section-description {
  margin-bottom: 40px;
}

.slider-controls {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .slider-controls {
    gap: 40px;
    padding-top: 0.5rem;
  }
}

.slider-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--theme-text-main);
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow .slider-arrow-icon--mobile {
  display: block;
  width: 24px;
  height: 24px;
}
.slider-arrow .slider-arrow-icon--desktop {
  display: none;
  width: 42px;
  height: 23px;
}
@media (min-width: 768px) {
  .slider-arrow .slider-arrow-icon--mobile {
    display: none;
  }
  .slider-arrow .slider-arrow-icon--desktop {
    display: block;
  }
}
.slider-arrow {
  /* Fallback when only one svg (no mobile/desktop classes) */
}
.slider-arrow svg:not(.slider-arrow-icon) {
  width: 20px;
  height: 20px;
}
@media (min-width: 600px) {
  .slider-arrow svg:not(.slider-arrow-icon) {
    width: 42px;
    height: 23px;
  }
}
.slider-arrow--prev .slider-arrow-icon, .slider-arrow--prev svg {
  transform: rotate(180deg);
}
.slider-arrow:hover:not(:disabled), .slider-arrow:focus-visible:not(:disabled) {
  color: var(--theme-primary);
}
.slider-arrow--prev:hover:not(:disabled), .slider-arrow--prev:focus-visible:not(:disabled) {
  transform: translateX(-4px);
}
.slider-arrow--next:hover:not(:disabled), .slider-arrow--next:focus-visible:not(:disabled) {
  transform: translateX(4px);
}
.slider-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* ============================================================
       EPISODES SECTION
============================================================ */
#episodes,
body.americastands .episodes-section {
  overflow-x: visible;
}

body.americastands #episodes-2 .section-container {
  margin-bottom: 0;
  padding-bottom: 0;
}

#episodes .section-container {
  padding-bottom: 0;
}
#episodes .section-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 600px) {
  #episodes .section-description {
    max-width: 613px;
    width: 100%;
  }
}

.episodes-swiper {
  width: 100%;
  margin-left: 0;
  overflow: hidden;
}
.episodes-swiper--bleed-right {
  width: calc(100% + 50vw - 50%);
  margin-right: calc(-50vw + 50%);
}
.episodes-swiper .swiper-slide {
  height: auto;
  min-width: 0;
  overflow: hidden;
}

.episode-card {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-width: 0;
}
.episode-card:hover .episode-play-btn {
  transform: scale(1.1);
}

.episode-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #eee;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-bottom: clamp(12px, 2.5vw, 18px) solid var(--theme-primary);
}
.episode-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (min-width: 768px) {
  .episode-thumbnail {
    margin-bottom: clamp(0.75rem, 2vw, 1.19rem);
  }
}

.episode-play-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  z-index: 2;
  transition: transform 0.2s ease;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.episode-play-btn svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
@media (min-width: 768px) {
  .episode-play-btn {
    bottom: clamp(20px, 3.5vw, 36px);
    right: clamp(20px, 3.5vw, 36px);
    width: 80px;
    height: 80px;
  }
}

.episode-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .episode-meta {
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  }
}

.episode-category {
  font-family: var(--theme-font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.688rem, 0.5vw + 0.5rem, 1.125rem);
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--theme-grey);
}
@media (min-width: 1200px) {
  .episode-category {
    font-size: 18px;
  }
}

.episode-date {
  color: var(--theme-grey);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(0.813rem, 0.5vw + 0.6rem, 1.125rem);
  line-height: 1.5;
  letter-spacing: 1px;
}

.episode-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(0.875rem, 2.5vw + 0.75rem, 1.125rem);
  line-height: 1.35;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .episode-title {
    font-size: clamp(1rem, 1.5vw + 0.8rem, 1.813rem);
    line-height: 1.5;
  }
}

body.americastands .episode-title {
  text-transform: none;
}
@media (min-width: 768px) {
  body.americastands .episode-title {
    color: #141414;
    font-family: var(--font-neuzeit);
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
  }
}

/* ============================================================
   UNCLASSIFIED: dark episodes section (title + arrows row, description below, light text)
   ============================================================ */
body.unclassified #episodes .slider-arrow:hover:not(:disabled), body.unclassified #episodes .slider-arrow:focus-visible:not(:disabled),
body.unclassified .episodes-section .slider-arrow:hover:not(:disabled),
body.unclassified .episodes-section .slider-arrow:focus-visible:not(:disabled),
body.unclassified .nightly-broadcast .slider-arrow:hover:not(:disabled),
body.unclassified .nightly-broadcast .slider-arrow:focus-visible:not(:disabled) {
  color: var(--theme-primary);
}
body.unclassified #episodes .slider-arrow:disabled,
body.unclassified .episodes-section .slider-arrow:disabled,
body.unclassified .nightly-broadcast .slider-arrow:disabled {
  opacity: 0.35;
}
body.unclassified #episodes .episode-category,
body.unclassified .episodes-section .episode-category,
body.unclassified .nightly-broadcast .episode-category {
  color: var(--theme-primary);
}
body.unclassified #episodes .episode-date,
body.unclassified .episodes-section .episode-date,
body.unclassified .nightly-broadcast .episode-date {
  color: rgba(255, 255, 255, 0.7);
}
/* ============================================================
       RECENT GUESTS SECTION
       ============================================================ */
.guests-section .section-header {
  margin-bottom: 80px;
}

.guests-swiper .swiper-slide {
  height: auto;
}

.guests-swiper .guest-card {
  width: 100%;
  height: 100%;
}

.guest-card {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .guest-card {
    width: auto;
  }
}
.guest-card:hover .guest-image img {
  filter: grayscale(0) contrast(1);
}

.guest-image {
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.guest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.guest-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-primary);
  margin: 0 0 8px 0;
}

.guest-description {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 47ch;
}

/* ============================================================
       ABOUT SECTION
       ============================================================ */
.about-section {
  background-color: #E8E8E8;
  background-image: var(--about-bg-mobile, var(--theme-about-bg));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .about-section {
    background-image: var(--about-bg-desktop, var(--about-bg-mobile, var(--theme-about-bg)));
    background-position: right center;
  }
}
.about-section {
  /* About Section Variation (for shows with gradient overlays) */
}
.about-section--program {
  position: relative;
  background-position: center right;
}
.about-section--program::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 20, 45, 0.95) 0%, rgba(2, 20, 45, 0.8) 35%, transparent 100%);
  pointer-events: none;
}
.about-section--program .about-container {
  position: relative;
  z-index: 2;
  min-height: 60vh;
}

body.americastands .about-section--program {
  /* Block-level --about-bg-mobile/--about-bg-desktop override when set; else theme fallbacks */
  background-color: #02142d;
  background-image: var(--about-bg-mobile, url("../images/amstands-program-mobile.webp"));
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}
body.americastands .about-section--program::before {
  display: none;
}
@media (min-width: 768px) {
  body.americastands .about-section--program::before {
    display: block;
  }
}
@media (min-width: 768px) {
  body.americastands .about-section--program {
    background-image: var(--about-bg-desktop, var(--about-bg-mobile, url("../images/americastands-about-back.webp")));
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
body.americastands .about-section--program {
  /* Match americastands.html: white heading + bio */
}
body.americastands .about-section--program #about-heading,
body.americastands .about-section--program .about-title,
body.americastands .about-section--program .about-content-column .about-title {
  color: var(--color-white) !important;
}
body.americastands .about-section--program .about-bio,
body.americastands .about-section--program .about-bio > p {
  color: var(--color-white) !important;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  body.unclassified .about-container {
    grid-template-columns: 1fr 1fr;
  }
}

body.americastands .about-container {
  align-items: flex-start;
}
@media (min-width: 900px) {
  body.americastands .about-container {
    gap: 32px;
    align-items: center;
  }
}

/* About heading: same font scale as hero, TRUTH + THE FILTER left (T's align), WITHOUT right (T lines up with R of THE FILTER) */
.about-heading {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .about-heading {
    width: auto;
  }
}
.about-heading .text-display {
  letter-spacing: -0.04em;
}
@media (min-width: 768px) {
  .about-heading .text-display {
    width: auto;
    letter-spacing: -5px;
  }
}

.about-heading-row {
  display: block;
}
.about-heading-row--1 .text-display, .about-heading-row--3 .text-display {
  display: block;
  text-align: left;
}
.about-heading-row--3 .text-display {
  white-space: nowrap;
  /* sets block width */
}
.about-heading-row--2 .text-display {
  display: block;
  text-align: right;
  /* T of WITHOUT lines up with R of THE FILTER */
  white-space: nowrap;
}
.about-heading-row--1 {
  margin-bottom: -0.15em;
}
.about-heading-row--2 {
  margin-bottom: -0.1em;
}

/* America Stands: about heading – Figma spec (36px base, scale to 61px from 768px) */
body.americastands .about-heading,
body.americastands .about-section--program .about-title {
  color: #fff;
  font-family: var(--font-garamond);
  font-size: 36px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body.americastands .about-heading,
  body.americastands .about-section--program .about-title {
    font-size: clamp(36px, 36px + (100vw - 768px) * 25 / 432, 61px);
  }
}
body.americastands .about-heading .text-display,
body.americastands .about-section--program .about-title .text-display {
  letter-spacing: inherit;
}

.about-name {
  margin: 0 0 2rem 0;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about-name {
    font-size: 1rem;
  }
}

body.unclassified .about-name {
  color: var(--color-black);
  font-family: var(--font-inter);
  font-size: clamp(23px, 23px + (100vw - 320px) / 448 * 22, 45px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.6;
}
.about-bio > p {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-inter);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

body.americastands .about-bio > p {
  color: var(--color-white);
  font-family: var(--font-neuzeit);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (min-width: 768px) {
  body.americastands .about-bio > p {
    font-size: 18px;
    max-width: 67ch;
  }
}

.about-title {
  font-family: var(--theme-font-header);
  font-size: var(--theme-about-title-size, clamp(2.5rem, 5vw, 4rem));
  font-weight: var(--theme-about-title-fw, var(--theme-fw-header));
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2rem;
  text-align: left;
  text-transform: uppercase;
}

body.americastands .about-title {
  margin: 0 0 24px;
}

/* ============================================================
       ARTICLES SECTION
       ============================================================ */
.articles-section .section-header {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 60px;
}
.articles-section .section-header .section-title-group {
  order: 1;
}
.articles-section .section-header .section-description-container {
  order: 2;
  width: 100%;
  max-width: 613px;
}
.articles-section .section-header .section-description {
  margin: 0 0 1rem 0;
}
.articles-section .section-header .header-actions {
  order: 3;
}
@media (min-width: 600px) {
  .articles-section .section-header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 120px;
  }
  .articles-section .section-header .section-title-group,
  .articles-section .section-header .section-description-container {
    flex: 0 0 50%;
  }
  .articles-section .section-header .section-description-container .section-description {
    margin-bottom: 0;
  }
  .articles-section .section-header .header-actions {
    order: 2;
  }
}

/* America Stands: up to 768px = column (title, description, actions); 768px+ = title+desc left, CTA right */
body.americastands .articles-section .section-header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem 0;
  margin-bottom: 60px;
}
body.americastands .articles-section .section-header .section-title-group {
  grid-column: 1;
  grid-row: 1;
}
body.americastands .articles-section .section-header .section-description-container {
  grid-column: 1;
  grid-row: 2;
  max-width: 580px;
  margin-top: 0;
}
body.americastands .articles-section .section-header .section-description {
  margin: 0;
}
body.americastands .articles-section .section-header .header-actions {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  body.americastands .articles-section .section-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 2rem;
    margin-bottom: 120px;
  }
  body.americastands .articles-section .section-header .section-description-container {
    margin-top: 0.5rem;
  }
  body.americastands .articles-section .section-header .header-actions {
    grid-column: 2;
    grid-row: 1/-1;
  }
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.articles-list hr {
  margin: 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

.article-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .article-item {
    grid-template-columns: 200px 1fr 240px;
    gap: 4.6rem;
    align-items: start;
  }
}

/* Mobile: image, meta, title, excerpt, CTA */
.article-thumbnail {
  order: 1;
  aspect-ratio: 16/9;
  background-color: #eee;
  overflow: hidden;
  border-bottom: 11px solid var(--theme-primary);
}
.article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .article-thumbnail {
    order: unset;
  }
}

body.americastands .article-thumbnail {
  order: 4;
}

.article-meta {
  order: 2;
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .article-meta {
    order: unset;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.article-author {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .article-author {
    font-size: 18px;
  }
}

/* America Stands Theme Overrides */
body.americastands .article-author {
  font-size: 16px;
}

.article-date {
  color: var(--theme-grey);
  font-family: var(--theme-font-body);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.article-content {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .article-content {
    order: unset;
  }
}

.article-title {
  margin: 0;
  max-width: 40ch;
  color: var(--color-black);
  font-family: var(--theme-font-header);
  font-size: 23px;
  font-size: clamp(23px, 23px + (100vw - 768px) / 72, 29px); /* 23px@768 → 29px@1200 */
  font-weight: 700;
  line-height: 1.5;
}

/* America Stands Theme Overrides */
body.americastands .article-title {
  font-family: var(--theme-font-body);
  line-height: 1.3;
}

.article-excerpt {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  max-width: 60ch;
  color: var(--color-black);
}

.article-read-more {
  color: var(--color-black);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  text-transform: capitalize;
  padding-block-start: 0.5rem;
  border-bottom: 2px solid transparent;
  width: fit-content;
  transition: border-color 0.2s ease;
}
.article-read-more:hover {
  border-bottom-color: var(--theme-primary);
}

/* ============================================================
       SUBSCRIBE BANNER
       ============================================================ */
.subscribe-banner {
  background-color: var(--theme-subscribe-bg, var(--theme-primary));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--theme-text-light);
}

.subscribe-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--theme-subscribe-container-gap, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .subscribe-container {
    grid-template-columns: auto auto 1fr auto;
    gap: var(--theme-subscribe-container-gap, 4.4rem);
  }
}

.unclassified .subscribe-banner {
  background-image: url("../images/subscribe-background.webp");
}

.subscribe-title {
  font-weight: var(--theme-subscribe-title-fw);
  font-size: clamp(32px, 32px + 0.0710784314 * (100vw - 1200px), 61px);
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
  max-width: 13ch;
}

@media (min-width: 1200px) {
  body.unclassified .subscribe-title {
    max-width: 16ch;
    text-wrap: auto;
  }
}

body.americastands .subscribe-title {
  max-width: 25ch;
}
@media (min-width: 768px) {
  body.americastands .subscribe-title {
    max-width: 26ch;
    text-wrap: auto;
  }
}

.subscribe-divider {
  display: none;
  width: 1px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 900px) {
  .subscribe-divider {
    display: block;
  }
}

.subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.subscribe-description {
  margin: 0;
  font-family: var(--theme-font-body);
  font-weight: var(--theme-fw-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  max-width: 42ch;
}
@media (min-width: 768px) {
  .subscribe-description {
    max-width: none;
  }
}
.subscribe-description br {
  display: none;
}
@media (min-width: 768px) {
  .subscribe-description br {
    display: block;
  }
}

.btn-subscribe {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1.5px solid var(--theme-text-light);
  text-decoration: none;
  font-family: var(--theme-font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-subscribe:hover {
  background-color: var(--theme-text-light);
  color: var(--theme-primary);
}
.btn-subscribe:focus-visible {
  outline: 3px solid var(--theme-primary);
  outline-offset: 2px;
}

.btn-subscribe--secondary {
  background-color: transparent;
  color: var(--theme-text-light);
}
.btn-subscribe--secondary:hover {
  background-color: var(--theme-text-light);
  color: var(--theme-primary);
}

.btn-subscribe--primary {
  background-color: var(--theme-text-light);
  color: var(--theme-primary);
}
.btn-subscribe--primary:hover {
  background-color: transparent;
  color: var(--theme-text-light);
}

/* ============================================================
       FOOTER
       ============================================================ */
.site-footer {
  position: relative;
  z-index: 2;
  background-color: var(--theme-footer-bg, var(--theme-text-main));
  color: var(--theme-text-light);
}
@media (min-width: 768px) {
  .site-footer .line-divider,
  .site-footer hr.line-divider {
    display: none;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--theme-footer-top-gap, 3rem);
  padding-bottom: 47px;
}
@media (min-width: 900px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 900px) {
  .footer-links-group {
    align-items: flex-end;
  }
}

.footer-brand {
  max-width: var(--theme-footer-brand-max-width, 420px);
  margin-inline: auto;
}
@media (min-width: 992px) {
  .footer-brand {
    margin-inline: 0;
  }
}

.footer-logo {
  display: block;
  font-family: var(--theme-font-header);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: inherit;
}
.footer-logo:visited {
  color: inherit;
}
.footer-logo img,
.footer-logo .footer-logo-img {
  display: block;
  max-width: 174px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-description {
  font-family: var(--theme-font-body);
  font-weight: var(--theme-fw-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--theme-text-light);
  max-width: var(--theme-footer-desc-max-width, 60ch);
  margin-inline: auto;
  max-width: 26ch;
}
@media (min-width: 900px) {
  .footer-description {
    font-size: 16px;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-inline: auto;
  justify-content: center;
  width: 100%;
}
.footer-nav .footer-nav-cta {
  align-self: stretch;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-inline: 0;
  }
  .footer-nav .footer-nav-cta {
    align-self: auto;
  }
}

/* Style all footer nav links (WP menu + explicit .footer-nav-link) */
.footer-nav a,
.footer-nav-link {
  font-family: var(--theme-font-body);
  font-weight: var(--theme-fw-header);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--theme-text-light);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.footer-nav-link:hover {
  color: var(--theme-primary);
}

.footer-nav-cta {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: right;
  text-transform: uppercase;
  background-color: var(--theme-primary);
  padding: 0.5rem 1.5rem;
}
.footer-nav-cta:hover {
  color: var(--theme-primary-dark);
  background-color: var(--theme-text-light);
}

.footer-social {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .footer-social {
    margin-inline: 0;
  }
}
.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.footer-social .social-link svg {
  width: 32px;
  height: 32px;
}

.social-link {
  color: var(--theme-text-light);
  transition: color 0.2s ease, transform 0.2s ease;
}
.social-link:hover {
  color: var(--theme-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-top: var(--theme-footer-bottom-pt, 2rem);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding-top: 47px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.copyright {
  --copyright-color: var(--theme-text-light);
  --copyright-text-align: center;
  --copyright-font-family: var(--theme-font-header);
  --copyright-font-size: 11px;
  --copyright-line-height: 22px;
  margin: 0;
  color: var(--copyright-color);
  text-align: var(--copyright-text-align);
  font-family: var(--copyright-font-family);
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: var(--theme-fw-body);
  line-height: var(--copyright-line-height);
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 33ch;
}
@media (min-width: 768px) {
  .copyright {
    --copyright-text-align: right;
    --copyright-font-size: 14px;
    --copyright-line-height: 150%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  body.americastands .copyright {
    color: #fff;
    text-align: right;
    font-family: var(--font-neuzeit);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

@media (min-width: 992px) {
  body.americastands .footer-description {
    max-width: none;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  font-family: var(--theme-font-body);
  font-weight: 700;
  font-size: clamp(10px, 1.17vw, 14px);
  line-height: 24px;
  letter-spacing: 1.5px;
  color: var(--theme-text-light);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.copyright,
.legal-link {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.copyright:hover,
.legal-link:hover {
  opacity: 1;
  color: var(--theme-text-light);
}

/* Subscribe modal */
.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.subscribe-modal[hidden] {
  display: none;
}

.subscribe-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.29);
  cursor: pointer;
}

.subscribe-modal-dialog {
  position: relative;
  cursor: default;
  background: var(--theme-text-light);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  max-width: min(90vw, 420px);
  border-radius: 8px;
  border: 2px solid var(--theme-text-main);
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.15);
}
.subscribe-modal-dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--theme-primary);
  border-radius: 8px 8px 0 0;
}

.subscribe-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-text-main);
  background: var(--theme-text-light);
  border: 2px solid var(--theme-text-main);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.subscribe-modal-close:hover, .subscribe-modal-close:focus-visible {
  background: var(--theme-text-main);
  color: var(--theme-text-light);
  border-color: var(--theme-text-main);
}
.subscribe-modal-close svg {
  display: block;
}

.subscribe-modal-title {
  margin: 0 0 0.25rem 0;
  font-family: var(--theme-font-header);
  font-weight: var(--theme-fw-header);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--theme-text-main);
}

.subscribe-modal-desc {
  margin: 0 0 1.25rem 0;
  font-family: var(--theme-font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--theme-grey);
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subscribe-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.subscribe-field label {
  font-family: var(--theme-font-header);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-text-main);
}
.subscribe-field input {
  font-family: var(--theme-font-body);
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
  border: 2px solid var(--theme-text-main);
  border-radius: 4px;
  color: var(--theme-text-main);
  background: var(--theme-text-light);
}
.subscribe-field input:focus {
  outline: none;
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 2px var(--theme-primary);
}
.subscribe-field input::placeholder {
  color: var(--theme-grey);
}

.btn-subscribe-submit {
  margin-top: 0.25rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--theme-font-header);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-text-light);
  background: var(--theme-primary);
  border: 2px solid var(--theme-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-subscribe-submit:hover, .btn-subscribe-submit:focus-visible {
  background: var(--theme-text-main);
  border-color: var(--theme-text-main);
  color: var(--theme-text-light);
}

/* Legal modals (privacy, cookies) – themed to match Unclassified */
#legal-modals-container .modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.29);
  cursor: pointer;
}
#legal-modals-container .modal[hidden] {
  display: none;
}
#legal-modals-container .modal-content {
  position: relative;
  cursor: default;
  font-family: var(--theme-font-body);
  color: var(--theme-text-main);
  background: var(--theme-text-light);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  max-width: min(90vw, 720px);
  max-height: 90vh;
  overflow: auto;
  border-radius: 8px;
  border: 2px solid var(--theme-text-main);
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.15);
  /* Custom Scrollbar - Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--theme-primary) transparent;
}
#legal-modals-container .modal-content::-webkit-scrollbar {
  width: 6px;
}
#legal-modals-container .modal-content::-webkit-scrollbar-track {
  background: transparent;
}
#legal-modals-container .modal-content::-webkit-scrollbar-thumb {
  background-color: var(--theme-primary);
  border-radius: 10px;
}
#legal-modals-container .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--theme-primary);
  border-radius: 8px 8px 0 0;
}
#legal-modals-container .modal-content h2 {
  margin: 0 0 0.5rem 0;
  font-family: var(--theme-font-header);
  font-weight: var(--theme-fw-header);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--theme-text-main);
}
#legal-modals-container .modal-content h3 {
  margin: 1.5rem 0 0.5rem 0;
  font-family: var(--theme-font-header);
  font-weight: var(--theme-fw-header);
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--theme-text-main);
}
#legal-modals-container .modal-content h3:first-of-type {
  margin-top: 0.75rem;
}
#legal-modals-container .modal-content p {
  margin: 0 0 0.75rem 0;
  font-family: var(--theme-font-body);
  font-weight: var(--theme-fw-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--theme-text-main);
}
#legal-modals-container .legal-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-text-main);
  background: var(--theme-text-light);
  border: 2px solid var(--theme-text-main);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
#legal-modals-container .legal-modal-close:hover, #legal-modals-container .legal-modal-close:focus-visible {
  background: var(--theme-text-main);
  color: var(--theme-text-light);
  border-color: var(--theme-text-main);
}
#legal-modals-container .legal-modal-close svg {
  display: block;
}
#legal-modals-container .legal-modal-body {
  margin-top: 0.25rem;
}
#legal-modals-container .legal-modal-body a {
  color: var(--theme-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
#legal-modals-container .legal-modal-body a:hover {
  color: var(--theme-text-main);
}
#legal-modals-container .legal-modal-body ul {
  margin: 0 0 0.75rem 0;
  padding-left: 1.25rem;
}
#legal-modals-container .legal-modal-body li {
  margin-bottom: 0.35rem;
  font-family: var(--theme-font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--theme-text-main);
}

/* ============================================================
     VIDEO MODAL (mockup: white box, video, title, date, description, airing, share + SUPPORT)
     ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 3vw, 2rem);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
  overflow: auto;
}
.video-modal[data-open=true] {
  visibility: visible;
  opacity: 1;
}
.video-modal[data-open=true]:not([hidden]) {
  display: flex;
}
.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.59);
  cursor: pointer;
}

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: min(1258px, 100vw - 1rem);
  background: var(--theme-text-light);
  border-radius: 0;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.3);
  padding: clamp(1rem, 6vw, 65px) clamp(1rem, 7vw, 80px);
}

/* Up Next Overlay */
.video-modal-up-next {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(20, 20, 20, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--theme-text-light);
  padding: clamp(1rem, 3vw, 2rem);
}
.video-modal-up-next[hidden] {
  display: none;
}
.video-modal-up-next.is-paused .up-next-loader::after {
  animation-play-state: paused;
  opacity: 0.3;
}
.video-modal-up-next.is-paused .up-next-pause {
  display: none;
}

.up-next-label {
  display: block;
  font-family: var(--theme-font-header);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--theme-primary);
  margin-bottom: 1rem;
}

.up-next-title {
  font-family: var(--theme-font-header);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  line-height: 1.1;
}

.up-next-loader {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.up-next-loader::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--theme-primary);
  transform: translateX(-100%);
  animation: upNextProgress 5s linear forwards;
}

@keyframes upNextProgress {
  to {
    transform: translateX(0);
  }
}
.up-next-pause {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--theme-text-light);
  padding: 0.75rem 2rem;
  margin-top: 3rem;
  cursor: pointer;
  font-family: var(--theme-font-header);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.up-next-pause:hover {
  background: var(--theme-text-light);
  color: var(--theme-text-main);
  border-color: var(--theme-text-light);
}

.video-modal-close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 25px);
  right: clamp(0.75rem, 2vw, 25px);
  z-index: 20;
  width: clamp(2.25rem, 5vw, 3rem);
  height: clamp(2.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-text-main);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.video-modal-close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Video modal nav: mobile first – smaller; scale up from 1481px */
.video-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  color: var(--theme-text-light);
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 50px;
  height: 50px;
}
.video-modal-nav:hover:not(:disabled) {
  color: var(--theme-text-light);
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--theme-primary);
  transform: translateY(-50%) scale(1.1);
}
.video-modal-nav:disabled {
  opacity: 0.1;
  cursor: not-allowed;
}
.video-modal-nav .slider-arrow-icon--mobile {
  display: block;
  width: 24px;
  height: 24px;
}
.video-modal-nav .slider-arrow-icon--desktop {
  display: none;
  width: 42px;
  height: 23px;
}
@media (min-width: 768px) {
  .video-modal-nav .slider-arrow-icon--mobile {
    display: none;
  }
  .video-modal-nav .slider-arrow-icon--desktop {
    display: block;
  }
}
.video-modal-nav svg:not(.slider-arrow-icon) {
  width: 24px;
  height: auto;
}
.video-modal-nav--prev {
  left: 1rem;
}
.video-modal-nav--prev .slider-arrow-icon,
.video-modal-nav--prev svg {
  transform: rotate(180deg);
}
.video-modal-nav--next {
  right: 1rem;
}
@media (min-width: 1481px) {
  .video-modal-nav {
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .video-modal-nav--prev {
    left: 2rem;
  }
  .video-modal-nav--next {
    right: 2rem;
  }
  .video-modal-nav svg {
    width: 32px;
  }
}

.video-modal-player-wrap {
  position: relative;
  width: 100%;
  max-width: min(1096px, 100%);
  margin-inline: auto;
  height: auto;
  aspect-ratio: 16/9;
  background: var(--theme-text-main);
}

.video-modal-player,
.video-modal-iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.video-modal-player[hidden],
.video-modal-iframe[hidden] {
  display: none;
}

.video-modal-body {
  padding: clamp(1rem, 5vw, 40px) 0 0;
}

.video-modal-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.video-modal-title {
  margin: 0;
  font-family: var(--theme-font-header);
  font-weight: 700;
  font-size: clamp(1.25rem, 4vw + 0.75rem, 36px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--theme-text-main);
}

.video-modal-date {
  margin: 0 0 clamp(0.75rem, 3vw, 24px) 0;
  font-size: clamp(0.875rem, 1.5vw + 0.75rem, 18px);
  color: var(--theme-text-main);
  font-weight: 500;
}

.video-modal-actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 30px);
}

.video-modal-share {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 20px);
}

.video-modal-share-link {
  color: var(--theme-text-main);
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.video-modal-share-link svg {
  display: block;
  overflow: visible;
}
.video-modal-share-link:hover {
  opacity: 0.6;
}

.video-modal-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-primary);
  color: var(--theme-text-light);
  min-width: clamp(80px, 20vw, 106px);
  height: clamp(32px, 4vw, 36px);
  padding: 0 0.75rem;
  border: none;
  font-family: var(--theme-font-header);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.5vw + 0.5rem, 14px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}
.video-modal-support-btn:hover {
  background-color: var(--theme-primary-dark);
}

.video-modal-description,
.video-modal-airing {
  font-family: var(--theme-font-body);
  font-weight: 400;
  font-size: clamp(0.875rem, 1.5vw + 0.75rem, 18px);
  line-height: 1.5;
  color: var(--theme-text-main);
  letter-spacing: 0;
}

.video-modal-description {
  margin: 0;
  max-width: 85ch;
}

.video-modal-airing {
  margin-top: 4px;
}
.video-modal-airing strong {
  font-weight: 700;
}

/* Reduce Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  .video-modal-up-next .up-next-loader::after {
    animation: none;
  }
}
/* Uplynk iframe [vnn_uplynk] + ACF uplynk_embed */
.vnn-uplynk-embed {
  margin-inline: auto;
  text-align: center;
}
.vnn-uplynk-embed iframe {
  display: block;
  overflow: hidden;
  border: none;
}

/* Responsive 16:9 box; iframe fills (PHP also inlines critical layout) */
.vnn-uplynk-embed--responsive {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  min-height: 0;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.28), 0 20px 48px rgba(0, 0, 0, 0.32), 0 40px 80px rgba(0, 0, 0, 0.28), 0 0 72px rgba(0, 0, 0, 0.22);
}

.vnn-uplynk-embed--responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  z-index: 1;
}

.uplynk-embed-section .section-container .vnn-uplynk-embed--responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Optional poster: iframe deferred until click; full-area trigger */
.vnn-uplynk-embed--has-poster .vnn-uplynk-poster-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vnn-uplynk-embed--has-poster .vnn-uplynk-poster-trigger:hover, .vnn-uplynk-embed--has-poster .vnn-uplynk-poster-trigger:focus-visible {
  outline: 2px solid var(--theme-primary, var(--color-red, #d71724));
  outline-offset: 2px;
}

/* Fills trigger (same box as iframe); scales with container width; centered crop */
.vnn-uplynk-embed--has-poster .vnn-uplynk-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

.vnn-uplynk-poster-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(56px, 12vw, 88px);
  height: clamp(56px, 12vw, 88px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.vnn-uplynk-poster-play-icon::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.85em 0 0.85em 1.35em;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.vnn-uplynk-embed--poster-dismissed .vnn-uplynk-poster-trigger {
  display: none;
}

/* Non-responsive wrapper when poster: needs positioning context */
.vnn-uplynk-embed:not(.vnn-uplynk-embed--responsive).vnn-uplynk-embed--has-poster {
  position: relative;
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
  overflow: hidden;
}

.vnn-uplynk-embed:not(.vnn-uplynk-embed--responsive).vnn-uplynk-embed--has-poster iframe {
  position: relative;
  z-index: 1;
}

.uplynk-embed-section {
  padding-block: clamp(1.75rem, 2.8vw + 1.2rem, 3.5rem);
}

.uplynk-embed-section__header {
  margin-bottom: 1.5rem;
}

/* Victory News Theme Refresh – layout tuned for 1x (mockup was 2x) */
body.victorynews {
  --section-spacing: clamp(1.75rem, 2.8vw + 1.2rem, 3.5rem);
  --container-pad: clamp(1rem, 2.5vw, 2.5rem);
  /* Force no bullets on any nav/menu lists (overrides WP block/base styles) */
}
body.victorynews nav ul,
body.victorynews nav ul li,
body.victorynews .menu,
body.victorynews .menu li,
body.victorynews .menu-item,
body.victorynews [role=navigation] ul,
body.victorynews [role=navigation] ul li {
  list-style: none !important;
  list-style-type: none !important;
}
body.victorynews nav ul li::marker,
body.victorynews .menu li::marker,
body.victorynews .menu-item::marker,
body.victorynews [role=navigation] ul li::marker {
  content: none !important;
  display: none !important;
  font-size: 0 !important;
}
body.victorynews .team-section {
  background-color: var(--theme-bg-section);
  padding-block-start: var(--section-spacing);
  padding-block-end: var(--section-spacing);
}
body.victorynews .section-container {
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
@media (min-width: 992px) {
  body.victorynews .section-container.sms-container {
    padding-block: 150px;
  }
}
body.victorynews {
  /* Brand bar – Victory News typography */
}
body.victorynews .brand-link {
  font-family: "Gotham HTF", var(--theme-font-body);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}
body.victorynews {
  /* Hero Section – background wraps whole block so news bar sits over it */
}
body.victorynews .hero-block {
  display: flex;
  flex-direction: column;
  background-color: #010101;
  background-image: url("../../assets/images/vn-hero-background-mobile.webp");
  background-size: cover;
  background-position: 80% 23%;
  position: relative;
  height: auto;
  min-height: 800px;
}
@media (min-width: 768px) {
  body.victorynews .hero-block {
    background-position: center 25%;
  }
}
@media (min-width: 992px) {
  body.victorynews .hero-block {
    background-image: url("../images/page-top.webp");
    background-position: center right;
  }
}
@media (min-width: 1200px) {
  body.victorynews .hero-block {
    background-size: min(100%, 1728px) auto;
    background-position: center center;
  }
}
body.victorynews .hero-block-inner {
  flex: 1 1 0;
  min-height: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 992px) {
  body.victorynews .hero-block-inner {
    align-items: flex-start;
  }
  body.victorynews .hero-block-inner .hero-static .hero-container {
    margin-bottom: clamp(1.5rem, 6vw, 4rem);
  }
}
body.victorynews {
  /* News bar: in flow so flex column accounts for it; hero-block-inner fills space above */
}
body.victorynews .hero-block .news-bar {
  flex: 0 0 auto;
}
body.victorynews .hero-static .hero-container {
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0;
  position: relative;
  z-index: 5;
}
body.victorynews .hero-static .hero-content {
  max-width: 800px;
  text-align: left;
  margin-block-end: 56px;
}
body.victorynews .hero-title {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  body.victorynews .hero-title {
    margin-bottom: 2rem;
    overflow: visible;
  }
}
body.victorynews .hero-title {
  /* "NEWS YOU CAN" – one line always; overrides shared .hero-block .text-display / .text-display */
}
body.victorynews .hero-title .text-display:not(.text-huge) {
  font-family: var(--theme-font-book);
  font-weight: 400;
  font-size: clamp(16px, 16px + (100vw - 768px) * 20 / 432, 36px);
  line-height: 0.9;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  color: var(--theme-text-light);
  white-space: nowrap;
}
body.victorynews .hero-title .text-display:not(.text-huge) .text-blue {
  color: var(--color-blue-light);
}
body.victorynews .hero-title .text-huge {
  color: #fff;
  font-family: var(--theme-font-header);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(64px, 12vw, 140px);
  line-height: 90%;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 100%;
  display: block;
}
body.victorynews .hero-description {
  color: var(--theme-text-light);
}
body.victorynews .hero-description p,
body.victorynews .hero-description a {
  color: var(--theme-text-light);
}
body.victorynews .hero-description .hero-lead {
  color: var(--theme-text-light);
  font-family: var(--theme-font-header);
  font-size: clamp(15px, 15px + 0.0185185185 * (100vw - 768px), 23px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin: 0;
  padding: 0;
}
body.victorynews .hero-description p.text-body-6 {
  font-family: var(--theme-font-book);
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  line-height: 1.5;
  max-width: 566px;
  margin-block: 1rem;
  max-width: 38ch;
}
body.victorynews .btn-hero.btn-red {
  display: inline-block;
  background-color: var(--theme-primary);
  color: var(--theme-text-light) !important;
  padding: 1rem 2rem;
  font-family: var(--theme-font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--theme-primary);
  border-radius: 0;
  margin-top: 0.5rem;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
body.victorynews .btn-hero.btn-red:hover, body.victorynews .btn-hero.btn-red:focus-visible {
  background-color: var(--theme-text-light);
  color: var(--theme-primary) !important;
  border-color: var(--theme-text-light);
}
body.victorynews {
  /* Header Overrides */
}
body.victorynews .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: calc(var(--container-max) + 30px);
  margin-inline: auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 15px;
}
@media (max-width: 767px) {
  body.victorynews .site-header {
    top: 12px;
    padding: 12px var(--container-pad);
    min-height: 56px;
  }
}
body.victorynews .site-logo {
  display: block;
  max-width: 50%;
  flex-shrink: 0;
}
body.victorynews .site-logo img {
  width: 107px;
  height: 65px;
  display: block;
  object-fit: contain;
}
body.victorynews .site-nav-link,
body.victorynews .site-nav a {
  font-family: var(--theme-font-body);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.875rem + 0.0092592593 * (100vw - 768px), 18px);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  body.victorynews .site-nav-link,
  body.victorynews .site-nav a {
    color: var(--theme-text-main);
  }
}
@media (min-width: 768px) {
  body.victorynews .site-nav-link,
  body.victorynews .site-nav a {
    color: var(--theme-text-light);
  }
}
body.victorynews .site-nav-link:hover,
body.victorynews .site-nav a:hover {
  color: var(--color-blue-light);
}
body.victorynews .site-nav-cta {
  background-color: var(--theme-primary);
  color: var(--theme-text-light);
  padding: 8px 24px;
}
body.victorynews .site-nav-cta:hover {
  background-color: var(--color-white);
  color: var(--theme-primary);
}
body.victorynews #menu-item-1377 > a,
body.victorynews .menu-item-1377 {
  color: var(--theme-primary);
}
body.victorynews #menu-item-1377 > a:hover, body.victorynews #menu-item-1377 > a:focus,
body.victorynews .menu-item-1377:hover,
body.victorynews .menu-item-1377:focus {
  color: var(--color-white);
}
body.victorynews .nav-toggle .nav-toggle-bar {
  background-color: var(--theme-text-light);
}
body.victorynews {
  /* Mobile: Support button to the right of hamburger, vertically inline */
}
body.victorynews .nav-support-btn {
  display: none;
  text-decoration: none;
}
@media (max-width: 767px) {
  body.victorynews .nav-support-btn {
    display: inline-flex;
    height: 34px;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: var(--theme-primary);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
    font-family: var(--theme-font-header);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: right;
    white-space: nowrap;
    transition: background-color 0.2s ease;
  }
  body.victorynews .nav-support-btn:hover {
    background: var(--color-white);
    color: var(--theme-primary);
  }
}
body.victorynews {
  /* Nightly Broadcast Section */
}
body.victorynews .nightly-broadcast {
  padding-top: 120px;
  padding-bottom: 16px;
  background-color: var(--theme-text-light);
}
body.victorynews .nightly-broadcast .section-container {
  padding-block: 0;
}
body.victorynews .nightly-broadcast .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  body.victorynews .nightly-broadcast .section-header {
    flex-direction: row;
    align-items: flex-start;
  }
  body.victorynews .nightly-broadcast .section-header .slider-controls {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  body.victorynews .nightly-broadcast .section-header {
    align-items: flex-start;
  }
  body.victorynews .nightly-broadcast .section-header .slider-controls {
    align-self: flex-end;
    margin-left: auto;
  }
}
body.victorynews .nightly-broadcast .section-title-group {
  max-width: 600px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  body.victorynews .nightly-broadcast .section-title-group {
    margin-inline: 0;
  }
}
body.victorynews .nightly-broadcast .section-title {
  font-family: var(--theme-font-book);
  font-weight: 400;
  font-size: clamp(34px, 34px + 20 * (100vw - 768px) / 432, 54px);
  line-height: 110%;
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 0;
  color: #141414;
}
body.victorynews .nightly-broadcast .section-desc {
  font-family: var(--theme-font-book);
  font-weight: 400;
  font-size: clamp(15px, 15px + 3 * (100vw - 768px) / 432, 18px);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--theme-text-main);
  max-width: 322px;
  margin-block-end: 0;
}
@media (min-width: 768px) {
  body.victorynews .nightly-broadcast .section-desc {
    max-width: 40ch;
  }
}
body.victorynews .nightly-broadcast .episode-card {
  width: 100%;
  max-width: 100%;
}
body.victorynews .nightly-broadcast .episode-thumbnail {
  border-bottom: clamp(11px, 11px + 0.0162037037 * (100vw - 768px), 18px) solid var(--color-blue);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  body.victorynews .nightly-broadcast .episode-thumbnail {
    border-bottom-width: 8px;
    margin-bottom: 19px;
  }
}
body.victorynews .nightly-broadcast .episode-date {
  color: var(--theme-grey);
  font-family: var(--theme-font-header);
  font-size: clamp(13px, 13px + 0.0115740741 * (100vw - 768px), 18px);
  font-style: normal;
  font-weight: var(--theme-fw-body);
  line-height: 150%;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body.victorynews .nightly-broadcast .episode-date {
    color: #8b8b8b;
  }
}
body.victorynews .nightly-broadcast .episode-title {
  color: var(--theme-text-main);
  font-family: var(--theme-font-header);
  font-size: clamp(15px, 15px + 0.0162037037 * (100vw - 768px), 22px);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(1.3, 1.5 - 0.000462963 * (100vw - 768px), 1.5);
  text-transform: capitalize;
  max-width: 30ch;
}
body.victorynews .nightly-broadcast .episode-meta {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  body.victorynews .nightly-broadcast .episode-meta {
    margin-bottom: 1rem;
  }
}
body.victorynews {
  /* SMS CTA Section – mobile-first; mobile banner until 992px */
}
body.victorynews .sms-cta-section {
  background-image: url("../../assets/images/SMS CTA-mobile.webp"), radial-gradient(circle at center, #1a3a5a 0%, #0a1a2a 100%);
  background-size: cover;
  background-position: 82% 50%;
  background-repeat: no-repeat;
  color: var(--theme-text-light);
  overflow: hidden;
  margin-block: var(--section-spacing) 0;
}
@media (min-width: 992px) {
  body.victorynews .sms-cta-section {
    display: flex;
    align-items: center;
    background-image: url("../../assets/images/SMS CTA.webp"), radial-gradient(circle at center, #1a3a5a 0%, #0a1a2a 100%);
    background-position: 45% center;
    min-height: 754px;
  }
}
body.victorynews .sms-cta-section .sms-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 56px;
  margin-inline-end: 0;
}
body.victorynews .sms-cta-section .sms-container .sms-image {
  display: none;
}
body.victorynews .sms-cta-section .sms-container .sms-content {
  width: 100%;
  max-width: none;
  margin-left: 0;
}
@media (min-width: 992px) {
  body.victorynews .sms-cta-section .sms-container {
    flex-direction: row;
    align-items: flex-end;
    width: 45%;
  }
  body.victorynews .sms-cta-section .sms-container .sms-content {
    width: 50%;
    max-width: 662px;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  body.victorynews .sms-cta-section .sms-container {
    width: auto;
  }
}
@media (min-width: 1200px) {
  body.victorynews .sms-cta-section .sms-container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
  }
}
body.victorynews .sms-cta-section .sms-image {
  flex: 1;
  max-width: 600px;
}
body.victorynews .sms-cta-section .sms-image img {
  width: 100%;
  height: auto;
}
body.victorynews .sms-cta-section .sms-content {
  flex: 1;
  max-width: 600px;
}
body.victorynews .sms-cta-section .sms-content h2 {
  font-family: var(--theme-font-header);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 364px;
  padding-right: 15px;
}
body.victorynews .sms-cta-section .sms-content h2 strong {
  font-weight: 700;
}
@media (min-width: 992px) {
  body.victorynews .sms-cta-section .sms-content h2 {
    margin: 0;
    max-width: none;
    padding-right: 0;
  }
  body.victorynews .sms-cta-section .sms-content h2 br {
    display: none;
  }
}
body.victorynews .sms-cta-section .sms-content p {
  color: #fff;
  font-family: var(--theme-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.9;
  margin-bottom: 24px;
  margin-inline: auto;
  max-width: 34ch;
}
@media (min-width: 992px) {
  body.victorynews .sms-cta-section .sms-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 47ch;
    margin-inline: 0;
  }
}
body.victorynews .sms-cta-section .btn-white {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--theme-text-light);
  color: #141414;
  padding: 1rem 2rem;
  font-family: var(--theme-font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (min-width: 992px) {
  body.victorynews .sms-cta-section .btn-white {
    display: inline-block;
    width: auto;
  }
}
body.victorynews .sms-cta-section .btn-white:hover {
  opacity: 0.9;
}
body.victorynews {
  /* App Banner – three columns: headline | divider | description | badges (stacked), vertically centered */
}
body.victorynews .app-banner {
  background-image: radial-gradient(circle at center, #122a42 0%, #061218 100%);
  color: var(--theme-text-light);
  padding: clamp(40px, 40px + 0.0671296296 * (100vw - 768px), 69px) 0;
}
body.victorynews .app-banner .section-container {
  padding-block: 0;
}
body.victorynews .app-banner .app-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  body.victorynews .app-banner .app-banner-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem 3rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.victorynews .app-banner .app-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  body.victorynews .app-banner .app-banner-inner .app-banner-title {
    grid-column: 1;
    grid-row: 1;
  }
  body.victorynews .app-banner .app-banner-inner .app-banner-divider {
    display: none;
  }
  body.victorynews .app-banner .app-banner-inner .app-banner-desc {
    grid-column: 1;
    grid-row: 2;
  }
  body.victorynews .app-banner .app-banner-inner .app-banner-badges {
    grid-column: 2;
    grid-row: 1/-1;
    align-self: center;
  }
  body.victorynews .app-banner .app-banner-inner .line-divider {
    display: none;
  }
}
body.victorynews .app-banner .app-banner-title {
  font-family: var(--theme-font-header);
  font-size: clamp(37px, 37px + 0.0486111111 * (100vw - 768px), 58px);
  font-weight: 300;
  margin: 0 auto;
  color: var(--theme-text-light);
  line-height: 1.2;
  flex-shrink: 0;
}
body.victorynews .app-banner .app-banner-title strong {
  font-weight: 700;
}
@media (min-width: 992px) {
  body.victorynews .app-banner .app-banner-title {
    margin: 0;
  }
}
body.victorynews .app-banner .app-banner-divider {
  display: none;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  align-self: stretch;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  body.victorynews .app-banner .app-banner-divider {
    display: block;
  }
}
body.victorynews .app-banner .app-banner-desc {
  margin: 0 auto;
  color: var(--theme-text-light);
  opacity: 0.9;
  line-height: 1.6;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 32ch;
}
@media (min-width: 768px) {
  body.victorynews .app-banner .app-banner-desc {
    max-width: 40ch;
  }
}
@media (min-width: 992px) {
  body.victorynews .app-banner .app-banner-desc {
    margin: 0;
  }
}
body.victorynews .app-banner .app-banner-badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  body.victorynews .app-banner .app-banner-badges {
    flex-direction: row;
  }
}
body.victorynews .app-banner .app-badge-link {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 0;
  text-align: center;
}
body.victorynews .app-banner .app-badge {
  height: 54px;
  width: auto;
  display: block;
  margin: 0 auto;
}
body.victorynews {
  /* Team Section */
}
body.victorynews .team-section .section-header .section-title-group {
  max-width: 377px;
  width: 100%;
}
@media (min-width: 768px) {
  body.victorynews .team-section .section-header .section-title-group {
    max-width: none;
  }
}
body.victorynews .team-section .section-header .section-title {
  font-family: var(--theme-font-book);
  font-size: clamp(37px, 37px + 0.0393518519 * (100vw - 768px), 54px);
  line-height: 110%;
  letter-spacing: -1px;
  color: var(--theme-text-main);
  font-weight: 400;
  max-width: 270px;
}
@media (min-width: 768px) {
  body.victorynews .team-section .section-header .section-title {
    line-height: 1.1;
    max-width: 14ch;
  }
}
body.victorynews .team-section .section-header .section-desc {
  max-width: 33ch;
}
@media (min-width: 768px) {
  body.victorynews .team-section .section-header .section-desc {
    max-width: 41ch;
  }
}
body.victorynews .team-section .section-header .section-desc {
  margin: 0 0 16px 0;
  /* ~529px at 18px */
}
body.victorynews .team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  body.victorynews .team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  body.victorynews .team-section .team-grid {
    grid-template-columns: 1fr;
  }
}
body.victorynews .team-section .team-member {
  text-align: center;
}
body.victorynews .team-section .team-member .team-name,
body.victorynews .team-section .team-member .team-role {
  margin: 0;
}
body.victorynews .team-section .team-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: clamp(24px, 24px + 0.0185185185 * (100vw - 768px), 32px);
}
body.victorynews .team-section .team-photo img {
  width: 100%;
  max-width: 550px;
  height: 100%;
  object-fit: cover;
  padding: 7px;
}
body.victorynews .team-section .team-name {
  font-family: var(--theme-font-header);
  font-weight: 700;
  font-size: clamp(18px, 18px + (100vw - 320px) * 4 / 448, 22px);
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-blue-name);
  margin-bottom: 0.5rem;
}
body.victorynews .team-section .team-role {
  font-family: var(--theme-font-body);
  font-weight: 500;
  font-size: clamp(15px, 15px + 3 * (100vw - 320px) * 3 / 448, 18px);
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: var(--theme-text-main);
}
body.victorynews {
  /* Connect Section (Beyond the News) */
}
body.victorynews .connect-section > .section-container {
  padding-block: clamp(56px, 56px + 0.1481481481 * (100vw - 768px), 120px);
}
body.victorynews .connect-section .section-desc {
  max-width: 33ch;
  color: #141414;
  font-family: var(--theme-font-book);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  body.victorynews .connect-section .section-desc {
    max-width: 33ch;
  }
}
@media (min-width: 992px) {
  body.victorynews .connect-section .section-desc {
    max-width: 33ch;
  }
}
body.victorynews .connect-section .connect-section-header {
  flex-wrap: wrap;
  gap: 56px;
  margin-bottom: clamp(56px, 56px + 0.0555555556 * (100vw - 768px), 80px);
}
body.victorynews .connect-section .connect-section-header .section-title-group {
  max-width: 480px;
}
body.victorynews .connect-section .connect-section-header .section-title-group h2 {
  font-size: clamp(18px, 18px + (100vw - 320px) * 13 / 448, 31px);
  margin-bottom: 24px;
}
body.victorynews .connect-section .connect-tagline {
  font-family: var(--theme-font-header);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(44px, 44px + 0.0324074074 * (100vw - 768px), 58px);
  line-height: 110%;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: #141414;
  margin: 0;
  max-width: 353px;
  padding-right: 15px;
}
body.victorynews .connect-section .connect-tagline br {
  display: none;
}
@media (min-width: 768px) {
  body.victorynews .connect-section .connect-tagline {
    max-width: 11ch;
    width: max-content;
  }
}
body.victorynews .connect-section .connect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  body.victorynews .connect-section .connect-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  body.victorynews .connect-section .connect-grid .connect-card:first-child {
    grid-column: 1/-1;
  }
  body.victorynews .connect-section .connect-grid .connect-card {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  body.victorynews .connect-section .connect-grid {
    grid-template-columns: 4fr 3fr 3fr;
    align-items: stretch;
  }
}
body.victorynews .connect-section .connect-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
body.victorynews .connect-section .connect-card:nth-child(3) {
  min-height: 650px;
}
@media (min-width: 768px) {
  body.victorynews .connect-section .connect-card:nth-child(3) {
    min-height: 440px;
  }
}
@media (min-width: 992px) {
  body.victorynews .connect-section .connect-card {
    aspect-ratio: auto;
    min-height: max(100%, 500px);
  }
  body.victorynews .connect-section .connect-card:nth-child(3) {
    min-height: max(100%, 500px);
  }
}
body.victorynews .connect-section .connect-card:nth-child(3) img {
  object-position: top center;
}
body.victorynews .connect-section .connect-card {
  color: var(--theme-text-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px;
  text-decoration: none;
}
body.victorynews .connect-section .connect-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}
body.victorynews .connect-section .connect-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  z-index: 2;
}
body.victorynews .connect-section .connect-card:hover img {
  transform: scale(1.05);
}
body.victorynews .connect-section .card-content {
  position: relative;
  z-index: 3;
}
body.victorynews .connect-section .card-title {
  color: var(--theme-text-light);
  font-family: var(--theme-font-header);
  font-size: clamp(26px, 26px + (100vw - 320px) * 14 / 448, 40px);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  body.victorynews .connect-section .card-title {
    line-height: 1.1;
  }
}
body.victorynews .connect-section .card-desc {
  color: #fff;
  font-family: var(--theme-font-header);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 31ch;
}
body.victorynews .connect-section .btn-card {
  background-color: var(--theme-text-light);
  color: var(--theme-text-main);
  font-family: var(--theme-font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 0;
  width: 100%;
  display: block;
}
body.victorynews {
  /* Footer – layout from _footer.scss; only font and logo overrides */
}
body.victorynews .site-footer .footer-container {
  padding-top: 56px;
}
body.victorynews .site-footer .footer-logo img {
  width: 100%;
  max-width: 93px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  body.victorynews .site-footer .footer-logo img {
    margin: 0;
  }
}
body.victorynews .site-footer .footer-description {
  color: var(--theme-text-light);
  font-family: var(--theme-font-book);
  font-size: clamp(13px, 13px + 0.0046296296 * (100vw - 768px), 15px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}
@media (min-width: 768px) {
  body.victorynews .site-footer .footer-description {
    text-align: left;
    max-width: 45ch;
  }
}
body.victorynews .site-footer .footer-nav-link {
  font-family: var(--theme-font-body);
}

@keyframes vnn-velvet-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(1.25%, -0.85%, 0) scale(1.015);
  }
  66% {
    transform: translate3d(-0.9%, 1.1%, 0) scale(1.008);
  }
}
/* Slim header (Page Settings): same primary header look as over hero, no hero — solid bar + velvet main; brand bar never covered */
body.victorynews.vnn-slim-header {
  --vnn-uplynk-embed-max-block: max(0px, calc(100vh - 250px));
}
body.victorynews.vnn-slim-header .brand-bar {
  position: relative;
  z-index: 210;
}
body.victorynews.vnn-slim-header main {
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  z-index: 1;
  background-color: var(--theme-dark-bg);
}
body.victorynews.vnn-slim-header main::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  /* Oversized so slow translate/scale never reveals hard edges */
  inset: -12%;
  background-image: radial-gradient(ellipse 140% 72% at 50% -8%, color-mix(in srgb, var(--theme-primary) 16%, transparent) 0%, transparent 55%), radial-gradient(ellipse 85% 60% at 100% 100%, color-mix(in srgb, var(--color-blue-dark) 22%, transparent) 0%, transparent 50%), radial-gradient(ellipse 75% 55% at 0% 100%, color-mix(in srgb, var(--color-navy) 40%, transparent) 0%, transparent 48%), linear-gradient(168deg, var(--color-navy-dark) 0%, #0b101c 28%, color-mix(in srgb, var(--color-navy) 55%, var(--color-black)) 52%, #15151a 78%, var(--color-black) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: vnn-velvet-drift 28s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  body.victorynews.vnn-slim-header main::before {
    animation: none;
    inset: 0;
  }
}
body.victorynews.vnn-slim-header main > * {
  position: relative;
  z-index: 1;
}
body.victorynews.vnn-slim-header {
  /* Match body.victorynews .site-header metrics (hero) but in normal flow — no absolute / no hero behind */
}
body.victorynews.vnn-slim-header main > .site-header {
  flex: 0 0 auto;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: calc(var(--container-max) + 30px);
  margin-inline: auto;
  padding: 1rem 15px;
  min-height: 0;
  z-index: 10;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  body.victorynews.vnn-slim-header main > .site-header {
    padding: 12px var(--container-pad);
    min-height: 56px;
  }
}
body.victorynews.vnn-slim-header {
  /* Room for dispersed box-shadow on embed (global .uplynk-embed-section is padding-block: 0) */
}
@media (min-width: 1062px) {
  body.victorynews.vnn-slim-header .uplynk-embed-section {
    max-height: var(--vnn-uplynk-embed-max-block); /*(full height - header (.site-header + .brand-bar) - (100px of footer))*/
    height: var(--vnn-uplynk-embed-max-block);
    display: flex;
    flex-direction: column;
  }
  body.victorynews.vnn-slim-header .uplynk-embed-section .section-container {
    flex: 1 1 auto;
    min-height: 0; /* allow the video wrapper to shrink */
    display: flex;
    flex-direction: column;
  }
  body.victorynews.vnn-slim-header .uplynk-embed-section {
    /* Override the inline style (width:100%; height:auto) so height constraints win. */
  }
  body.victorynews.vnn-slim-header .uplynk-embed-section .vnn-uplynk-embed--responsive[style] {
    flex: 1 1 auto;
    min-height: 0;
    align-self: center;
    width: auto !important; /* let aspect-ratio derive width from constrained height */
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
  }
}
body.victorynews.vnn-slim-header {
  /* Slide-in nav above brand bar (brand-bar z-index 200) on small screens */
}
@media (max-width: 767px) {
  body.victorynews.vnn-slim-header .site-nav {
    z-index: 220;
  }
}

.uplynk-embed-section {
  padding-block: 0;
}

/*# sourceMappingURL=style.css.map */
