/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: #0F4D6B;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #5092B3;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #0F4D6B;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #0F4D6B;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #0F4D6B;
}

.site-brand:hover {
  color: #0F4D6B;
}

.site-logo {
  width: 55px;
  height: 55px;
}

.site-title-group {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.site-subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0F4D6B;
  white-space: nowrap;
}

.nav-link:hover {
  color: #5092B3;
}

/* Caret affordance for nav items that have a dropdown */
.nav-item:has(> .dropdown-menu) > .nav-link {
  position: relative;
  padding-right: 1.5rem;
}

.nav-item:has(> .dropdown-menu) > .nav-link::before {
  content: "";
  position: absolute;
  right: 0.55rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  opacity: 0.55;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-item:has(> .dropdown-menu):hover > .nav-link::before,
.nav-item.dropdown-open > .nav-link::before {
  transform: translateY(-30%) rotate(225deg);
  opacity: 1;
}

.nav-item.active > .nav-link {
  color: #5092B3;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  min-width: 240px;
  z-index: 100;
  list-style: none;
}

.nav-item:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #0F4D6B;
  border-bottom: 1px solid #f4f6f8;
}

.dropdown-menu a:hover {
  background: #f4f6f8;
  color: #5092B3;
}

/* Current-page highlight inside dropdowns — spatial awareness */
.dropdown-menu a[aria-current="page"] {
  background: #eef4f8;
  color: #0F4D6B;
  font-weight: 500;
  box-shadow: inset 3px 0 0 #5092B3;
  padding-left: calc(1rem + 3px);
}
.dropdown-menu a[aria-current="page"]:hover {
  background: #e3edf3;
  color: #0F4D6B;
}

/* Indicate the section that contains the current page on the top-level link */
.nav-item.has-current > .nav-link {
  color: #5092B3;
}
.nav-item.has-current > .nav-link::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px auto 0;
  background: #5092B3;
  border-radius: 1px;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #0F4D6B;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s;
}

/* ===== HERO / HOMEPAGE ===== */
.hero {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f4f6f8 0%, #fff 100%);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #5092B3;
}

/* Slideshow */
.slideshow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slideshow img {
  width: 100%;
  display: none;
  border-radius: 8px;
}

.slideshow img.active {
  display: block;
}

.slideshow-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: #0F4D6B;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.slideshow-btn:hover {
  background: #5092B3;
  color: #fff;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, #0F4D6B 0%, #5092B3 100%);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  font-size: 2.5rem;
}

/* ===== CONTENT ===== */
.content {
  padding: 3rem 0;
}

.content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-body p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-body img.article-image {
  float: right;
  max-width: 350px;
  margin: 0 0 1.5rem 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== ABOUT THE SPEAKER ===== */
.speaker-section {
  padding: 3.5rem 1.5rem;
  background: #f4f6f8;
}

.speaker-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.speaker-photo {
  flex: 0 0 38%;
  max-width: 420px;
}

.speaker-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  filter: saturate(0.9) contrast(1.05);
}

.speaker-quote {
  margin: 1.5rem 0 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  border-left: 3px solid #86aa10;
}

.speaker-quote p {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 1.4;
  color: #0F4D6B;
  margin: 0;
}

.speaker-bio {
  flex: 1;
  min-width: 0;
}

.speaker-bio h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.75rem;
  color: #0F4D6B;
  margin: 0 0 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.speaker-role {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 1.5rem;
}

.speaker-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-top: 1px solid rgba(15, 77, 107, 0.18);
  border-bottom: 1px solid rgba(15, 77, 107, 0.18);
}

.speaker-credentials li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.25rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #0F4D6B;
  border-bottom: 1px dotted rgba(15, 77, 107, 0.12);
}

.speaker-credentials li:last-child {
  border-bottom: none;
}

.speaker-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #86aa10;
  border-radius: 50%;
}

.speaker-bio p {
  color: #0F4D6B;
  line-height: 1.65;
  font-size: 1.0625rem;
  margin: 0 0 1.25rem;
  max-width: 62ch;
}

.speaker-bio p:last-of-type {
  margin-bottom: 0;
}

.speaker-cta {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.speaker-btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.speaker-btn-primary {
  background: #0F4D6B;
  color: #fff;
}

.speaker-btn-primary:hover {
  background: #5092B3;
  color: #fff;
}

.speaker-btn-secondary {
  background: transparent;
  color: #0F4D6B;
  border-color: #0F4D6B;
}

.speaker-btn-secondary:hover {
  background: #0F4D6B;
  color: #fff;
}

/* ===== ABOUT: VIDEOS ===== */
.speaker-videos {
  position: relative;
  padding: 5rem 1.5rem 5.5rem;
  background:
    linear-gradient(180deg, rgba(15,77,107,0.04) 0%, rgba(15,77,107,0) 30%),
    #fff;
  border-top: 1px solid rgba(15, 77, 107, 0.12);
}

.speaker-videos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(15, 77, 107, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0) 60%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.speaker-videos-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.speaker-videos-head {
  max-width: 720px;
  margin: 0 0 2.75rem;
}

.speaker-videos-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #86aa10;
  margin-bottom: 1rem;
}

.speaker-videos-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.15;
  color: #0F4D6B;
  margin: 0 0 0.875rem;
  letter-spacing: -0.005em;
}

.speaker-videos-lede {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(15, 77, 107, 0.78);
  margin: 0;
  max-width: 60ch;
}

.speaker-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
}

.speaker-video-card {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.speaker-video-frame {
  position: relative;
  aspect-ratio: 438 / 330;
  background: #0F4D6B;
  overflow: hidden;
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(15, 77, 107, 0.06),
    0 18px 36px -22px rgba(15, 77, 107, 0.45);
  isolation: isolate;
}

.speaker-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 77, 107, 0.18);
  border-radius: 4px;
  pointer-events: none;
}

.speaker-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0F4D6B;
}

.speaker-video-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: baseline;
  margin-top: 1.125rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 77, 107, 0.18);
}

.speaker-video-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  color: #86aa10;
  align-self: center;
  grid-row: 1 / span 2;
}

.speaker-video-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  color: #0F4D6B;
  margin: 0 0 0.25rem;
  letter-spacing: 0.005em;
}

.speaker-video-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(15, 77, 107, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* ===== TOPICS COVERED ===== */
.topics-page {
  background: #fff;
}

.page-hero {
  background: #f4f6f8;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
}

.page-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 0.875rem;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 3.25rem;
  color: #0F4D6B;
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.page-intro {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(15, 77, 107, 0.78);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.topics-quote-section {
  padding: 4rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid rgba(15, 77, 107, 0.1);
}

.topics-feature-quote {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  position: relative;
}

.topics-feature-quote::before {
  content: "\201C";
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 5rem;
  line-height: 0.8;
  color: #86aa10;
  margin-bottom: 0.5rem;
}

.topics-feature-quote p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.5;
  color: #0F4D6B;
  margin: 0 0 1.25rem;
}

.topics-feature-quote figcaption {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.6);
}

.topics-feature-quote figcaption::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(15, 77, 107, 0.4);
  vertical-align: middle;
  margin-right: 0.75rem;
  margin-bottom: 3px;
}

.topics-series {
  padding: 4.5rem 1.5rem;
  background: #fff;
}

.topics-series-alt {
  background: #f4f6f8;
}

.topics-series-header {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.topics-series-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 0.625rem;
}

.topics-series-header h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: #0F4D6B;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.topics-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56rem;
  border-top: 1px solid rgba(15, 77, 107, 0.18);
}

.topics-list-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid rgba(15, 77, 107, 0.12);
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.topics-list-item:hover {
  background: rgba(134, 170, 16, 0.06);
  padding-left: 1rem;
}

.topics-list-num {
  flex: 0 0 2.75rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 1.625rem;
  color: rgba(15, 77, 107, 0.4);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.topics-list-title {
  flex: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.1875rem;
  color: #0F4D6B;
  line-height: 1.3;
}

.topics-list-emphasis {
  flex: 0 0 auto;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #86aa10;
  text-align: right;
  min-width: 5rem;
}

.topics-list-emphasis:empty {
  visibility: hidden;
}

.topics-additional {
  padding: 4rem 1.5rem;
  background: #fff;
  border-top: 1px solid rgba(15, 77, 107, 0.1);
}

.topics-additional-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.topics-additional-list li {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #0F4D6B;
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid rgba(15, 77, 107, 0.18);
  border-radius: 2px;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.topics-additional-list li::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: #86aa10;
}

.topics-additional-list li:hover {
  border-color: #86aa10;
  transform: translateY(-2px);
}

.page-cta-section {
  background: #0F4D6B;
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.page-cta-section h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.page-cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin: 0 0 1.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.page-cta-row {
  display: inline-flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
}

.page-cta-section .speaker-btn-primary {
  background: #86aa10;
  color: #fff;
}

.page-cta-section .speaker-btn-primary:hover {
  background: #6d8c0d;
  color: #fff;
}

.page-cta-section .speaker-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.page-cta-section .speaker-btn-secondary:hover {
  background: #fff;
  color: #0F4D6B;
  border-color: #fff;
}

/* ===== GOOD NEWS NETWORK ===== */
.gnn-page {
  background: #fff;
}

.gnn-hero {
  position: relative;
  padding-bottom: 4rem;
  overflow: hidden;
}

.gnn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(80, 146, 179, 0.12), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(134, 170, 16, 0.08), transparent 60%);
  pointer-events: none;
}

.gnn-hero > * {
  position: relative;
}

.gnn-hero h1 {
  font-size: 3.75rem;
}

.gnn-hero-mark {
  margin: 2.25rem auto 0;
  max-width: 280px;
  padding: 0;
}

.gnn-hero-mark a {
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gnn-hero-mark a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.gnn-hero-mark img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  border-radius: 2px;
}

.gnn-hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.gnn-listen-live {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.375rem;
  background: #0F4D6B;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 77, 107, 0.18);
}

.gnn-listen-live:hover {
  background: #5092B3;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 77, 107, 0.22);
}

.gnn-listen-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a4e;
  box-shadow: 0 0 0 0 rgba(255, 90, 78, 0.6);
  animation: gnn-pulse 1.6s ease-out infinite;
}

@keyframes gnn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 90, 78, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 90, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 78, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .gnn-listen-live-dot { animation: none; }
}

/* Schedule */
.gnn-schedule {
  padding: 5rem 1.5rem 5.5rem;
  background: #fff;
  border-top: 1px solid rgba(15, 77, 107, 0.08);
}

.gnn-schedule-head {
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.gnn-schedule-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: #0F4D6B;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.gnn-schedule-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gnn-schedule-card {
  position: relative;
  padding: 2.5rem 1.75rem 2rem;
  background: #f4f6f8;
  border-top: 2px solid #86aa10;
  text-align: center;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.gnn-schedule-card:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 77, 107, 0.08);
}

.gnn-schedule-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  color: rgba(15, 77, 107, 0.35);
  font-variant-numeric: tabular-nums;
}

.gnn-schedule-day {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 1rem;
}

.gnn-schedule-time {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 4rem;
  color: #0F4D6B;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.gnn-schedule-colon {
  display: inline-block;
  margin: 0 0.05em;
  color: #86aa10;
  font-weight: 300;
}

.gnn-schedule-meridiem {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.55);
  margin-left: 0.4em;
  vertical-align: 0.45em;
}

.gnn-schedule-period {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(15, 77, 107, 0.65);
  margin: 1rem 0 0;
}

/* Coverage stats */
.gnn-coverage {
  padding: 3.5rem 1.5rem;
  background: #0F4D6B;
  color: #fff;
  position: relative;
}

.gnn-coverage::before,
.gnn-coverage::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: rgba(174, 200, 214, 0.4);
}

.gnn-coverage::before { top: 0; }
.gnn-coverage::after  { bottom: 0; }

.gnn-coverage-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.gnn-coverage-grid li {
  min-width: 0;
  position: relative;
}

.gnn-coverage-grid li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(174, 200, 214, 0.25);
}

.gnn-stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.gnn-stat-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  margin-top: 0.875rem;
}

/* Directory */
.gnn-directory {
  max-width: 64rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.gnn-directory-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gnn-directory-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #0F4D6B;
  margin: 0.5rem 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.gnn-directory-head .page-intro {
  margin-top: 0.5rem;
}

.gnn-state {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(15, 77, 107, 0.14);
  align-items: start;
}

.gnn-state:first-of-type {
  border-top: 1px solid rgba(15, 77, 107, 0.22);
}

.gnn-state-head {
  position: sticky;
  top: 6.5rem;
}

.gnn-state-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0;
}

.gnn-state-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #0F4D6B;
  line-height: 1.05;
  margin: 0.5rem 0 0.625rem;
  letter-spacing: -0.005em;
}

.gnn-state-count {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.55);
  margin: 0;
}

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

.gnn-station {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0.25rem;
  min-width: 0;
  border-bottom: 1px dotted rgba(15, 77, 107, 0.22);
  transition: padding-left 0.2s ease, background-color 0.2s ease;
}

.gnn-station:hover {
  background: rgba(134, 170, 16, 0.06);
  padding-left: 0.75rem;
}

.gnn-station-freq {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  color: #0F4D6B;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  text-align: right;
}

.gnn-station-city {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #0F4D6B;
}

.gnn-station-calls {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.55);
}

.gnn-footnote {
  margin: 3rem 0 0;
  padding: 1.5rem 1.75rem;
  background: #f4f6f8;
  border-left: 2px solid #86aa10;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(15, 77, 107, 0.78);
  line-height: 1.65;
}

.gnn-footnote-mark {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #86aa10;
  margin-right: 0.35em;
}

.gnn-footnote a {
  color: #0F4D6B;
  border-bottom: 1px solid rgba(134, 170, 16, 0.6);
  padding-bottom: 1px;
}

.gnn-footnote a:hover {
  color: #86aa10;
}

/* ===== WILKINS RADIO NETWORK ===== */
.wilkins-page {
  background: #fff;
}

.wilkins-hero {
  position: relative;
  padding-bottom: 4rem;
  overflow: hidden;
}

.wilkins-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 0%, rgba(80, 146, 179, 0.14), transparent 55%),
    radial-gradient(ellipse at 15% 100%, rgba(134, 170, 16, 0.09), transparent 60%);
  pointer-events: none;
}

.wilkins-hero > * {
  position: relative;
}

.wilkins-hero h1 {
  font-size: 3.75rem;
}

.wilkins-hero-mark {
  margin: 2.25rem auto 0;
  max-width: 260px;
  padding: 0;
}

.wilkins-hero-mark a {
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wilkins-hero-mark a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.wilkins-hero-mark img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  border-radius: 2px;
}

.wilkins-hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.wilkins-listen-live {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.375rem;
  background: #0F4D6B;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 77, 107, 0.18);
}

.wilkins-listen-live:hover {
  background: #5092B3;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 77, 107, 0.22);
}

.wilkins-listen-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a4e;
  box-shadow: 0 0 0 0 rgba(255, 90, 78, 0.6);
  animation: gnn-pulse 1.6s ease-out infinite;
}

/* Coverage */
.wilkins-coverage {
  padding: 3.5rem 1.5rem;
  background: #0F4D6B;
  color: #fff;
  position: relative;
}

.wilkins-coverage::before,
.wilkins-coverage::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: rgba(174, 200, 214, 0.4);
}

.wilkins-coverage::before { top: 0; }
.wilkins-coverage::after  { bottom: 0; }

.wilkins-coverage-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.wilkins-coverage-grid li {
  position: relative;
}

.wilkins-coverage-grid li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(174, 200, 214, 0.25);
}

.wilkins-stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.wilkins-stat-unit {
  font-weight: 300;
  font-size: 0.5em;
  color: #b3d11f;
  margin-left: 0.05em;
  letter-spacing: 0;
}

.wilkins-stat-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  margin-top: 0.875rem;
}

/* Broadcasts */
.wilkins-broadcasts {
  max-width: 64rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.wilkins-broadcasts-head {
  text-align: center;
  margin-bottom: 3rem;
}

.wilkins-broadcasts-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #0F4D6B;
  margin: 0.5rem 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.wilkins-broadcasts-head .page-intro {
  margin-top: 0.5rem;
}

.wilkins-broadcast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 0 auto;
}

.wilkins-broadcast {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 77, 107, 0.16);
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wilkins-broadcast::before {
  /* corner accent: thin lichen-green L marking the top-left */
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 36px;
  height: 36px;
  border-top: 2px solid #86aa10;
  border-left: 2px solid #86aa10;
  pointer-events: none;
}

.wilkins-broadcast:hover {
  border-color: rgba(15, 77, 107, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(15, 77, 107, 0.35);
}

.wilkins-broadcast-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.wilkins-broadcast-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.45);
  font-variant-numeric: tabular-nums;
}

.wilkins-broadcast-tag {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #86aa10;
  border: 1px solid rgba(134, 170, 16, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.7rem 0.25rem;
  line-height: 1;
  white-space: nowrap;
}

.wilkins-broadcast-head {
  margin: 0;
}

.wilkins-broadcast-state {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 0.4rem;
}

.wilkins-broadcast-city {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #0F4D6B;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
}

.wilkins-broadcast-pop {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(15, 77, 107, 0.7);
  margin: 0;
}

.wilkins-broadcast-pop strong {
  font-weight: 600;
  font-style: normal;
  color: #0F4D6B;
}

/* Dial — frequencies */
.wilkins-dial {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(15, 77, 107, 0.14);
  border-bottom: 1px solid rgba(15, 77, 107, 0.14);
}

.wilkins-dial-call {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.wilkins-dial-call-letters {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.625rem;
  letter-spacing: 0.16em;
  color: #0F4D6B;
  line-height: 1;
}

.wilkins-dial-call-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #86aa10;
}

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

.wilkins-dial-freqs--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 16rem;
  margin-left: auto;
}

.wilkins-dial-freqs li {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 0.5rem;
  row-gap: 0.15rem;
  padding: 0.65rem 0.875rem;
  background: #f4f6f8;
  border-left: 2px solid #5092B3;
}

.wilkins-freq-band {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #5092B3;
}

.wilkins-freq-num {
  grid-column: 1 / -1;
  grid-row: 2;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.875rem;
  color: #0F4D6B;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.wilkins-freq-unit {
  grid-column: 2;
  grid-row: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.5);
  justify-self: end;
}

/* Airtime footer */
.wilkins-broadcast-foot {
  margin-top: auto;
}

.wilkins-airtime {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-items: center;
}

.wilkins-airtime-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
}

.wilkins-airtime-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #0F4D6B;
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.wilkins-airtime-time {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.875rem;
  color: #0F4D6B;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.wilkins-airtime-colon {
  display: inline-block;
  margin: 0 0.04em;
  color: #86aa10;
}

.wilkins-airtime-meridiem {
  font-size: 0.625em;
  font-weight: 300;
  color: rgba(15, 77, 107, 0.55);
  margin-left: 0.2em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: 0.45em;
}

.wilkins-airtime-window {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(15, 77, 107, 0.6);
  letter-spacing: 0;
}

.wilkins-footnote {
  max-width: 56rem;
  margin: 3rem auto 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(15, 77, 107, 0.7);
  padding-left: 1.5rem;
  position: relative;
}

.wilkins-footnote-mark {
  position: absolute;
  left: 0;
  top: 0;
  font-style: normal;
  color: #86aa10;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

.wilkins-footnote a {
  color: #5092B3;
  font-style: normal;
  font-weight: 600;
  border-bottom: 1px solid rgba(80, 146, 179, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.wilkins-footnote a:hover {
  color: #86aa10;
  border-color: #86aa10;
}

@media (max-width: 900px) {
  .gnn-hero h1 {
    font-size: 2.5rem;
  }

  .gnn-schedule {
    padding: 3rem 1.25rem 3.5rem;
  }

  .gnn-schedule-head h2 {
    font-size: 1.75rem;
  }

  .gnn-schedule-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gnn-schedule-time {
    font-size: 3.25rem;
  }

  .gnn-coverage {
    padding: 2.5rem 1.25rem;
  }

  .gnn-coverage-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .gnn-coverage-grid li {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    column-gap: 1.25rem;
    align-items: baseline;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(174, 200, 214, 0.18);
  }

  .gnn-coverage-grid li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .gnn-stat-num {
    font-size: 3rem;
    text-align: right;
  }

  .gnn-stat-label {
    margin-top: 0;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
  }

  .gnn-coverage-grid li + li::before {
    display: none;
  }

  .gnn-directory {
    padding: 3rem 1.25rem;
  }

  .gnn-directory-head h2 {
    font-size: 1.875rem;
  }

  .gnn-state {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0;
  }

  .gnn-state-head {
    position: static;
  }

  .gnn-station-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .gnn-station {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.875rem;
    row-gap: 0.125rem;
    padding: 0.875rem 0.25rem;
  }

  .gnn-station-freq {
    grid-row: 1 / span 2;
    align-self: center;
    text-align: right;
    font-size: 1.25rem;
  }

  .gnn-station-city {
    grid-column: 2;
    grid-row: 1;
  }

  .gnn-station-calls {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  /* Wilkins */
  .wilkins-hero h1 {
    font-size: 2.5rem;
  }

  .wilkins-coverage {
    padding: 2.5rem 1.25rem;
  }

  .wilkins-coverage-grid {
    gap: 1.5rem;
  }

  .wilkins-stat-num {
    font-size: 3rem;
  }

  .wilkins-coverage-grid li + li::before {
    display: none;
  }

  .wilkins-broadcasts {
    padding: 3.25rem 1.25rem 2.5rem;
  }

  .wilkins-broadcasts-head {
    margin-bottom: 2.25rem;
  }

  .wilkins-broadcasts-head h2 {
    font-size: 1.875rem;
  }

  .wilkins-broadcast-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .wilkins-broadcast {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .wilkins-broadcast-city {
    font-size: 2.125rem;
  }

  .wilkins-dial {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .wilkins-dial-call {
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
  }

  .wilkins-dial-call-line {
    width: 24px;
  }

  .wilkins-dial-freqs--single {
    margin-left: 0;
    max-width: none;
  }

  .wilkins-freq-num {
    font-size: 1.5rem;
  }

  .wilkins-airtime {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .wilkins-airtime-time {
    font-size: 1.625rem;
  }

  .wilkins-footnote {
    margin-top: 2.25rem;
  }
}

/* ===== BIBLE Q&A ARTICLE ===== */
.qa-page {
  background: #fff;
  position: relative;
}

.qa-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 520px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(80, 146, 179, 0.12), transparent 55%),
    radial-gradient(ellipse at 88% 8%, rgba(134, 170, 16, 0.08), transparent 55%),
    linear-gradient(180deg, #f4f6f8 0%, #fff 100%);
  pointer-events: none;
  z-index: 0;
}

.qa-article {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 0;
}

.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;
}

/* Hero */
.qa-hero {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0 3rem;
}

.qa-trail {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.65);
  margin: 0 0 1.5rem;
}

.qa-trail a {
  color: #86aa10;
  border-bottom: 1px solid rgba(134, 170, 16, 0.4);
  padding-bottom: 1px;
}

.qa-trail a:hover {
  color: #6d8c0d;
  border-color: #86aa10;
}

.qa-trail span {
  color: rgba(15, 77, 107, 0.55);
}

.qa-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.02;
  color: #0F4D6B;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
}

.qa-deck {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(15, 77, 107, 0.78);
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

.qa-byline {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(15, 77, 107, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.qa-byline-label {
  color: rgba(15, 77, 107, 0.55);
}

.qa-byline-name {
  color: #0F4D6B;
  font-weight: 400;
}

.qa-byline-sep {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: rgba(15, 77, 107, 0.35);
}

.qa-byline-ref {
  color: #86aa10;
}

/* Question + image feature */
.qa-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  margin: 2rem 0 4.5rem;
  padding: 0 1rem;
}

.qa-feature-image {
  margin: 0;
  position: relative;
}

.qa-feature-image::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: -1.25rem;
  bottom: -1.25rem;
  border: 1px solid rgba(134, 170, 16, 0.45);
  z-index: -1;
}

.qa-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(15, 77, 107, 0.16);
}

.qa-feature-image figcaption {
  margin-top: 0.875rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.55);
  text-align: right;
}

.qa-question {
  margin: 0;
  padding: 2.5rem 0 2.5rem 2.5rem;
  border-left: 2px solid #86aa10;
  position: relative;
}

.qa-question-label {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 0.9;
  color: #86aa10;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.qa-question-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.625rem;
  line-height: 1.4;
  color: #0F4D6B;
  margin: 0;
  letter-spacing: -0.005em;
}

/* Body prose */
.qa-body {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  position: relative;
}

.qa-body p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #1a3a4d;
  margin: 0 0 1.75rem;
  letter-spacing: 0.005em;
}

.qa-body p + p {
  text-indent: 0;
}

.qa-body-lede {
  position: relative;
}

.qa-answer-mark {
  float: left;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 6rem;
  line-height: 0.78;
  color: #0F4D6B;
  margin: 0.45rem 1rem 0 0;
  letter-spacing: -0.04em;
  position: relative;
}

.qa-answer-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  width: 0.55em;
  height: 4px;
  background: #86aa10;
}

.qa-endmark {
  width: 14px;
  height: 14px;
  margin: 1rem auto 0;
  background: #86aa10;
  transform: rotate(45deg);
}

/* Aside (ask a question) */
.qa-aside {
  max-width: 40rem;
  margin: 1rem auto 4.5rem;
  padding: 2.25rem 2.5rem;
  background: #f4f6f8;
  border-top: 1px solid rgba(15, 77, 107, 0.12);
  border-bottom: 1px solid rgba(15, 77, 107, 0.12);
  text-align: center;
  position: relative;
}

.qa-aside::before,
.qa-aside::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 36px;
  height: 2px;
  background: #86aa10;
}

.qa-aside::before { left: 50%; transform: translateX(-50%); }
.qa-aside::after  { display: none; }

.qa-aside-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 0.75rem;
}

.qa-aside-body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0625rem;
  color: #0F4D6B;
  line-height: 1.6;
  margin: 0;
}

.qa-aside-body a {
  color: #0F4D6B;
  border-bottom: 1px solid rgba(134, 170, 16, 0.6);
  padding-bottom: 1px;
}

.qa-aside-body a:hover {
  color: #86aa10;
}

/* Related */
.qa-related {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.qa-related-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.qa-related-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.875rem;
  color: #0F4D6B;
  margin: 0.5rem 0 0;
  letter-spacing: -0.005em;
}

.qa-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(15, 77, 107, 0.18);
}

.qa-related-list li {
  border-bottom: 1px solid rgba(15, 77, 107, 0.14);
}

.qa-related-list li:nth-child(odd) {
  border-right: 1px solid rgba(15, 77, 107, 0.14);
}

.qa-related-list a {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  color: #0F4D6B;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.qa-related-list a:hover {
  background: rgba(134, 170, 16, 0.06);
  padding-left: 2rem;
}

.qa-related-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 1.375rem;
  color: rgba(15, 77, 107, 0.4);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.qa-related-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: #0F4D6B;
  line-height: 1.3;
}

.qa-related-arrow {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: #86aa10;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.qa-related-list a:hover .qa-related-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Page-load reveals (transform-only so content is always visible) */
@media (prefers-reduced-motion: no-preference) {
  .qa-hero > * { animation: qa-rise 0.7s ease both; }
  .qa-hero .qa-trail   { animation-delay: 0.05s; }
  .qa-hero .qa-title   { animation-delay: 0.15s; }
  .qa-hero .qa-deck    { animation-delay: 0.25s; }
  .qa-hero .qa-byline  { animation-delay: 0.35s; }
  .qa-feature          { animation: qa-rise 0.8s 0.45s ease both; }
}

@keyframes qa-rise {
  0%   { opacity: 0.001; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .qa-article {
    padding: 3rem 1.25rem 0;
  }

  .qa-hero {
    padding: 0.5rem 0 2.5rem;
  }

  .qa-title {
    font-size: 2.5rem;
  }

  .qa-deck {
    font-size: 1.125rem;
  }

  .qa-byline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    padding: 0.625rem 1rem;
  }

  .qa-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 1rem 0 3rem;
    padding: 0;
  }

  .qa-feature-image::before {
    top: 0.875rem;
    left: 0.875rem;
    right: -0.875rem;
    bottom: -0.875rem;
  }

  .qa-question {
    padding: 1.5rem 0 1.5rem 1.5rem;
  }

  .qa-question-label {
    font-size: 3.5rem;
  }

  .qa-question-text {
    font-size: 1.25rem;
  }

  .qa-body {
    padding: 0 0.5rem 3rem;
  }

  .qa-body p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .qa-answer-mark {
    font-size: 4.5rem;
    margin: 0.35rem 0.75rem 0 0;
  }

  .qa-aside {
    margin: 0 auto 3rem;
    padding: 1.75rem 1.5rem;
  }

  .qa-related {
    padding: 0 1rem 3.5rem;
  }

  .qa-related-list {
    grid-template-columns: 1fr;
  }

  .qa-related-list li:nth-child(odd) {
    border-right: none;
  }

  .qa-related-list a {
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 1rem 0.75rem;
  }
}

/* ===== WHAT WE BELIEVE ===== */
.beliefs-page {
  background: #fff;
}

.beliefs-articles {
  max-width: 60rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
}

.beliefs-article {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(15, 77, 107, 0.14);
}

.beliefs-article:first-child {
  padding-top: 0;
}

.beliefs-article:last-child {
  border-bottom: none;
}

.beliefs-article-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(15, 77, 107, 0.18);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.beliefs-article-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 0.75rem;
}

.beliefs-article-body h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #0F4D6B;
  margin: 0 0 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.beliefs-article-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #0F4D6B;
  margin: 0;
  max-width: 38rem;
}

.beliefs-article-body p.beliefs-reference {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.4rem 0.875rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #86aa10;
  border: 1px solid rgba(134, 170, 16, 0.4);
  border-radius: 2px;
  line-height: 1;
}

/* ===== BIBLE Q&A · CREATION WORDS ===== */
.creation-words-page {
  background: #fff;
}

.cw-hero h1 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.cw-hero .page-intro em {
  font-style: italic;
  color: #86aa10;
  font-weight: 400;
}

/* --- LEDE --- */
.cw-lede {
  padding: 5rem 1.5rem 4.5rem;
  background: #fff;
}

.cw-lede-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}

.cw-lede-figure {
  margin: 0;
  position: relative;
}

.cw-lede-figure::before {
  content: "";
  position: absolute;
  inset: 0.875rem -0.875rem -0.875rem 0.875rem;
  background: rgba(134, 170, 16, 0.16);
  z-index: 0;
  pointer-events: none;
}

.cw-lede-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 6px 22px rgba(15, 77, 107, 0.18);
  filter: saturate(0.9) contrast(1.05);
}

.cw-lede-figure figcaption {
  position: relative;
  z-index: 1;
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  font-size: 1.25rem;
  color: rgba(15, 77, 107, 0.78);
  margin-top: 1rem;
  text-align: center;
}

.cw-lede-body {
  padding-top: 0.5rem;
}

.cw-question {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.35;
  color: #0F4D6B;
  margin: 0 0 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(15, 77, 107, 0.18);
  letter-spacing: -0.005em;
}

.cw-question::before {
  content: "Q.";
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #86aa10;
  margin-right: 0.625rem;
  letter-spacing: 0.05em;
}

.cw-answer-marker {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 1rem;
}

.cw-lede-body > p:not(.cw-question):not(.cw-answer-marker) {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #0F4D6B;
  margin: 0 0 1.25rem;
}

.cw-lede-body > p:last-child {
  margin-bottom: 0;
}

/* --- THE THREE WORDS --- */
.cw-words {
  background: #f4f6f8;
  padding: 5.5rem 1.5rem 5rem;
  border-top: 1px solid rgba(15, 77, 107, 0.1);
  border-bottom: 1px solid rgba(15, 77, 107, 0.1);
  position: relative;
  overflow: hidden;
}

.cw-words::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(80, 146, 179, 0.08), transparent 55%),
    radial-gradient(ellipse at 88% 100%, rgba(134, 170, 16, 0.07), transparent 60%);
  pointer-events: none;
}

.cw-words > * {
  position: relative;
}

.cw-words-header {
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.cw-words-header h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #0F4D6B;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.cw-word {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3rem minmax(14rem, 16rem) 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(15, 77, 107, 0.18);
  align-items: start;
}

.cw-word:last-child {
  border-bottom: 1px solid rgba(15, 77, 107, 0.18);
}

.cw-word-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 2rem;
  color: rgba(15, 77, 107, 0.4);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  padding-top: 0.5rem;
  user-select: none;
}

.cw-word-glyph {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
}

.cw-hebrew {
  font-family: 'Frank Ruhl Libre', 'David Libre', 'Times New Roman', serif;
  font-weight: 500;
  font-size: 4.75rem;
  line-height: 0.95;
  color: #0F4D6B;
  letter-spacing: 0.02em;
  display: block;
}

.cw-translit {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #86aa10;
  display: block;
  line-height: 1;
  margin-top: 0.375rem;
  position: relative;
  padding-left: 0;
}

.cw-translit::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #86aa10;
  margin-bottom: 0.625rem;
}

.cw-gloss {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(15, 77, 107, 0.72);
  display: block;
  letter-spacing: 0.02em;
}

.cw-word-body {
  padding-top: 0.5rem;
}

.cw-word-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #0F4D6B;
  margin: 0 0 1.25rem;
  max-width: 38rem;
}

.cw-word-body p:last-of-type {
  margin: 0;
}

.cw-refs {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px dotted rgba(15, 77, 107, 0.25);
}

.cw-refs li {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #86aa10;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(134, 170, 16, 0.4);
  border-radius: 2px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.55);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cw-refs li:hover {
  background: #fff;
  border-color: #86aa10;
}

/* --- CODA --- */
.cw-coda {
  padding: 5.5rem 1.5rem 4.5rem;
  background: #fff;
}

.cw-pull-quote {
  max-width: 46rem;
  margin: 0 auto 3rem;
  padding: 0;
  text-align: center;
  position: relative;
}

.cw-pull-quote::before {
  content: "\201C";
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 5rem;
  line-height: 0.7;
  color: #86aa10;
  margin-bottom: 0.75rem;
}

.cw-pull-quote p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #0F4D6B;
  margin: 0;
  letter-spacing: -0.005em;
}

.cw-coda-body {
  max-width: 38rem;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(15, 77, 107, 0.15);
}

.cw-coda-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #0F4D6B;
  margin: 0 0 1.25rem;
}

.cw-coda-body p:last-child {
  margin: 0;
}

/* ===== RADIO PROGRAM ===== */
.radio-page {
  background: #fff;
}

.radio-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 0.875rem;
}

/* --- HERO --- */
.radio-hero {
  position: relative;
  background: #f4f6f8;
  padding: 4.5rem 1.5rem 3.75rem;
  overflow: hidden;
  isolation: isolate;
}

.radio-hero::before {
  /* Faint dial-tick marks for broadcast atmosphere */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(15, 77, 107, 0.16) 0,
    rgba(15, 77, 107, 0.16) 1px,
    transparent 1px,
    transparent 14px
  );
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
          mask-image: linear-gradient(to top, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.radio-hero::after {
  /* A taller secondary tick row, for depth */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(15, 77, 107, 0.09) 0,
    rgba(15, 77, 107, 0.09) 1px,
    transparent 1px,
    transparent 70px
  );
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
          mask-image: linear-gradient(to top, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.radio-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.radio-on-air {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.95rem 0.5rem 0.85rem;
  margin-bottom: 1.75rem;
  background: #fff;
  border: 1px solid rgba(15, 77, 107, 0.18);
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0F4D6B;
  box-shadow: 0 1px 3px rgba(15, 77, 107, 0.06);
}

.radio-on-air-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6342a;
  box-shadow: 0 0 0 0 rgba(214, 52, 42, 0.55);
  animation: radio-on-air-pulse 1.8s ease-out infinite;
}

@keyframes radio-on-air-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 52, 42, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(214, 52, 42, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 52, 42, 0);
  }
}

.radio-on-air-sep {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(15, 77, 107, 0.3);
}

.radio-on-air-since {
  color: rgba(15, 77, 107, 0.65);
  letter-spacing: 0.22em;
}

.radio-hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 3.5rem;
  color: #0F4D6B;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.radio-hero-title em {
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.05em;
  color: #0F4D6B;
  letter-spacing: 0;
  padding: 0 0.05em;
}

.radio-hero-intro {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  color: rgba(15, 77, 107, 0.78);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.radio-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(15, 77, 107, 0.18);
  border-bottom: 1px solid rgba(15, 77, 107, 0.18);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}

.radio-meta-item {
  padding: 1.1rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(15, 77, 107, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.radio-meta-item:last-child {
  border-right: none;
}

.radio-meta-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0;
}

.radio-meta-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #0F4D6B;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.005em;
}

.radio-meta-value span {
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(15, 77, 107, 0.6);
  letter-spacing: 0.04em;
  margin-left: 0.15em;
}

/* --- FEATURE --- */
.radio-feature {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.radio-feature-figure {
  position: relative;
  margin: 0;
}

.radio-feature-figure::before {
  /* Subtle off-set frame to give the photo presence */
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid #86aa10;
  z-index: 0;
  pointer-events: none;
}

.radio-feature-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 12px 40px -16px rgba(15, 77, 107, 0.45);
  filter: saturate(0.92) contrast(1.04);
}

.radio-feature-figure figcaption {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding-left: 0.25rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15, 77, 107, 0.6);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.radio-feature-cap-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #86aa10;
}

.radio-feature-h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.75rem;
  color: #0F4D6B;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0.25rem 0 1.5rem;
}

.radio-feature-body p {
  color: #0F4D6B;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 1.1rem;
  max-width: 36rem;
}

.radio-feature-credits {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(15, 77, 107, 0.18);
  max-width: 36rem;
}

.radio-feature-credits li {
  padding: 1rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-right: 1px solid rgba(15, 77, 107, 0.12);
  padding-right: 1rem;
}

.radio-feature-credits li:last-child {
  border-right: none;
  padding-left: 1.5rem;
  padding-right: 0;
}

.radio-feature-credit-role {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
}

.radio-feature-credit-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #0F4D6B;
  letter-spacing: -0.005em;
}

/* --- NETWORKS --- */
.radio-networks {
  background: #f4f6f8;
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(15, 77, 107, 0.1);
  border-bottom: 1px solid rgba(15, 77, 107, 0.1);
}

.radio-networks-header {
  max-width: 56rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.radio-networks-header h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: #0F4D6B;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.radio-network-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56rem;
  border-top: 1px solid rgba(15, 77, 107, 0.18);
}

.radio-network-item {
  border-bottom: 1px solid rgba(15, 77, 107, 0.12);
}

.radio-network-link {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  color: #0F4D6B;
  text-decoration: none;
  transition: background-color 0.25s ease, padding-left 0.25s ease, color 0.2s ease;
}

.radio-network-link:hover {
  background: rgba(134, 170, 16, 0.06);
  padding-left: 1rem;
  color: #0F4D6B;
}

.radio-network-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 1.625rem;
  color: rgba(15, 77, 107, 0.4);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.radio-network-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.radio-network-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  color: #0F4D6B;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.radio-network-region {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(15, 77, 107, 0.7);
  line-height: 1.4;
}

.radio-network-meta {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #86aa10;
  white-space: nowrap;
}

.radio-network-arrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(15, 77, 107, 0.4);
  transition: transform 0.25s ease, color 0.2s ease;
  display: inline-block;
}

.radio-network-link:hover .radio-network-arrow {
  transform: translateX(4px);
  color: #86aa10;
}

/* --- CTA --- */
.radio-cta {
  background: #0F4D6B;
  color: #fff;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.radio-cta-grid {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.radio-cta-mark {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 88px;
}

.radio-cta-mark span {
  display: block;
  width: 5px;
  background: linear-gradient(to top, #86aa10 0%, #b3d11f 100%);
  border-radius: 2px;
  transform-origin: bottom;
  animation: radio-eq 1.4s ease-in-out infinite;
}

.radio-cta-mark span:nth-child(1) { height: 28%; animation-delay: -0.1s; }
.radio-cta-mark span:nth-child(2) { height: 62%; animation-delay: -0.5s; }
.radio-cta-mark span:nth-child(3) { height: 92%; animation-delay: -0.2s; }
.radio-cta-mark span:nth-child(4) { height: 46%; animation-delay: -0.8s; }
.radio-cta-mark span:nth-child(5) { height: 78%; animation-delay: -0.35s; }
.radio-cta-mark span:nth-child(6) { height: 36%; animation-delay: -0.65s; }

@keyframes radio-eq {
  0%, 100% { transform: scaleY(0.55); opacity: 0.85; }
  50% { transform: scaleY(1); opacity: 1; }
}

.radio-cta-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b3d11f;
  margin: 0 0 0.875rem;
}

.radio-cta-body h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: #fff;
  margin: 0 0 0.875rem;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.radio-cta-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  max-width: 38rem;
}

.radio-cta-row {
  display: inline-flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.radio-cta .speaker-btn-primary {
  background: #86aa10;
  color: #fff;
}

.radio-cta .speaker-btn-primary:hover {
  background: #b3d11f;
  color: #0F4D6B;
}

.radio-cta .speaker-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.radio-cta .speaker-btn-secondary:hover {
  background: #fff;
  color: #0F4D6B;
  border-color: #fff;
}

/* ===== HARBOUR LIGHT ===== */
.radio-feature-figure-logo::before {
  display: none;
}

.radio-feature-figure-logo img {
  background: #faf6ec;
  border: 1px solid rgba(15, 77, 107, 0.14);
  padding: 3rem 2rem;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  box-shadow: 0 12px 40px -20px rgba(15, 77, 107, 0.35);
  border-radius: 2px;
}

.frequencies {
  background: #fff;
  padding: 5rem 1.5rem 6rem;
}

.frequency-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.frequency-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(15, 77, 107, 0.18);
  border-radius: 2px;
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  min-height: 16rem;
}

.frequency-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 28px;
  height: 1px;
  background: #86aa10;
}

.frequency-card:hover {
  border-color: rgba(134, 170, 16, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -16px rgba(15, 77, 107, 0.18);
}

.frequency-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.frequency-card-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: rgba(15, 77, 107, 0.45);
  font-variant-numeric: tabular-nums;
}

.frequency-card-band {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  color: #86aa10;
  border: 1px solid rgba(134, 170, 16, 0.45);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.frequency-card-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.frequency-card-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 3.75rem;
  line-height: 1;
  color: #0F4D6B;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.frequency-card-unit {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(15, 77, 107, 0.55);
  text-transform: lowercase;
}

.frequency-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 77, 107, 0.1);
}

.frequency-card-region {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #0F4D6B;
  margin: 0 0 0.25rem;
}

.frequency-card-coverage {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(15, 77, 107, 0.62);
  margin: 0;
}

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

  .frequency-card {
    min-height: auto;
  }

  .frequencies {
    padding: 3rem 1.25rem 4rem;
  }
}

.blockquote {
  border-left: 4px solid #5092B3;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: #f4f6f8;
  font-style: italic;
  color: #3a6a82;
  border-radius: 0 4px 4px 0;
}

.blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

.ask-question {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #f4f6f8;
  border-radius: 6px;
  text-align: center;
  font-size: 0.95rem;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ===== TOPIC LIST ===== */
.topic-list {
  list-style: none;
  padding: 0;
}

.topic-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.topic-list li::before {
  content: "~";
  position: absolute;
  left: 0;
  color: #5092B3;
  font-weight: 700;
}

/* ===== STATION LIST ===== */
.station-group {
  margin-bottom: 2rem;
}

.station-group h3 {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #AEC8D6;
}

.station-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.4rem;
}

.station-list li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

/* ===== MESSAGES / AUDIO ===== */
.message-card {
  background: #f4f6f8;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.message-card h3 {
  margin-bottom: 0.5rem;
}

.message-card .artist {
  font-size: 0.85rem;
  color: #5092B3;
  margin-bottom: 0.75rem;
}

.message-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.message-card audio {
  width: 100%;
}

/* ===== CONTACT ===== */
.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: #5092B3;
}

.contact-form {
  background: #f4f6f8;
  padding: 2rem;
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  color: #0F4D6B;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #AEC8D6;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0F4D6B;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5092B3;
  box-shadow: 0 0 0 3px rgba(80,146,179,0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: #0F4D6B;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: #5092B3;
  color: #fff;
}

/* ===== DONATIONS ===== */
.donation-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.donation-card {
  background: #f4f6f8;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.donation-card img {
  max-width: 200px;
  margin: 1rem auto;
}

.donation-card h3 {
  margin-bottom: 0.75rem;
}

/* ===== EVENTS ===== */
.events-cta {
  text-align: center;
  padding: 2rem;
  background: #f4f6f8;
  border-radius: 8px;
  margin-top: 1.5rem;
}

/* ===== FOOTER ===== */
/* ============================================================
   SITE FOOTER — 4-column grid + bottom strip
   ============================================================ */
.site-footer {
  background: #093549;
  color: #f4f6f8;
  padding: 4rem 0 0;
  border-top: 4px solid #86aa10;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  box-shadow: inset 0 12px 24px -12px rgba(0, 0, 0, 0.30);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.75rem;
}

/* Brand column */
.footer-brand-col { display: flex; flex-direction: column; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: #fff;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}
.footer-brand-logo { width: 50px; height: 50px; }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-brand-name {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.footer-brand-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #AEC8D6;
  margin-top: 0.2rem;
}
.footer-tagline {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #AEC8D6;
  margin: 0 0 1.5rem;
  max-width: 22rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #AEC8D6;
  text-decoration: none;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(174, 200, 214, 0.3);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.footer-social svg { width: 14px; height: 14px; }

/* Column heading */
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #86aa10;
  margin: 0 0 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Nav columns (Explore / Listen) */
.footer-nav { margin: 0; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 0.93rem;
  color: #d2dde4;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

/* Contact column */
.footer-contact { margin: 0; }
.footer-contact h4 { /* legacy compat: h4 inside footer-contact */
  color: inherit;
  margin: 0 0 1.25rem;
}
.footer-contact p {
  color: #d2dde4;
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}
.footer-contact a {
  color: #d2dde4;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.footer-address {
  font-style: normal;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #d2dde4;
  margin: 0 0 1.25rem;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.7rem;
  gap: 0.15rem;
}
.footer-contact-list li:last-child { margin-bottom: 0; }
.footer-contact-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #86aa10;
}
.footer-contact-list a {
  color: #d2dde4;
  text-decoration: none;
  font-size: 0.93rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  word-break: break-word;
}
.footer-contact-list a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* Bottom strip */
.footer-bottom {
  background: #062835;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
  margin-top: 0;
  text-align: left;
  color: inherit;
  font-size: inherit;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copyright {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: #8ba4b0;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: left;
  align-self: center;
}
.footer-tag-end {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6e8590;
  margin: 0;
}

/* ===== RADIO PAGE ===== */
.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.radio-card img {
  max-width: 250px;
  border-radius: 6px;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.25rem;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 1.25rem 2.5rem;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .donation-methods {
    grid-template-columns: 1fr;
  }

  .content-body img.article-image {
    float: none;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
  }

  .speaker-layout {
    flex-direction: column;
    gap: 1.75rem;
  }

  .speaker-photo {
    flex: 0 0 auto;
    max-width: 360px;
    margin: 0 auto;
  }

  .speaker-bio h1 {
    font-size: 2rem;
  }

  .speaker-bio p {
    max-width: none;
  }

  .speaker-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .speaker-btn {
    text-align: center;
  }

  .speaker-videos {
    padding: 3.25rem 1.25rem 3.75rem;
  }

  .speaker-videos-title {
    font-size: 1.75rem;
  }

  .speaker-videos-lede {
    font-size: 1rem;
  }

  .speaker-videos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .topics-quote-section {
    padding: 3rem 1.25rem;
  }

  .topics-feature-quote p {
    font-size: 1.125rem;
  }

  .topics-feature-quote::before {
    font-size: 4rem;
  }

  .topics-series {
    padding: 3rem 1.25rem;
  }

  .topics-series-header h2 {
    font-size: 1.75rem;
  }

  .topics-list-item {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 1rem 0.5rem;
  }

  .topics-list-item:hover {
    padding-left: 0.75rem;
  }

  .topics-list-num {
    flex: 0 0 2.25rem;
    font-size: 1.25rem;
  }

  .topics-list-title {
    flex: 1 1 auto;
    font-size: 1rem;
  }

  .topics-list-emphasis {
    flex: 0 0 100%;
    text-align: left;
    padding-left: 2.75rem;
    min-width: 0;
  }

  .topics-additional {
    padding: 3rem 1.25rem;
  }

  .topics-additional-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .page-cta-section {
    padding: 3rem 1.25rem;
  }

  .page-cta-section h2 {
    font-size: 1.5rem;
  }

  .page-cta-row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .beliefs-articles {
    padding: 3rem 1.25rem 1.5rem;
  }

  .beliefs-article {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.5rem 0;
  }

  .beliefs-article-num {
    font-size: 3.5rem;
  }

  .beliefs-article-body h2 {
    font-size: 1.625rem;
  }

  /* Creation Words */
  .cw-lede {
    padding: 3.25rem 1.25rem 3rem;
  }

  .cw-lede-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cw-lede-figure {
    max-width: 460px;
    margin: 0 auto;
  }

  .cw-lede-figure::before {
    inset: 0.625rem -0.625rem -0.625rem 0.625rem;
  }

  .cw-question {
    font-size: 1.25rem;
  }

  .cw-words {
    padding: 3.5rem 1.25rem 3.25rem;
  }

  .cw-words-header {
    margin-bottom: 2.5rem;
  }

  .cw-words-header h2 {
    font-size: 1.875rem;
  }

  .cw-word {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.25rem 0;
  }

  .cw-word-num {
    padding-top: 0;
    font-size: 1.5rem;
  }

  .cw-hebrew {
    font-size: 3.5rem;
  }

  .cw-translit {
    font-size: 1.625rem;
  }

  .cw-coda {
    padding: 3.5rem 1.25rem 3rem;
  }

  .cw-pull-quote p {
    font-size: 1.1875rem;
  }

  .cw-pull-quote::before {
    font-size: 4rem;
  }

  /* Radio program */
  .radio-hero {
    padding: 3.25rem 1.25rem 2.75rem;
  }

  .radio-hero-title {
    font-size: 2.5rem;
  }

  .radio-hero-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .radio-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid rgba(15, 77, 107, 0.18);
  }

  .radio-meta-item {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(15, 77, 107, 0.12);
  }

  .radio-meta-item:nth-child(2) {
    border-right: none;
  }

  .radio-meta-item:nth-child(3),
  .radio-meta-item:nth-child(4) {
    border-bottom: none;
  }

  .radio-meta-value {
    font-size: 1.25rem;
  }

  .radio-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.25rem;
  }

  .radio-feature-figure::before {
    inset: 0.875rem -0.875rem -0.875rem 0.875rem;
  }

  .radio-feature-h2 {
    font-size: 2rem;
  }

  .radio-networks {
    padding: 3.5rem 1.25rem;
  }

  .radio-networks-header {
    margin-bottom: 2rem;
  }

  .radio-networks-header h2 {
    font-size: 1.75rem;
  }

  .radio-network-link {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 1.25rem 0.5rem;
  }

  .radio-network-link:hover {
    padding-left: 0.75rem;
  }

  .radio-network-num {
    font-size: 1.25rem;
  }

  .radio-network-name {
    font-size: 1.125rem;
  }

  .radio-network-region {
    font-size: 0.875rem;
  }

  .radio-network-meta {
    display: none;
  }

  .radio-cta {
    padding: 3.5rem 1.25rem;
  }

  .radio-cta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .radio-cta-mark {
    height: 56px;
  }

  .radio-cta-body h2 {
    font-size: 1.75rem;
  }

  .radio-cta-row {
    display: flex;
    width: 100%;
  }

  .radio-cta-row .speaker-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1.5rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: #f4f6f8;
  }

  .nav-item:hover > .dropdown-menu {
    display: none;
  }

  .nav-item.dropdown-open > .dropdown-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .header-inner {
    flex-wrap: wrap;
  }

  .radio-card {
    flex-direction: column;
  }

  .radio-card img {
    max-width: 100%;
  }

  .station-list {
    grid-template-columns: 1fr;
  }
}
