:root {
  --red: #df171b;
  --red-dark: #a80d12;
  --ink: #111217;
  --text: #252936;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --yellow: #ffd41c;
  --purple: #b414ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  width: min(410px, 62vw);
  max-height: 78px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.nav-links a {
  padding: 12px 0;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover {
  border-color: var(--red);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 24px;
}

.breaking {
  border-top: 1px solid var(--line);
  background: #fff;
}

.breaking-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 14px;
}

.breaking strong {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.breaking span {
  color: var(--muted);
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, .8fr);
  gap: 32px;
  padding: 38px 0 42px;
}

.lead-story {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17,18,23,.9), rgba(17,18,23,.62)),
    radial-gradient(circle at 82% 22%, rgba(255,212,28,.52), transparent 28%),
    linear-gradient(135deg, var(--red), #16171d 58%);
  background-size: cover;
  background-position: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.lead-story .eyebrow {
  color: var(--yellow);
}

h1, h2, h3, p {
  margin-top: 0;
}

.lead-story h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: .93;
  letter-spacing: 0;
}

.lead-story p {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.story-meta span,
.live-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.on-air {
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  background: #fff;
  padding: 26px;
  align-self: start;
}

.player-logo {
  width: 100%;
  margin: 0 auto 24px;
}

.on-air h2 {
  margin: 14px 0;
  color: var(--ink);
  font-size: 30px;
}

audio {
  width: 100%;
  margin: 8px 0 14px;
}

.primary-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.primary-btn:hover {
  background: var(--red);
}

.small {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 48px 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.section-title h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.section-title.compact {
  margin-bottom: 16px;
}

.section-title.compact h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.sponsors-section {
  padding-top: 34px;
  padding-bottom: 22px;
}

.sponsors-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 0 16px;
  scroll-snap-type: x mandatory;
}

.sponsor-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  scroll-snap-align: start;
}

.sponsor-card img {
  max-height: 88px;
  object-fit: contain;
}

.sponsor-card span {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.news-section {
  background: var(--soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
}

.news-image-link {
  display: block;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eceff3;
}

.card .eyebrow,
.card h3,
.card p {
  margin-left: 18px;
  margin-right: 18px;
}

.card .eyebrow {
  margin-top: 18px;
}

.card h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.card h3 a {
  color: inherit;
}

.card p {
  color: var(--muted);
  line-height: 1.5;
}

.read-more {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 6px 18px 0;
  border: 2px solid var(--red);
  background: var(--red);
  color: #fff;
  padding: 9px 14px;
  font-weight: 900;
}

.read-more:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 18px 18px;
}

.share-actions a,
.share-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 9px 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.share-actions a:first-child {
  border-color: #18a94a;
  background: #18a94a;
  color: #fff;
}

.share-actions a:nth-child(2) {
  border-color: #1f5fbf;
  color: #1f5fbf;
}

.news-detail {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  background: #fff;
}

.news-detail[hidden] {
  display: none;
}

.news-detail > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  background: #eceff3;
}

.news-detail-body {
  padding: 26px 26px 26px 0;
}

.news-detail h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 56px);
  line-height: .98;
}

.news-detail p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.news-full-text p {
  margin: 0 0 16px;
}

.detail-share {
  margin-left: 0;
  margin-right: 0;
}

.schedule {
  border-top: 1px solid var(--line);
}

.schedule-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-time {
  color: var(--red);
  font-weight: 900;
}

.schedule strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 20px;
}

.schedule p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  background: var(--ink);
  color: #fff;
}

.contact .eyebrow {
  color: var(--yellow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}

.contact h2 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
}

.contact p {
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}

.contact-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  padding: 24px;
}

.contact-card p {
  margin-bottom: 14px;
}

.footer {
  background: #090a0d;
  color: rgba(255,255,255,.72);
  padding: 20px 0;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav {
    min-height: 78px;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 14px 0;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .news-detail-body {
    padding: 22px;
  }

  .news-detail > img {
    min-height: 220px;
  }

  .lead-story {
    min-height: 360px;
    padding: 24px;
  }

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

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .topbar {
    font-size: 12px;
  }

  .logo {
    width: min(330px, 72vw);
  }

  .lead-story h1 {
    font-size: 42px;
  }

  .section {
    padding: 38px 0;
  }
}
