/* WMWV 93.5 — Modern radio site theme */
@import url("chatbot.css");

:root {
  --blue-900: #0c3d5c;
  --blue-700: #1a6b8a;
  --blue-500: #2a9fd4;
  --green-700: #1e7a45;
  --green-500: #2db86a;
  --green-300: #7dd3a0;
  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #eef2f5;
  --gray-200: #dde4ea;
  --gray-600: #5a6b78;
  --gray-800: #2d3a44;
  --shadow: 0 2px 12px rgba(12, 61, 92, 0.08);
  --shadow-lg: 0 8px 32px rgba(12, 61, 92, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 72px;
  --player-h: 52px;
  --chrome-h: calc(var(--header-h) + var(--player-h));
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max-w: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  padding-top: var(--chrome-h);
}

img { max-width: 100%; height: auto; display: block; }

.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;
}

a {
  color: var(--blue-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--green-700); }

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--green-700);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--green-700) 100%);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--green-500);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  max-width: 180px;
  background: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Nav */
.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.nav-search-btn {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.15s, background 0.15s;
}

.nav-search-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

.search-icon { display: block; }

/* Search overlay */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(12, 61, 92, 0.6);
  backdrop-filter: blur(4px);
  padding: calc(var(--chrome-h) + 1rem) 1.25rem 2rem;
}

.search-overlay.is-open { display: flex; justify-content: center; align-items: flex-start; }

.search-panel {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.search-panel-header {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.search-input:focus {
  border-color: var(--blue-500);
  outline: none;
}

.search-close {
  background: var(--gray-100);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.search-results {
  max-height: 50vh;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-results li a {
  display: block;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}

.search-results li a:hover { background: var(--gray-50); }

.search-results .result-type {
  font-size: 0.75rem;
  color: var(--green-700);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--gray-600);
}

/* Persistent player — below navbar */
.live-player {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--player-h);
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700) 50%, var(--green-700));
  border-bottom: 3px solid var(--green-500);
  box-shadow: var(--shadow);
}

.player-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-play {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #ffffff 0%, #d8eef8 100%);
  color: var(--blue-900);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  box-shadow:
    0 4px 14px rgba(12, 61, 92, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.player-play:hover {
  transform: scale(1.06);
  box-shadow:
    0 6px 18px rgba(12, 61, 92, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.player-play:active {
  transform: scale(0.98);
}

.player-play.is-playing {
  background: linear-gradient(145deg, var(--green-500) 0%, var(--green-700) 100%);
  color: var(--white);
  box-shadow:
    0 0 0 3px rgba(125, 211, 160, 0.35),
    0 4px 16px rgba(30, 122, 69, 0.45);
}

.player-play svg {
  display: block;
}

.player-play .icon-play {
  margin-left: 2px;
}

.player-play .icon-pause {
  width: 20px;
  height: 20px;
}

.player-info {
  flex: 1;
  min-width: 0;
  color: var(--white);
}

.player-info strong {
  display: block;
  font-size: 0.9rem;
}

.player-info span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.live-player.is-streaming {
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700) 35%, var(--green-700));
  background-size: 200% 100%;
  animation: wmwv-stream-glow 3s ease-in-out infinite;
}

@keyframes wmwv-stream-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.live-badge[hidden] {
  display: none;
}

.live-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: wmwv-pulse 1.5s infinite;
}

@keyframes wmwv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.player-status { display: none; }

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}

.player-volume input {
  width: 80px;
  accent-color: var(--green-500);
}

/* Main content */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.latest-heading-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.latest-heading-test {
  font-size: clamp(2.1rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: var(--blue-900);
}

.page-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--blue-900);
  font-weight: 800;
}

.page-hero .tagline {
  margin: 0;
  font-size: 1.1rem;
  color: var(--green-700);
  font-weight: 600;
}

.page-hero p {
  margin: 1rem auto 0;
  max-width: 600px;
  color: var(--gray-600);
}

.page-hero-image {
  max-width: 320px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius);
  border: 3px solid var(--green-300);
  box-shadow: var(--shadow);
}

.hero-logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: var(--radius-sm);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}

.card--media {
  padding: 0;
}

.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 3px solid var(--green-500);
}

.card--media .card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card--media .show-time { margin-top: 0; }

.card h2, .card h3 {
  margin: 0 0 0.5rem;
  color: var(--blue-900);
  font-size: 1.15rem;
}

.card p { margin: 0 0 1rem; color: var(--gray-600); font-size: 0.95rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
}

.card-link:hover { color: var(--blue-700); }

/* News / post list */
.post-list { list-style: none; padding: 0; margin: 0; }

.post-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.post-item:first-child { padding-top: 0; }

.post-item h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.post-item h2 a {
  color: var(--blue-900);
  text-decoration: none;
}

.post-item h2 a:hover { color: var(--green-700); text-decoration: underline; }

.post-meta {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--blue-700);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.post-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content img {
  margin: 1rem auto;
  border-radius: var(--radius-sm);
}

.post-content ul {
  padding-left: 1.25rem;
}

.post-content .btn-wrap {
  text-align: center;
  margin: 2rem 0;
}

.year-section {
  margin-bottom: 2.5rem;
}

.year-section h2 {
  color: var(--blue-900);
  border-bottom: 3px solid var(--green-500);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Staff cards */
.staff-card {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.staff-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--green-300);
  box-shadow: var(--shadow);
}

.staff-card-body { min-width: 0; }

.staff-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.staff-card-body h2 {
  margin: 0 0 0.75rem;
  color: var(--blue-900);
  font-size: 1.35rem;
}

.staff-card-body h2 .staff-role {
  display: block;
  margin-top: 0.35rem;
}

.staff-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--gray-50);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--green-300);
}

.staff-card p {
  margin: 0 0 0.75rem;
  color: var(--gray-800);
}

/* Advertise page (Easy-inspired layout) */
.advertise-intro {
  margin-bottom: 2rem;
  padding: 2rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.advertise-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--blue-900);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
}

.eyebrow--blue { color: var(--blue-500); }

.eyebrow--green { color: var(--green-700); }

.page-lead {
  margin: 0 auto;
  font-size: 1.12rem;
  max-width: 42rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.advertise-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.advertise-section .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card,
.content-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.75rem;
}

.info-card h3 {
  margin: 0 0 0.5rem;
  color: var(--blue-900);
  font-size: 1.25rem;
}

.info-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}

.content-card h2 {
  margin: 0 0 0.75rem;
  color: var(--blue-900);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.content-card > p {
  margin: 0 0 1rem;
  color: var(--gray-800);
  line-height: 1.65;
}

.content-card > p:last-of-type {
  margin-bottom: 0;
}

.content-card h3 {
  margin: 0 0 0.5rem;
  color: var(--blue-900);
  font-size: 1.1rem;
}

.content-card--green {
  border-left: 4px solid var(--green-500);
}

.content-card--contact {
  background: linear-gradient(135deg, rgba(26, 107, 138, 0.04), rgba(42, 159, 212, 0.02));
  border-left: 4px solid var(--blue-500);
}

.offer-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-top: 1rem;
}

.offer-box + .offer-box {
  margin-top: 1rem;
}

.offer-box p {
  margin: 0 0 0.75rem;
  color: var(--gray-800);
  line-height: 1.65;
}

.offer-box p:last-child {
  margin-bottom: 0;
}

.advertise-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--gray-800);
}

.contact-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.advertise-cta .btn,
.content-card .advertise-cta .btn {
  border-radius: 999px;
  min-height: 3rem;
  padding: 0.8rem 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
}

.btn-primary:hover { color: var(--white); background: var(--blue-900); }

.btn-secondary {
  background: var(--green-500);
  color: var(--white);
}

.btn-secondary:hover { color: var(--white); background: var(--green-700); }

/* Archive browser */
.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.archive-filters button {
  padding: 0.5rem 1rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray-800);
}

.archive-filters button:hover,
.archive-filters button.is-active {
  border-color: var(--green-500);
  background: var(--green-500);
  color: var(--white);
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}

.archive-list li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}

.archive-list a {
  text-decoration: none;
  font-size: 0.95rem;
}

.archive-note {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* Show schedule badge */
.show-time {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-700);
  background: rgba(42, 159, 212, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
  border-top: 3px solid var(--green-500);
  padding: 2.5rem 1.25rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-sponsors {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.footer-sponsor {
  flex: 0 0 8.5rem;
  width: 8.5rem;
  text-align: center;
}

.footer-sponsor a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 6rem;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0.3rem 0.35rem 0.35rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: visible;
}

.footer-sponsor img {
  display: block;
  align-self: center;
  flex: 1 1 auto;
  width: 100%;
  height: 4.25rem;
  min-height: 4.25rem;
  max-width: 100%;
  max-height: none;
  margin: 0 0 0.25rem;
  object-fit: contain;
  object-position: center center;
}

.footer-sponsor img[alt="Dodier NFC"] {
  height: 3.25rem;
  min-height: 3.25rem;
}

.footer-sponsor span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--blue-900);
  line-height: 1.2;
  margin-top: auto;
}

@media (max-width: 420px) {
  .footer-sponsors {
    flex-wrap: wrap;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--gray-800);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover { color: var(--green-700); text-decoration: underline; }

.footer-social {
  margin-bottom: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #1877f2;
  color: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-social a:hover { opacity: 0.9; color: var(--white); }

.footer-legal {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.footer-legal a { color: var(--blue-700); }

.footer-credit {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}

.footer-credit a { color: var(--gray-600); }

.footer-contact {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--blue-900);
}

.staff-directory {
  list-style: none;
  padding: 0;
  margin: 0;
}

.staff-directory li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.staff-directory li:last-child { border-bottom: none; }

.staff-directory strong { color: var(--blue-900); }

/* Listen live page hero */
.listen-hero {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--blue-900), var(--green-700));
  border-radius: var(--radius);
  color: var(--white);
  margin-bottom: 2rem;
}

.listen-hero h1 { margin: 0 0 0.5rem; font-size: 2rem; }

.listen-hero p { margin: 0 0 1.5rem; opacity: 0.9; }

.listen-hero .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--chrome-h);
    left: 0;
    right: 0;
    background: var(--blue-900);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 3px solid var(--green-500);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    width: 100%;
    padding: 0.85rem 1rem;
    text-align: left;
  }

  .archive-list { columns: 1; }

  .player-volume { display: none; }

  .player-info span { display: none; }

  .staff-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .staff-photo {
    margin: 0 auto;
  }

  .advertise-section .card-grid {
    grid-template-columns: 1fr;
  }

  .advertise-intro {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
    --player-h: 48px;
  }

  .logo-img {
    height: 38px;
    max-width: 140px;
    padding: 3px 8px;
  }

  .player-play {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .player-info strong { font-size: 0.85rem; }
}
