/* =========================================================
   Start: Global Variables
   ========================================================= */
:root {
  --site-gutter: clamp(1rem, 5vw, 100px);
  --site-header-offset: 114px;
  --brand-blue: #0f6cb6;
  --brand-bright-blue: #0077c8;
  --brand-yellow: #ffd200;
  --pantone-3005c: #0077c8;
  --pantone-116c: #ffcd00;
  --page-bg: #fefefe;
  --nav-bg: #fff;
  --text: #333;
  --light-grey: #e0e0e0;
  --mid-grey: #cfcfcf;
  --shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
/* End: Global Variables */

/* =========================================================
   Start: Base Page Styles
   ========================================================= */
html {
  font-size: 16px;
  scroll-padding-top: var(--site-header-offset);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--site-header-offset);
  background: var(--page-bg);
  color: var(--text);
  font-family: Helvetica, Arial, sans-serif;
}

.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.text-measure {
  max-width: 900px;
  margin-left: 0;
}
/* End: Base Page Styles */

/* =========================================================
   Start: Header / Desktop Navigation
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem var(--site-gutter);
  border-bottom: 1px solid rgba(0, 119, 200, 0.18);
  background: var(--nav-bg);
  box-shadow: var(--shadow);
}

.site-logo img {
  display: block;
  width: auto;
  height: clamp(40px, 6vw, 70px);
}

.nav-toggle {
  display: none;
}

.site-nav .menu {
  gap: 1.65rem;
  margin: 0;
  background: transparent;
}

.site-nav a,
.mobile-menu a {
  position: relative;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  font-size: 1.15rem;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--pantone-3005c);
}

.site-nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.site-nav a::after {
  bottom: -10px;
  height: 5px;
  background: var(--pantone-116c);
}

.site-nav a:hover::after {
  width: 70%;
}

.nav-search-link {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(0, 119, 200, 0.2);
  border-radius: 999px;
  background: rgba(0, 119, 200, 0.08);
  color: var(--pantone-3005c);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-nav .nav-search-link:hover,
.site-nav .nav-search-link:focus {
  background: var(--pantone-3005c);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.14);
}

.nav-search-link i {
  font-size: 0.95rem;
  line-height: 1;
}

.nav-search-link::after {
  display: none;
}
/* End: Header / Desktop Navigation */

/* =========================================================
   Start: Tablet / Mobile Navigation Breakpoint
   ========================================================= */
@media (max-width: 1120px) {
  :root {
    --site-header-offset: 116px;
  }

  .site-header {
    justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .nav-toggle {
    position: absolute;
    left: var(--site-gutter);
    display: inline-block;
  }

  .site-nav {
    display: none;
  }
}
/* End: Tablet / Mobile Navigation Breakpoint */

/* =========================================================
   Start: Mobile Off-Canvas Navigation
   ========================================================= */
.menu-icon::after {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.8), 0 14px 0 rgba(0, 0, 0, 0.8);
}

.off-canvas {
  background-color: #e9edf2;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 119, 200, 0.09), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 119, 200, 0.075) 0, rgba(0, 119, 200, 0.075) 1px, transparent 1px, transparent 18px);
  transition: transform 0.35s ease;
}

.off-canvas.position-top {
  height: 50vh !important;
  max-height: 50vh !important;
  overflow-y: auto;
  background-color: #e9edf2 !important;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 119, 200, 0.09), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 119, 200, 0.075) 0, rgba(0, 119, 200, 0.075) 1px, transparent 1px, transparent 18px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999 !important;
}

.off-canvas-wrapper {
  overflow: visible !important;
}

.off-canvas-content {
  box-shadow: none !important;
}

.off-canvas .close-button {
  top: 1rem;
  right: var(--site-gutter);
  width: 44px;
  height: 44px;
  color: var(--text);
  line-height: 44px;
  text-align: center;
}

.off-canvas .close-button span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem 1rem;
}

.mobile-menu li {
  margin: 0.4rem 0;
}

.mobile-menu a {
  color: var(--text);
  padding: 0.75rem 0;
  font-size: 1.2rem;
}

.mobile-search-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-search-link i {
  font-size: 0.95rem;
  line-height: 1;
}

.mobile-menu a::after {
  bottom: -6px;
  height: 4px;
  background: var(--pantone-116c);
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  color: var(--pantone-3005c);
}

.mobile-menu a:hover::after {
  width: 60%;
}

.off-canvas.is-open .mobile-menu li {
  animation: fade-slide-in 0.3s ease forwards;
}
/* End: Mobile Off-Canvas Navigation */

/* =========================================================
   Start: PSAs by Topic — Desktop Dropdown
   ========================================================= */
.site-nav .menu > li.has-dropdown {
  position: relative;
}

.nav-caret {
  font-size: 0.65rem;
  margin-left: 0.25rem;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.25s ease;
}

.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.site-nav .nav-dropdown {
  position: absolute !important;
  top: calc(100% + 14px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-4px) !important;
  z-index: 4000;
  min-width: 155px;
  width: max-content;
  display: block !important;
  flex-direction: unset !important;
  margin: 0 !important;
  padding: 0.5rem 0 !important;
  list-style: none !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.97), rgba(7, 9, 13, 0.99));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.site-nav .nav-dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.site-nav .nav-dropdown > li {
  display: block !important;
  width: 100% !important;
  float: none !important;
}

.site-nav .nav-dropdown a {
  display: block !important;
  padding: 0.65rem 1.25rem !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav .nav-dropdown a::after {
  display: none !important;
}

.site-nav .nav-dropdown a:hover,
.site-nav .nav-dropdown a:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.site-nav .nav-dropdown a:focus-visible {
  outline: 2px solid var(--pantone-116c);
  outline-offset: -2px;
  border-radius: 4px;
}

.site-nav .nav-dropdown li.is-active a {
  color: var(--pantone-116c) !important;
  background: rgba(255, 205, 0, 0.06) !important;
}
/* End: PSAs by Topic — Desktop Dropdown */

/* =========================================================
   Start: PSAs by Topic — Mobile Submenu
   ========================================================= */

/* Hide the real checkbox — it's only used for state */
.mobile-submenu-checkbox {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* The label looks and acts like our old button */
.mobile-has-submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0.4rem 0;
}

.mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0;
  color: var(--text);
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
  transition: color 0.25s ease;
}

.mobile-submenu-toggle i {
  font-size: 0.72rem;
  position: relative;
  top: 1px;
  transition: transform 0.25s ease;
}

.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus {
  color: var(--pantone-3005c);
}

/* Submenu hidden by default */
.mobile-submenu {
  display: none;
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0;
  width: 100%;
  text-align: center;
}

/* CSS does the toggling — no JS needed */
.mobile-submenu-checkbox:checked ~ .mobile-submenu {
  display: block !important;
}

/* Rotate chevron when open */
.mobile-submenu-checkbox:checked ~ .mobile-submenu-toggle i {
  transform: rotate(180deg);
}

.mobile-submenu li {
  margin: 0.2rem 0 !important;
  display: block;
}

.mobile-submenu a {
  display: inline-block;
  padding: 0.45rem 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-submenu a::before {
  content: "—";
  margin-right: 0.4rem;
  color: var(--pantone-116c);
  font-weight: 900;
}

.mobile-submenu a::after {
  display: none !important;
}

.mobile-submenu a:hover,
.mobile-submenu a:focus {
  color: var(--pantone-3005c);
}
/* =========================================================
   End: PSAs by Topic — Mobile Submenu
   ========================================================= */

/* =========================================================
   Start: Hero Section
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(380px, 46vw, 560px);
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) var(--site-gutter);
  background: #0d1017;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(13, 16, 23, 0.96) 0%, rgba(13, 16, 23, 0.78) 42%, rgba(0, 119, 200, 0.2) 100%),
    url("../images/family_thumb.jpg") center right / cover no-repeat;
}

.hero::after {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 205, 0, 0.2), transparent 26%),
    linear-gradient(180deg, transparent 54%, rgba(13, 16, 23, 0.78) 100%);
}

.hero-text {
  max-width: min(820px, 100%);
  margin-left: 0;
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.hero-kicker,
.hero-heading {
  display: block;
}

.hero-kicker {
  margin-bottom: 0.75rem;
  color: var(--pantone-116c);
  font-size: clamp(2rem, 1.7vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-heading {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.case-exception {
  text-transform: lowercase;
}

.home-hero::before {
  background: linear-gradient(135deg, #0d1017 0%, #12314d 52%, #07111f 100%);
}

.home-hero::after {
  z-index: 1;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 205, 0, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(13, 16, 23, 0.98) 0%, rgba(13, 16, 23, 0.90) 36%, rgba(13, 16, 23, 0.28) 52%, rgba(0, 119, 200, 0.18) 100%),
    linear-gradient(180deg, transparent 58%, rgba(13, 16, 23, 0.60) 100%);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-campaign-collage {
  position: absolute;
  inset: 0 0 0 43%;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(0.75rem, 1.4vw, 1.25rem);
  row-gap: clamp(1.5rem, 2.5vw, 2.25rem);
  padding: clamp(3.5rem, 6vw, 6rem) var(--site-gutter) clamp(3.5rem, 6vw, 6rem) 0;
  opacity: 0.90;
  pointer-events: none;
  transform: rotate(-2deg) scale(1.04);
  transform-origin: center right;
}

.hero-campaign-collage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

/* Right column top image keeps its downward stagger */
.hero-campaign-collage img:nth-child(2) {
  transform: translateY(1.25rem);
}

/* Left column bottom image pulls UP to tighten with img 1 */
.hero-campaign-collage img:nth-child(3) {
  transform: translateY(-0.75rem);
}
/* End: Hero Section */

/* =========================================================
   Start: Shared Typography / Section Spacing
   ========================================================= */
.intro-section,
.broadcasters-section,
.submit-section {
  padding: 4rem 0;
}

.headline {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.headline-light {
  color: #fff;
}

.copy {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.6;
}
/* End: Shared Typography / Section Spacing */

/* =========================================================
   Start: About / Intro Section
   ========================================================= */
.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-copy {
  max-width: 760px;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.intro-points li {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid rgba(13, 16, 23, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 16, 23, 0.08);
}

.intro-points li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--pantone-116c);
}

.intro-points strong,
.intro-points span {
  display: block;
}

.intro-points strong {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 1rem;
}

.intro-points span {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.45;
}

.intro-visual {
  padding: 1rem;
  border-radius: 8px;
  background: #f1f4f7;
}

.intro-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.intro-image-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.intro-visual-caption {
  margin: 1rem 0 0;
  color: #555;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

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

  .intro-copy {
    max-width: none;
  }
}
/* End: About / Intro Section */

/* =========================================================
   Start: We Are Broadcasters Video Section
   ========================================================= */
.broadcasters-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #e9edf2;
  color: var(--text);
}

.broadcasters-section::before,
.broadcasters-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.broadcasters-section::before {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 119, 200, 0.09), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 119, 200, 0.075) 0, rgba(0, 119, 200, 0.075) 1px, transparent 1px, transparent 18px);
  opacity: 1;
}

.broadcasters-section::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%);
}

.broadcasters-section .grid-container {
  position: relative;
  z-index: 1;
}

.broadcasters-section .grid-x {
  row-gap: 2rem;
}

.video-wrapper {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.96), rgba(7, 9, 13, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.broadcasters-section .text-col {
  box-sizing: border-box;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.96), rgba(7, 9, 13, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.broadcasters-section .headline {
  color: #fff;
}

.broadcasters-section .copy {
  color: rgba(255, 255, 255, 0.9);
}

.broadcasters-button {
  display: inline-block;
  width: auto;
  min-width: 180px;
  margin-left: 0;
  margin-right: 0;
}
/* End: We Are Broadcasters Video Section */

/* =========================================================
   Start: Featured Campaign Cards
   ========================================================= */
.campaigns-section {
  padding: 4rem 0;
  background: var(--brand-bright-blue);
  text-align: center;
}

.campaigns-intro {
  max-width: 680px;
  margin: -0.5rem auto 2rem;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 275px));
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 1121px) {
  .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.image-card {
  display: flex;
  height: 300px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: var(--page-bg);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
  color: var(--text);
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image,
.card-content {
  display: flex;
  height: 50%;
  align-items: center;
  justify-content: center;
}

.card-image {
  overflow: hidden;
}

.card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  border-top: 4px solid var(--pantone-116c);
  padding: 1rem 1.25rem;
  text-align: center;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.campaign-carousel {
  --carousel-gap: 2rem;
  --carousel-per-view: 4;
  margin-top: 2rem;
}

.campaign-carousel-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.campaign-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carousel-button:hover,
.carousel-button:focus {
  background: var(--pantone-116c);
  color: #111;
  transform: translateY(-1px);
}

.carousel-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.carousel-status {
  min-width: 4.75rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.campaign-carousel-viewport {
  overflow: hidden;
}

.campaign-carousel-track {
  display: flex;
  justify-content: flex-start;
  gap: var(--carousel-gap);
  transition: transform 0.35s ease;
  will-change: transform;
}

.campaign-carousel-track .image-card {
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--carousel-per-view) - 1))) / var(--carousel-per-view));
}

@media (max-width: 1024px) {
  .campaign-carousel {
    --carousel-per-view: 2;
  }
}

@media (max-width: 640px) {
  .campaign-carousel {
    --carousel-gap: 1rem;
    --carousel-per-view: 1;
  }

  .campaign-carousel-header {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .campaign-carousel-track {
    transition: none;
  }
}
/* End: Featured Campaign Cards */

/* =========================================================
   Start: Submit PSA / FAQ and Need Help
   ========================================================= */
.submit-intro {
  max-width: 720px;
  margin: 0 0 1.5rem;
}

.submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  column-gap: clamp(2rem, 4vw, 4rem);
  margin-top: 1rem;
  row-gap: 2rem;
  align-items: start;
}

.faq-column {
  min-width: 0;
}

.accordion-title {
  border-left: 0;
  border-bottom: 2px solid var(--pantone-116c);
  background: #f1f4f7;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.accordion-title:hover,
.accordion-title:focus {
  background: var(--pantone-3005c);
  color: #fff;
}

.accordion-content {
  background: var(--page-bg);
  padding: 1rem 1.25rem;
}

.accordion-title-long {
  line-height: 1.45;
}

.accordion-title-long span {
  display: block;
  margin-top: 0.25rem;
}

.spec-list {
  margin-left: 1.25rem;
  line-height: 1.6;
}

.spec-list li {
  margin-bottom: 0.25rem;
}

.help-column {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1.5rem;
}

.help-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.96), rgba(7, 9, 13, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.help-card .headline {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
}

.help-card .copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.help-card a:not(.button) {
  color: var(--pantone-116c);
  font-weight: 700;
}

.help-card a:not(.button):hover,
.help-card a:not(.button):focus {
  color: #fff;
}

.support-button {
  display: block;
  width: min(100%, 220px);
  margin: 1.5rem 0 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: var(--pantone-3005c);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.support-button:hover,
.support-button:focus {
  background: var(--brand-blue);
  color: #fff;
}

.support-button.broadcasters-button {
  display: inline-block;
  width: auto;
  min-width: 180px;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1024px) {
  .submit-layout,
  .all-campaigns-layout {
    grid-template-columns: 1fr;
  }

  .help-column {
    position: static;
  }
}

/* End: Submit PSA / FAQ and Need Help */

/* =========================================================
   Start: Submit Section Panel — Option A
   ========================================================= */

.submit-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(13, 16, 23, 0.08);
  border-radius: 8px;
  background-color: #e9edf2;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 119, 200, 0.09), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 119, 200, 0.075) 0, rgba(0, 119, 200, 0.075) 1px, transparent 1px, transparent 18px);
}

/* Each accordion item floats as its own card on the textured panel */
.submit-panel .accordion-item {
  margin-bottom: 0.85rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(13, 16, 23, 0.07);
}

.submit-panel .accordion-item:last-child {
  margin-bottom: 0;
}

.submit-panel .accordion-title {
  background: rgba(255, 255, 255, 0.96);
}

.submit-panel .accordion-content {
  background: #fff;
}

@media (max-width: 640px) {
  .submit-panel {
    padding: 1.25rem;
  }
}

.submit-panel .accordion-title:hover,
.submit-panel .accordion-title:focus {
  background: var(--pantone-3005c);
  color: #fff;
}
/* End: Submit Section Panel — Option A */



/* =========================================================
   Start: Footer
   ========================================================= */
.footer-bar {
  padding: 4rem 0;
  background: var(--brand-blue);
  color: #fff;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}

.footer-bar p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-copyright,
.footer-links {
  display: inline;
}

.footer-bar a {
  margin: 0 0.25rem;
  color: var(--brand-yellow);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bar a:hover {
  color: #fff;
}
/* End: Footer */

/* =========================================================
   Start: Animations
   ========================================================= */
@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End: Animations */

/* =========================================================
   Start: All Campaigns Page
   ========================================================= */
.grid-container2 {
  display: none;
}

.campaign-list-section {
  padding: 4rem 0;
  background: var(--page-bg);
}

.campaign-list-section .site-container {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(13, 16, 23, 0.08);
  background-color: #e9edf2;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 119, 200, 0.09), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 119, 200, 0.075) 0, rgba(0, 119, 200, 0.075) 1px, transparent 1px, transparent 18px);
}

.campaign-list-header {
  max-width: 820px;
  margin-bottom: 2rem;
}

.campaign-list-header .copy {
  margin-bottom: 0;
}

.all-campaigns-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.campaign-list-column {
  min-width: 0;
}

.campaign-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.campaign-item {
  border-left: 4px solid var(--pantone-116c);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(13, 16, 23, 0.06);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.campaign-item span,
.campaign-item a {
  display: block;
  padding: 1.15rem 1.25rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease;
}

.campaign-item:hover,
.campaign-item:focus-within {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(13, 16, 23, 0.1);
}

.campaign-item:hover span,
.campaign-item:hover a,
.campaign-item:focus-within span,
.campaign-item:focus-within a {
  color: var(--pantone-3005c);
}

.campaign-item a:focus-visible {
  outline: 3px solid var(--pantone-116c);
  outline-offset: 3px;
}
/* End: All Campaigns Page */

/* =========================================================
   Start: Search Page
   ========================================================= */
.search-section {
  padding: 4rem 0;
  background: var(--page-bg);
}

.search-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(13, 16, 23, 0.08);
  background-color: #e9edf2;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 119, 200, 0.09), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 119, 200, 0.075) 0, rgba(0, 119, 200, 0.075) 1px, transparent 1px, transparent 18px);
}

.search-panel-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.search-form {
  max-width: 880px;
  margin: 0 0 2.5rem;
}

.search-field-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.55rem;
  border: 1px solid rgba(13, 16, 23, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(13, 16, 23, 0.08);
}

.search-field-wrap i {
  padding-left: 0.9rem;
  color: var(--pantone-3005c);
  font-size: 1.1rem;
}

.search-field-wrap input[type="search"] {
  height: 2.75rem;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  font-size: 1rem;
}

.search-field-wrap input[type="search"]:disabled {
  opacity: 1;
  cursor: default;
}

.search-submit-demo {
  min-width: 120px;
  margin: 0;
  border-radius: 999px;
  background: var(--pantone-3005c);
  color: #fff;
  font-weight: 800;
}

.search-submit-demo:disabled {
  opacity: 1;
  cursor: default;
}

.search-subhead {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
}

.quick-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.quick-links-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(0, 119, 200, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--pantone-3005c);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(13, 16, 23, 0.06);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.quick-links-grid a:hover,
.quick-links-grid a:focus {
  background: var(--pantone-3005c);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .search-section {
    padding: 3rem 0;
  }

  .search-field-wrap {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 18px;
  }

  .search-submit-demo {
    grid-column: 1 / -1;
    width: 100%;
  }
}
/* End: Search Page */

/* =========================================================
   Start: Topics Page
   ========================================================= */
.topics-hero::before {
  background: linear-gradient(135deg, #05070a 0%, #0d1017 42%, #12314d 72%, #07111f 100%);
}

.topics-hero::after {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 205, 0, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(13, 16, 23, 0.98) 0%, rgba(13, 16, 23, 0.86) 38%, rgba(13, 16, 23, 0.52) 70%, rgba(0, 119, 200, 0.26) 100%),
    linear-gradient(180deg, transparent 54%, rgba(13, 16, 23, 0.8) 100%);
}

.hero-topic-collage {
  position: absolute;
  inset: 8% var(--site-gutter) 8% 48%;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.15rem);
  opacity: 0.78;
  pointer-events: none;
  transform: rotate(-2deg) scale(1.03);
  transform-origin: center right;
}

.hero-topic-collage span {
  display: grid;
  min-height: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 205, 0, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(22, 26, 34, 0.95), rgba(7, 9, 13, 0.96));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.hero-topic-collage i {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-topic-collage span:nth-child(2),
.hero-topic-collage span:nth-child(5),
.hero-topic-collage span:nth-child(8) {
  transform: translateY(1.1rem);
}

.topics-section {
  padding: 4rem 0;
  background: var(--page-bg);
}

.topics-section .site-container {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(13, 16, 23, 0.08);
  background-color: #e9edf2;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 119, 200, 0.09), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 119, 200, 0.075) 0, rgba(0, 119, 200, 0.075) 1px, transparent 1px, transparent 18px);
}

.topics-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.topics-header .copy {
  margin-bottom: 0;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-card a {
  display: grid;
  grid-template-rows: minmax(190px, 1fr) auto;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.96), rgba(7, 9, 13, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topic-icon {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(0, 119, 200, 0.34), rgba(13, 16, 23, 0.98));
}

.topic-icon i {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(3rem, 6vw, 4.25rem);
}

.topic-title {
  display: grid;
  min-height: 74px;
  place-items: center;
  border-top: 4px solid var(--pantone-116c);
  padding: 1rem;
  background: var(--page-bg);
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.25;
}

.topic-card a:hover,
.topic-card a:focus {
  color: var(--text);
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.topic-card a:focus-visible {
  outline: 3px solid var(--pantone-116c);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .topics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topics-section {
    padding: 3rem 0;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .topic-card a {
    min-height: 240px;
  }
}
/* End: Topics Page */

/* =========================================================
   Start: Topic Detail Pages
   ========================================================= */
.topic-detail-section {
  padding: 4rem 0;
  background: var(--page-bg);
}

.education-page .topic-detail-section,
.diversity-page .topic-detail-section,
.family-community-page .topic-detail-section,
.health-page .topic-detail-section {
  background: var(--page-bg);
}

.topic-content-panel {
  --topic-panel-padding: clamp(1.5rem, 3vw, 2.5rem);
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  margin-right: clamp(1rem, 3vw, 3rem);
  padding: var(--topic-panel-padding);
  border: 1px solid rgba(13, 16, 23, 0.08);
  background-color: #e9edf2;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 119, 200, 0.09), transparent 28%),
    repeating-linear-gradient(135deg, rgba(0, 119, 200, 0.075) 0, rgba(0, 119, 200, 0.075) 1px, transparent 1px, transparent 18px);
}

.topic-detail-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.topic-detail-header .copy {
  margin-bottom: 0;
}

.topic-back-link {
  margin: 0 0 0.75rem;
}

.topic-back-link a {
  color: var(--pantone-3005c);
  font-weight: 800;
  text-decoration: none;
}

.topic-back-link a:hover,
.topic-back-link a:focus {
  color: var(--brand-blue);
}

.topic-campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 275px));
  justify-content: center;
  gap: 2rem;
}

.topic-campaign-card {
  width: 100%;
}

.topic-campaign-card .card-content {
  padding: 0.85rem 0.95rem;
}

.topic-campaign-card .card-title {
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.22;
}

.topic-placeholder-image {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 205, 0, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(0, 119, 200, 0.34), rgba(13, 16, 23, 0.98));
}

.topic-placeholder-image i {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(3rem, 6vw, 4.25rem);
}

@media (max-width: 640px) {
  .topic-detail-section {
    padding: 3rem 0;
  }

  .topic-content-panel {
    display: block;
    margin-right: 0;
  }

  .topic-campaign-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }
}
/* End: Topic Detail Pages */

/* =========================================================
   Start: Expiration Demo Page
   ========================================================= */
.expiration-demo-note {
  font-size: 1rem;
}

.expiration-demo-summary {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--pantone-116c);
  background: #fff;
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(13, 16, 23, 0.08);
}

.expiration-demo-manual-link,
.expiration-demo-expired-callout {
  max-width: 720px;
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--pantone-116c);
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 16, 23, 0.08);
}

.expiration-demo-manual-link strong,
.expiration-demo-expired-callout strong,
.expiration-demo-expired-callout span {
  display: block;
}

.expiration-demo-manual-link strong,
.expiration-demo-expired-callout strong {
  margin-bottom: 0.25rem;
  color: var(--text);
  font-weight: 800;
}

.expiration-demo-manual-link a {
  color: var(--pantone-3005c);
  font-weight: 800;
  text-decoration: none;
}

.expiration-demo-manual-link a:hover,
.expiration-demo-manual-link a:focus {
  color: var(--brand-blue);
}

.expiration-demo-expired-callout {
  border-left-color: #d33;
}

.expiration-demo-expired-callout span {
  color: #555;
}

.expiration-demo-subhead {
  margin: 2rem 0 1rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
}

.expiration-demo-list {
  max-width: 720px;
}
/* End: Expiration Demo Page */

/* =========================================================
   Start: Spot Campaign Detail Page
   ========================================================= */
.spot-detail-page {
  background: #0d1017;
  color: #fff;
}

.spot-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(560px, 58vw, 720px);
  background: #0d1017;
}

.spot-hero::before,
.spot-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.spot-hero::before {
  background:
    linear-gradient(90deg, rgba(13, 16, 23, 0.98) 0%, rgba(13, 16, 23, 0.86) 34%, rgba(0, 119, 200, 0.2) 100%),
    url("../images/AIS_JustListen_thumb.jpg") center right / cover no-repeat;
}

.spot-hero::after {
  background:
    radial-gradient(circle at 62% 24%, rgba(255, 205, 0, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 56%, #0d1017 100%);
}

.spot-campaign-drug-impaired .spot-hero::before {
  background:
    linear-gradient(90deg, rgba(13, 16, 23, 0.98) 0%, rgba(13, 16, 23, 0.86) 34%, rgba(0, 119, 200, 0.2) 100%),
    url("../images/AdCouncil_Drug-Impaired_DrivingPrevention.png") center right / cover no-repeat;
}

.spot-campaign-summer-reading .spot-hero::before {
  background:
    linear-gradient(90deg, rgba(13, 16, 23, 0.98) 0%, rgba(13, 16, 23, 0.84) 38%, rgba(0, 119, 200, 0.16) 100%),
    url("../images/summer-reading-program-white-house.png") center right / cover no-repeat;
}

.spot-campaign-template .spot-hero::before {
  background:
    linear-gradient(90deg, rgba(13, 16, 23, 0.98) 0%, rgba(13, 16, 23, 0.84) 42%, rgba(0, 119, 200, 0.18) 100%),
    linear-gradient(135deg, #0d1017 0%, #12314d 52%, #07111f 100%);
}
.spot-campaign-world-of-possibilities { --spot-hero-image: url("../images/diversity-world-of-possibilities.jpg"); }
.spot-campaign-end-family-fire { --spot-hero-image: url("../images/safety-family-community-end-family-fire.jpg"); }
.spot-campaign-distracted-driving { --spot-hero-image: url("../images/distracted-driving-prevention.jpg"); }
.spot-campaign-buzzed-driving { --spot-hero-image: url("../images/safety-buzzed-driving-prevention.jpg"); }
.spot-campaign-connect-more { --spot-hero-image: url("../images/family-community-connect-more.jpg"); }
.spot-campaign-guide-dog-foundation { --spot-hero-image: url("../images/family-community-guide-dog-foundation-americas-vetdogs.jpg"); }
.spot-campaign-light-the-night { --spot-hero-image: url("../images/family-community-light-the-night.jpg"); }
.spot-campaign-national-stillbirth { --spot-hero-image: url("../images/family-community-national-stillbirth-prevention.svg"); }
.spot-campaign-operation-homefront { --spot-hero-image: url("../images/family-community-operation-homefront.jpg"); }
.spot-campaign-overwhelmed { --spot-hero-image: url("../images/family-community-overwhelmed.jpg"); }
.spot-campaign-parenting-quiz-cab { --spot-hero-image: url("../images/family-community-parenting-quiz-cab.jpg"); }
.spot-campaign-phony-influencer { --spot-hero-image: url("../images/family-community-phony-influencer.jpg"); }
.spot-campaign-piling-up { --spot-hero-image: url("../images/family-community-piling-up.jpg"); }
.spot-campaign-your-head { --spot-hero-image: url("../images/family-community-your-head.jpg"); }
.spot-campaign-health-biosimilars-fda { --spot-hero-image: url("../images/health-biosimilars-fda.jpg"); }
.spot-campaign-health-breast-cancer-screening-spanish { --spot-hero-image: url("../images/health-breast-cancer-screening-spanish.svg"); }
.spot-campaign-health-heatstroke-prevention { --spot-hero-image: url("../images/health-heatstroke-prevention.jpg"); }
.spot-campaign-health-lung-cancer-screening { --spot-hero-image: url("../images/health-lung-cancer-screening.jpg"); }
.spot-campaign-health-national-breast-cancer-foundation-spanish { --spot-hero-image: url("../images/health-national-breast-cancer-foundation-spanish.jpg"); }
.spot-campaign-health-national-stillbirth-prevention-awareness-day { --spot-hero-image: url("../images/health-national-stillbirth-prevention.svg"); }
.spot-campaign-health-no-time-for-flu { --spot-hero-image: url("../images/health-no-time-for-flu.jpg"); }
.spot-campaign-health-stop-cancer-fund { --spot-hero-image: url("../images/health-stop-cancer-fund.jpg"); }
.spot-campaign-health-substance-use-disorder { --spot-hero-image: url("../images/health-substance-use-disorder.svg"); }
.spot-campaign-health-teen-mental-health { --spot-hero-image: url("../images/health-teen-mental-health.jpg"); }
.spot-campaign-microplastics { --spot-hero-image: url("../images/health-substance-use-disorder.svg"); }
.spot-campaign-alzheimers-awareness { --spot-hero-image: url("../images/health-alzheimers-awareness.jpg"); }
.spot-campaign-veterans-crisis-prevention { --spot-hero-image: url("../images/veterans-crisis-prevention.jpg"); }




.spot-campaign-custom .spot-hero::before {
  background:
    linear-gradient(90deg, rgba(13, 16, 23, 0.98) 0%, rgba(13, 16, 23, 0.84) 38%, rgba(0, 119, 200, 0.16) 100%),
    var(--spot-hero-image) center right / cover no-repeat;
}

.spot-hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(100%, 1280px);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) var(--site-gutter) clamp(7rem, 10vw, 9rem);
}

.spot-hero-content {
  max-width: 430px;
}

.spot-kicker,
.spot-provider,
.spot-note {
  margin: 0;
}

.spot-kicker {
  color: var(--pantone-116c);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spot-title {
  margin: 0.55rem 0 0.15rem;
  color: #fff;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.spot-provider {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.5rem;
  font-weight: 700;
}

.spot-title.is-long {
  font-size: clamp(2.7rem, 5.8vw, 5.2rem);
  line-height: 0.95;
}

.spot-title.is-extra-long {
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
  line-height: 1;
}

.spot-meta-panel {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.spot-meta-panel div {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 1rem;
  align-items: baseline;
}

.spot-meta-panel dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spot-meta-panel dd {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.spot-meta-panel .spot-expiration {
  color: #ff4b4b;
  font-weight: 800;
}

.spot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.spot-expired-callout {
  flex: 1 1 100%;
  max-width: 430px;
  padding: 0.95rem 1rem;
  border-left: 4px solid #ff4b4b;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.spot-expired-callout strong,
.spot-expired-callout span {
  display: block;
}

.spot-expired-callout strong {
  margin-bottom: 0.2rem;
  font-weight: 800;
}

.spot-expired-callout span {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.35;
}

.spot-download-button,
.spot-action-button {
  margin: 0;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.spot-download-button {
  padding: 1rem 1.5rem;
  background: var(--pantone-116c);
  color: #111;
}

.spot-download-button:hover,
.spot-download-button:focus {
  background: #1779ba;
  color: #fff;
}

.spot-action-button {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

.spot-action-button:hover,
.spot-action-button:focus {
  background: var(--pantone-3005c);
  color: #fff;
}

.spot-note {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.spot-hero-lockup {
  justify-self: end;
  max-width: 720px;
  color: #fff;
  text-align: right;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.spot-hero-lockup span,
.spot-hero-lockup strong {
  display: block;
}

.spot-hero-lockup span {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
}

.spot-hero-lockup strong {
  font-size: clamp(3.6rem, 9vw, 7.8rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.spot-detail-section {
  position: relative;
  z-index: 2;
  margin-top: -5.5rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.spot-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(320px, 1fr);
  gap: 1rem;
  align-items: start;
}

.spot-info-card,
.spot-stat-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.96), rgba(7, 9, 13, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.spot-info-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.spot-card-title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
}

.spot-info-card p {
  max-width: 860px;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
}

.spot-info-card p:last-child {
  margin-bottom: 0;
}

.spot-stat-card {
  display: grid;
  min-height: 280px;
}

.spot-media-column {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  width: 100%;
  max-width: 640px;
  align-self: start;
}

.spot-video-card {
  width: 100%;
  max-width: 640px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  align-self: start;
}

.spot-media-label {
  padding: 0.75rem 1rem 0;
  color: var(--pantone-116c);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.spot-media-label + .spot-video-frame,
.spot-media-label + .spot-audio-frame {
  margin-top: 0.75rem;
}

.spot-video-frame {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #05070a;
}

.spot-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.spot-audio-card {
  width: 100%;
  max-width: 640px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  align-self: start;
}

.spot-audio-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #05070a;
}

.spot-audio-frame iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
}

.spot-audio-credit {
  overflow: hidden;
  padding: 0.7rem 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spot-audio-credit a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.spot-audio-credit a:hover,
.spot-audio-credit a:focus {
  color: var(--pantone-116c);
}

.spot-media-placeholder {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.spot-video-frame.spot-media-placeholder {
  aspect-ratio: 16 / 9;
}

.spot-audio-frame.spot-media-placeholder {
  min-height: 300px;
}

.spot-placeholder-text strong,
.spot-placeholder-text span {
  display: block;
}

.spot-placeholder-text strong {
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.spot-placeholder-text span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .spot-hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .spot-hero-lockup {
    justify-self: start;
    max-width: 680px;
    text-align: left;
  }

  .spot-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .spot-hero {
    min-height: auto;
  }

  .spot-hero::before {
    background:
      linear-gradient(180deg, rgba(13, 16, 23, 0.78) 0%, rgba(13, 16, 23, 0.96) 72%),
      url("../images/AIS_JustListen_thumb.jpg") center top / cover no-repeat;
  }

  .spot-campaign-drug-impaired .spot-hero::before {
    background:
      linear-gradient(180deg, rgba(13, 16, 23, 0.78) 0%, rgba(13, 16, 23, 0.96) 72%),
      url("../images/AdCouncil_Drug-Impaired_DrivingPrevention.png") center top / cover no-repeat;
  }

  .spot-campaign-summer-reading .spot-hero::before {
    background:
      linear-gradient(180deg, rgba(13, 16, 23, 0.72) 0%, rgba(13, 16, 23, 0.96) 72%),
      url("../images/summer-reading-program-white-house.png") center top / cover no-repeat;
  }

  .spot-campaign-template .spot-hero::before {
    background:
      linear-gradient(180deg, rgba(13, 16, 23, 0.72) 0%, rgba(13, 16, 23, 0.96) 72%),
      linear-gradient(135deg, #0d1017 0%, #12314d 52%, #07111f 100%);
  }

  .spot-campaign-custom .spot-hero::before {
    background:
      linear-gradient(180deg, rgba(13, 16, 23, 0.74) 0%, rgba(13, 16, 23, 0.96) 72%),
      var(--spot-hero-image) center top / cover no-repeat;
  }

  .spot-hero-inner {
    padding-top: 3rem;
    padding-bottom: 7rem;
  }

  .spot-meta-panel div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .spot-download-button {
    width: 100%;
    text-align: center;
  }

  .spot-action-button {
    flex: 1 1 calc(50% - 0.65rem);
    text-align: center;
  }

  .spot-hero-lockup strong {
    font-size: clamp(2.9rem, 16vw, 4.5rem);
  }

  .spot-detail-section {
    margin-top: -4.5rem;
  }
}
/* End: Spot Campaign Detail Page */

/* =========================================================
   Start: Mobile Layout Adjustments
   ========================================================= */
@media (max-width: 640px) {
  :root {
    --site-header-offset: 82px;
  }

  .site-header {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .hero {
    align-items: flex-end;
    min-height: 420px;
    padding: 4rem var(--site-gutter) 3rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 16, 23, 0.72) 0%, rgba(13, 16, 23, 0.96) 78%),
      url("../images/homefront-military-families.png") center top / cover no-repeat;
  }

  .home-hero::before {
    background: linear-gradient(135deg, #0d1017 0%, #12314d 52%, #07111f 100%);
  }

  .home-hero .hero-campaign-collage {
    inset: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 1rem;
    opacity: 0.42;
    transform: none;
  }

  .home-hero .hero-campaign-collage img {
    border-radius: 6px;
  }

  .home-hero .hero-campaign-collage img:nth-child(2),
  .home-hero .hero-campaign-collage img:nth-child(3) {
    transform: none;
  }

  .topics-hero .hero-topic-collage {
    inset: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 1rem;
    opacity: 0.34;
    transform: none;
  }

  .topics-hero .hero-topic-collage span {
    min-height: 90px;
  }

  .topics-hero .hero-topic-collage span:nth-child(2),
  .topics-hero .hero-topic-collage span:nth-child(5),
  .topics-hero .hero-topic-collage span:nth-child(8) {
    transform: none;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-heading {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .intro-section,
  .broadcasters-section,
  .submit-section,
  .campaigns-section {
    padding: 3rem 0;
  }

  .intro-points {
    grid-template-columns: 1fr;
  }

  .all-campaigns-layout {
    grid-template-columns: 1fr;
  }

  .all-campaigns-layout .help-column {
    position: static;
  }

  .broadcasters-section .grid-container,
  .broadcasters-section .cell {
    padding-left: 0;
    padding-right: 0;
  }

  .broadcasters-section .grid-x {
    margin-left: 0;
    margin-right: 0;
  }

  .video-wrapper {
    border-radius: 0;
  }

  .broadcasters-section .text-col {
    box-sizing: border-box;
    padding: 2rem var(--site-gutter);
    border-radius: 0;
  }

  .broadcasters-section .copy {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-card {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .accordion {
    width: calc(100% + 2rem);
    margin-left: -1rem;
  }

  .accordion-title,
  .accordion-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .accordion-title-long {
    padding-right: 3.25rem;
  }

  .footer-copyright,
  .footer-links {
    display: block;
  }

  .footer-links {
    margin-top: 0.75rem;
  }
}
/* End: Mobile Layout Adjustments */

/* =========================================================
   Start: Reduced Motion Accessibility
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* End: Reduced Motion Accessibility */
