:root {
  --brand: #16a34a;
  --brand-dark: #14532d;
  --brand-bright: #4ade80;
  --accent: #0d9488;
  --teal: #0f766e;
  --ink: #0b1f24;
  --cream: #f3faf6;
  --paper: #fbfffd;
  --line: #d5ebe3;
  --muted: #6b857c;
  --mint: #d1fae5;
  --shadow: 0 10px 30px -12px rgba(16, 80, 50, .35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Catamaran', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}
h1, h2, h3, .brand, .nav a, .btn, .tag, .show-name {
  font-family: 'Baloo Thambi 2', 'Catamaran', sans-serif;
}
.mono { font-family: 'Space Mono', monospace; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.ticker {
  background: linear-gradient(90deg, var(--brand-dark), #15803d 55%, var(--accent));
  color: #fff;
  font-size: .82rem;
  overflow: hidden;
}
.ticker-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 7px 20px; flex-wrap: wrap;
}
.onair {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 12px 4px 8px;
  font-weight: 700; letter-spacing: .5px;
  flex-shrink: 0;
}
.onair-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1) } 50% { opacity: .35; transform: scale(.7) } }
.wave { display: flex; align-items: center; gap: 2px; height: 14px; flex-shrink: 0; }
.wave span {
  display: block; width: 3px; background: #bbf7d0; border-radius: 2px;
  animation: bounce 1s ease-in-out infinite;
}
.wave span:nth-child(1) { height: 40%; animation-delay: 0s }
.wave span:nth-child(2) { height: 100%; animation-delay: .15s }
.wave span:nth-child(3) { height: 60%; animation-delay: .3s }
.wave span:nth-child(4) { height: 85%; animation-delay: .45s }
.wave span:nth-child(5) { height: 50%; animation-delay: .6s }
@keyframes bounce { 0%, 100% { transform: scaleY(.4) } 50% { transform: scaleY(1) } }
.show-now { font-weight: 700; }
.show-now span { font-weight: 400; opacity: .85; }
.ticker-right { margin-left: auto; display: flex; gap: 14px; align-items: center; flex-shrink: 0; }
.ticker .mono { opacity: .9; }

.navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 3px solid var(--brand-bright);
  box-shadow: 0 2px 14px -8px rgba(0, 0, 0, .15);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 20px;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 64px; width: auto; max-width: 200px;
  display: block; object-fit: contain;
}
.nav { display: flex; gap: 6px; align-items: center; flex: 1; flex-wrap: wrap; }
.nav > .has-drop { position: relative; }
.nav a:not(.live-btn), .nav button {
  font-size: 1.02rem; font-weight: 700; color: var(--ink);
  padding: 10px 14px; border-radius: 8px; border: none; background: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: .18s;
  font-family: inherit;
}
.nav > .has-drop > button:hover, .nav a:not(.live-btn):hover { color: var(--brand-dark); background: var(--mint); }
.caret { font-size: .7rem; opacity: .6; transition: .2s; }
.has-drop:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 200px; padding: 8px;
  display: none; flex-direction: column; gap: 2px;
  z-index: 60;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { display: flex; }
.dropdown a { font-weight: 600; font-size: .95rem; padding: 9px 12px; border-radius: 8px; }
.dropdown a:hover { background: var(--mint); color: var(--brand-dark); }
.nav a.live-btn {
  background: linear-gradient(120deg, var(--brand), var(--accent)) !important;
  color: #fff !important;
  padding: 11px 22px !important; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(13, 148, 136, .55);
  margin-left: auto;
}
.nav a.live-btn:hover { filter: brightness(1.08); }
.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.home-layout {
  max-width: 1280px; margin: 0 auto;
  padding: 32px 20px 36px;
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(0, .85fr);
  gap: 20px;
  align-items: start;
}
.home-main {
  display: grid;
  grid-template-columns: 1.6fr .75fr;
  gap: 20px;
  min-width: 0;
}
.home-main .featured { grid-column: 1; grid-row: 2; }
.home-main .player-card { grid-column: 2; grid-row: 2; }
.home-banner {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  padding: 18px 24px;
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(74, 222, 128, .22), transparent 55%),
    linear-gradient(120deg, #052e16, #0a3a32 55%, #134e4a);
  color: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-height: 88px;
  overflow: hidden;
}
.home-banner strong {
  display: block;
  font-family: 'Sora', 'Catamaran', sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  letter-spacing: .04em;
}
.home-banner span { opacity: .85; font-size: .95rem; }
.home-banner .banner-chip {
  flex-shrink: 0;
  background: linear-gradient(145deg, #86efac, var(--brand));
  color: #052e16;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.featured {
  background: var(--paper);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: block; color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.featured.is-link { cursor: pointer; }
.featured.is-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -12px rgba(16, 80, 50, .4);
}
.featured-media {
  height: 300px;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .16), transparent 45%),
    linear-gradient(135deg, #14532d 0%, #16a34a 55%, #2ec4b6 100%);
  position: relative;
  display: flex; align-items: flex-end;
}
.featured-media::after {
  content: "ஏஐ";
  position: absolute; right: 24px; top: 24px;
  font-family: 'Baloo Thambi 2'; font-size: 5rem; font-weight: 800;
  color: rgba(255, 255, 255, .18);
}
.featured-media.has-photo::after { display: none; }
.tag {
  display: inline-block; font-size: .78rem; font-weight: 700;
  background: var(--teal); color: #fff; padding: 5px 12px; border-radius: 999px;
  margin: 18px; letter-spacing: .5px;
}
.featured-body { padding: 22px 26px 26px; }
.featured-body h2 { font-size: 1.6rem; font-weight: 800; line-height: 1.35; margin-bottom: 10px; }
.featured-body p { color: #3f5a52; font-size: .97rem; }
.meta { margin-top: 14px; font-size: .82rem; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; }

.player-card {
  background: linear-gradient(165deg, #041218, #0a3a32 55%, #14532d);
  border-radius: 18px; color: #fff; padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden; min-height: 0;
}
.player-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(74, 222, 128, .22), transparent 50%);
  pointer-events: none;
}
.player-top, .player-wave, .player-tabs, .player-panes { position: relative; z-index: 1; }
.player-top { display: flex; align-items: center; gap: 14px; }
.play-btn {
  width: 58px; height: 58px; border-radius: 50%; background: #fff; color: var(--brand-dark);
  border: none; font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; box-shadow: 0 6px 16px -4px rgba(0, 0, 0, .35);
  transition: .2s;
}
.play-btn:hover { transform: scale(1.06); }
.show-name { font-size: 1.15rem; font-weight: 800; }
.show-time { font-size: .85rem; opacity: .85; }
.player-wave { display: flex; align-items: center; gap: 3px; height: 34px; margin: 4px 0; }
.player-wave span {
  flex: 1; background: rgba(255, 255, 255, .55); border-radius: 3px;
  animation: bounce 1.1s ease-in-out infinite;
}
.player-wave span:nth-child(odd) { background: var(--brand-bright); }
.player-wave span:nth-child(1) { height: 30%; animation-delay: .1s }
.player-wave span:nth-child(2) { height: 70%; animation-delay: .3s }
.player-wave span:nth-child(3) { height: 100%; animation-delay: 0s }
.player-wave span:nth-child(4) { height: 55%; animation-delay: .5s }
.player-wave span:nth-child(5) { height: 85%; animation-delay: .2s }
.player-wave span:nth-child(6) { height: 40%; animation-delay: .4s }
.player-wave span:nth-child(7) { height: 75%; animation-delay: .15s }
.player-wave span:nth-child(8) { height: 50%; animation-delay: .35s }
.player-wave span:nth-child(9) { height: 90%; animation-delay: .05s }
.player-wave span:nth-child(10) { height: 35%; animation-delay: .45s }
.player-tabs { display: flex; gap: 6px; }
.ptab {
  flex: 1; background: rgba(255, 255, 255, .12); border: none; color: #fff; font-weight: 700;
  font-size: .78rem; padding: 8px 6px; border-radius: 8px; cursor: pointer; opacity: .8;
  font-family: 'Catamaran', sans-serif; transition: .15s;
}
.ptab.active { background: #fff; color: var(--brand-dark); opacity: 1; }
.player-panes {
  flex: 1; min-height: 0; overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 12px; font-size: .82rem;
}
.pane { display: none; }
.pane.active { display: block; }
.schedule-row {
  display: flex; justify-content: space-between; gap: 8px; padding: 7px 0;
  opacity: .9; border: none; background: none; color: inherit; width: 100%;
  font: inherit; text-align: left; cursor: pointer; border-radius: 8px;
}
.schedule-row:hover:not(:disabled) { background: rgba(255, 255, 255, .08); }
.schedule-row.active { font-weight: 800; opacity: 1; color: var(--brand-bright); }
.schedule-row:disabled { opacity: .55; cursor: default; }
.schedule-row .soon { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; opacity: .8; }

.ann-sidebar {
  position: sticky; top: 76px; align-self: start;
  max-height: calc(100vh - 92px);
  display: flex; flex-direction: column; min-height: 0;
}
.main-stack { grid-column: 1 / -1; grid-row: 3; min-width: 0; }
.main-stack .section { max-width: none; margin: 0; padding: 4px 0 28px; }
.main-stack .grid { grid-template-columns: repeat(3, 1fr); }

.section { max-width: 1280px; margin: 0 auto; padding: 8px 20px 36px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px; border-bottom: 2px solid var(--line); padding-bottom: 10px;
}
.section-head h3 {
  font-size: 1.4rem; font-weight: 800; color: var(--brand-dark);
  display: flex; align-items: center; gap: 10px;
}
.section-head h3::before {
  content: ""; width: 8px; height: 24px;
  background: linear-gradient(var(--brand-bright), var(--accent));
  border-radius: 4px;
}
.section-head a { font-size: .88rem; font-weight: 700; color: var(--teal); }

.pillrow { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pill {
  font-size: .88rem; font-weight: 700; padding: 8px 16px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink);
  cursor: pointer; transition: .18s;
}
.pill:hover, .pill.on { background: var(--brand); color: #fff; border-color: var(--brand); }

.edition-bar { margin-bottom: 18px; }
.edition-bar .dayrow { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.day-pill {
  font-family: inherit; font-size: .78rem; font-weight: 700; padding: 8px 10px;
  border-radius: 10px; border: 2px solid var(--line); background: var(--paper); cursor: pointer;
  position: relative; transition: .18s; flex: 1 1 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.2;
}
.day-pill-name { font-size: .78rem; font-weight: 800; }
.day-pill-date { font-size: .68rem; font-weight: 600; color: var(--muted); }
.day-pill.on .day-pill-date { color: rgba(255, 255, 255, .85); }
.day-pill.today { border-color: var(--brand-bright); }
.day-pill.today .day-pill-name { color: var(--brand-dark); }
.day-pill.on { background: var(--teal); color: #fff; border-color: var(--teal); }
.day-pill.on .day-pill-name { color: #fff; }
.day-count {
  position: absolute; top: -6px; right: -4px; font-size: .65rem; font-weight: 800;
  background: var(--brand); color: #fff; border-radius: 999px; min-width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.slot-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}
.slotrow { display: flex; gap: 8px; flex-shrink: 0; }
.slot-btn {
  font-family: inherit; font-size: .88rem; font-weight: 700; padding: 8px 18px; border-radius: 999px;
  border: 2px solid var(--line); background: var(--paper); cursor: pointer; transition: .18s;
}
.slot-btn.on { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }
.edition-label {
  font-size: .88rem; color: var(--ink); font-weight: 600; margin: 0 0 0 auto;
  text-align: right; flex: 1; min-width: 0; line-height: 1.4;
}
.edition-label .edition-date { color: var(--brand-dark); font-weight: 800; }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: .2s; display: block; color: inherit;
}
.card.is-link { cursor: pointer; }
.card.is-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { height: 130px; position: relative; }
.card-img span {
  position: absolute; left: 10px; bottom: 10px; font-size: .7rem; font-weight: 700;
  background: rgba(0, 0, 0, .45); color: #fff; padding: 3px 10px; border-radius: 999px;
}
.c1 { background: linear-gradient(135deg, #16a34a, #4ade80); }
.c2 { background: linear-gradient(135deg, #0f766e, #2ec4b6); }
.c3 { background: linear-gradient(135deg, #14532d, #22c55e); }
.c4 { background: linear-gradient(135deg, #134e4a, #86efac); }
.card-body { padding: 14px 16px 18px; }
.card-body h4 { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.card-body .meta { font-size: .78rem; margin-top: 8px; }

.scroller { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.rec-card {
  flex: 0 0 220px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  color: inherit;
}
.rec-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.rec-thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #fff; }
.rec-body { padding: 12px 14px; }
.rec-body h5 { font-size: .95rem; font-weight: 800; margin-bottom: 4px; }
.rec-body p { font-size: .78rem; color: var(--muted); }

.board { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 6px; }
.ann-sidebar .section-head { margin-bottom: 14px; }
.ann-sidebar .board { flex: 1; overflow-y: auto; min-height: 0; }
.board-group { padding: 14px; border-bottom: 1px dashed var(--line); }
.board-group:last-child { border-bottom: none; }
.board-group h5 {
  font-size: .92rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.board-group h5::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-bright); }
.notice {
  font-size: .85rem; padding: 9px 10px; border-radius: 8px; margin-bottom: 6px;
  background: var(--cream); border-left: 3px solid var(--brand-bright);
}
.notice.somber { border-left-color: #8a8378; background: #f4f7f5; color: #5d6b66; }
.notice.cheer { border-left-color: var(--teal); }
.notice.clickable { cursor: pointer; }
.notice.clickable:hover { background: var(--mint); transform: translateX(2px); }
.board-empty, .board-loading {
  padding: 24px 14px; text-align: center; font-size: .85rem; color: var(--muted);
}
.ann-block { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.ads-block { flex-shrink: 0; margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--line); }
.ad-cards { display: flex; flex-direction: column; gap: 10px; }
.ad-card {
  display: block; background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; aspect-ratio: 1.75 / 1;
}
.ad-card:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.ad-card img { width: 100%; height: 100%; object-fit: contain; background: var(--cream); }
.ad-placeholder {
  background: linear-gradient(120deg, var(--mint), var(--cream));
  border: 1px dashed var(--brand); border-radius: 10px; text-align: center; padding: 14px;
  font-size: .82rem; font-weight: 700; color: var(--brand-dark);
}

.promo-lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(6, 24, 32, .82);
  opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s;
}
.promo-lightbox.open { opacity: 1; visibility: visible; }
.promo-lightbox-panel {
  position: relative; max-width: min(960px, 100%);
  max-height: min(90vh, 100%);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  background: var(--paper);
  padding: 8px;
}
.promo-lightbox-close {
  position: absolute; top: 10px; right: 10px;
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: rgba(0, 0, 0, .55); color: #fff;
  font-size: 1.4rem; cursor: pointer;
}
.ann-detail-panel { max-width: 520px; width: min(92vw, 520px); padding: 20px; }
.ann-detail-panel img { width: 100%; max-height: 50vh; object-fit: contain; border-radius: 10px; margin-bottom: 14px; }
.ann-detail-panel h4 { font-family: 'Baloo Thambi 2', sans-serif; font-size: 1.15rem; color: var(--brand-dark); margin-bottom: 10px; }
.ann-detail-panel .ann-meta { font-size: .82rem; color: var(--muted); margin-bottom: 12px; }
.ann-detail-panel .ann-body { font-size: .92rem; line-height: 1.65; white-space: pre-wrap; }

.page-wrap { max-width: 1100px; margin: 0 auto; padding: 28px 20px 56px; }
.page-head { margin-bottom: 22px; }
.page-head h1 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--brand-dark); margin-bottom: 6px; }
.page-head p { color: var(--muted); }
.subnav-back { margin-left: auto; font-weight: 700; color: var(--teal); }
.prose { max-width: 720px; }
.prose p { margin-bottom: 1em; font-size: 1.05rem; color: #335049; }
.station-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
}
.station-tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
}
.station-tile h3 { font-size: 1.1rem; color: var(--brand-dark); margin-bottom: 4px; }
.station-tile p { font-size: .88rem; color: var(--muted); }
.badge-live, .badge-soon {
  display: inline-block; margin-top: 10px; font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.badge-live { background: var(--mint); color: #14532d; }
.badge-soon { background: #e8eeeb; color: var(--muted); }

.empty, .loading { padding: 48px 20px; text-align: center; color: var(--muted); grid-column: 1 / -1; }
.article-hero {
  height: 280px; border-radius: 16px; margin-bottom: 24px;
  background: linear-gradient(135deg, #14532d, #16a34a 55%, #2ec4b6);
}
.article-hero.has-cover { background-size: cover; background-position: center; }
.lead { font-size: 1.08rem; color: #3f5a52; margin-bottom: 24px; font-weight: 500; }
.body-copy { font-size: 1.02rem; }
.body-copy p { margin-bottom: 1em; }
.source { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.source a { color: var(--teal); font-weight: 700; }
.state { padding: 48px 20px; text-align: center; color: var(--muted); }
.state.err { color: var(--brand-dark); }

footer { background: var(--ink); color: #d8efe8; margin-top: 20px; }
.foot-inner {
  max-width: 1280px; margin: 0 auto; padding: 46px 20px 24px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.foot-inner h6 { font-family: 'Baloo Thambi 2', sans-serif; font-size: 1.05rem; margin-bottom: 14px; color: var(--brand-bright); }
.foot-inner ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: .9rem; opacity: .85; }
.foot-logo {
  height: 96px; width: auto; max-width: 220px;
  margin-bottom: 14px; border-radius: 14px;
  background: #fff; padding: 8px;
}
.foot-inner p { font-size: .85rem; opacity: .7; line-height: 1.7; }
.copyright {
  text-align: center; font-size: .8rem; padding: 18px; opacity: .55;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

@media (max-width: 1000px) {
  .home-layout { grid-template-columns: 1fr; padding-top: 20px; }
  .home-main { grid-template-columns: 1fr; }
  .home-main .featured, .home-main .player-card, .home-banner, .main-stack { grid-column: 1; grid-row: auto; }
  .ann-sidebar { position: static; max-height: none; }
  .main-stack .grid { grid-template-columns: repeat(2, 1fr); }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav a.live-btn { margin-left: 0; text-align: center; justify-content: center; }
  .dropdown { position: static; box-shadow: none; border: none; padding-left: 12px; }
  .has-drop:hover .dropdown, .has-drop:focus-within .dropdown { display: flex; }
}
@media (max-width: 560px) {
  .grid, .main-stack .grid { grid-template-columns: 1fr; }
  .nav-inner { flex-wrap: wrap; }
  .foot-inner { grid-template-columns: 1fr; }
  .day-pill { font-size: .7rem; padding: 6px 4px; flex: 1 1 calc(33.33% - 6px); }
  .home-banner { flex-direction: column; align-items: flex-start; }
  .featured-media { height: 200px; }
  .brand-logo { height: 52px; max-width: 160px; }
}

@media (prefers-reduced-motion: reduce) {
  .onair-dot, .wave span, .player-wave span { animation: none; }
}
