:root {
  --purple: #21005a;
  --purple-2: #120039;
  --blue: #1d5cff;
  --orange: #ff6b00;
  --orange-2: #ff8a00;
  --gold: #ffd84d;
  --warm: #fff8df;
  --bg: #f8f8fa;
  --line: #ececf2;
  --text: #1e1e1e;
  --muted: #6f6a82;
  --shadow: 0 18px 44px rgba(18, 0, 57, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1440px, calc(100% - 48px)); margin: 0 auto; }

.topbar {
  height: 40px;
  background: linear-gradient(90deg, var(--purple-2), #040014);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.topbar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.breaking { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.breaking span {
  background: var(--orange);
  padding: 7px 13px;
  border-radius: 8px;
  text-transform: uppercase;
  margin-right: 12px;
  font-size: 12px;
  font-weight: 800;
}
.socials, .footer-socials { display: flex; gap: 14px; align-items: center; }
.socials a, .footer-socials a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

.site-header {
  height: 110px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(33, 0, 90, .05);
}
.header__inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 24px; min-width: 420px; }
.brand img { width: 178px; height: auto; }
.brand strong { display: block; color: #101044; font-size: clamp(24px, 2vw, 32px); line-height: 1; }
.brand em { display: block; color: #ff3d00; font-style: normal; font-weight: 700; font-size: 18px; margin-top: 8px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 800; text-transform: uppercase; color: #09013c; }
.main-nav__list { display: flex; align-items: center; gap: 32px; margin: 0; }
.main-nav, .main-nav ul { list-style: none; padding: 0; }
.main-nav li { display: flex; align-items: center; }
.main-nav a { position: relative; padding: 43px 0 40px; }
.main-nav a.active, .main-nav a:hover, .main-nav .current-menu-item > a { color: #ff3500; }
.main-nav a.active::after, .main-nav a:hover::after, .main-nav .current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  height: 3px;
  background: #ff3500;
}
.listen-btn {
  background: linear-gradient(135deg, #ff3500, var(--orange));
  color: #fff;
  border: 0;
  border-radius: 9px;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.listen-btn.is-playing {
  background: linear-gradient(135deg, #1fb85b, #0a8e42);
}
.live-audio-control {
  display: grid;
  gap: 6px;
  justify-items: stretch;
  width: 180px;
}
.header-volume {
  width: 100%;
  accent-color: var(--orange);
}
.menu-toggle { display: none; border: 0; background: none; color: var(--purple); font-size: 30px; margin-left: auto; }

.page-main { background: var(--bg); }
.page-hero {
  padding: 54px 0;
  color: #fff;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}
.page-hero p { max-width: 720px; margin: 12px 0 0; font-weight: 600; }
.purple-hero { background: linear-gradient(135deg, var(--purple), var(--purple-2)); }
.orange-hero { background: linear-gradient(135deg, var(--orange), var(--orange-2)); }
.yellow-hero { background: linear-gradient(135deg, var(--gold), #ffb600); color: var(--purple); }
.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 52px 0;
}
.about-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
}
.signature {
  display: block;
  margin-top: 24px;
  color: var(--purple);
  font-family: "Dancing Script", cursive;
  font-size: 28px;
}
.mission-band { background: var(--gold); padding: 44px 0; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}
.objectives { padding: 48px 0; }
.objectives ul {
  columns: 2;
  gap: 42px;
  padding-left: 22px;
}
.schedule-list, .news-page, .province-grid, .rates-grid, .commercial-note, .contact-grid { padding: 46px 0; }
.schedule-table {
  display: grid;
  gap: 12px;
}
.schedule-table div,
.province-card,
.rate-card,
.contact-grid article,
.commercial-note,
.page-card {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.schedule-table div:nth-child(even),
.province-card:nth-child(even),
.rate-card:nth-child(even),
.contact-grid article:nth-child(even) { border-color: var(--orange); }
.schedule-table div {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.schedule-table strong { color: var(--orange); }
.schedule-table span { color: var(--purple); font-weight: 800; }
.schedule-table em { color: var(--muted); font-style: normal; }
.province-grid,
.rates-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.province-card h2,
.rate-card h2,
.contact-grid h2 { margin-top: 0; color: var(--purple); }
.rate-card span {
  display: inline-grid;
  place-items: center;
  min-width: 68px;
  min-height: 68px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}
.page-shell { padding: 48px 0; }
.page-card { min-height: 260px; }

.live-section { padding: 18px 0 24px; }
.live-grid {
  display: grid;
  grid-template-columns: .82fr 1.85fr 280px;
  gap: 16px;
  align-items: stretch;
}
.panel, .coverage-card, .program-card, .news-block {
  background: #fff;
  border: 2px solid #1d5cff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.panel:nth-child(odd), .program-card:nth-child(odd), .news-grid article:nth-child(odd) { border-color: var(--orange); }
.panel:nth-child(even), .program-card:nth-child(even), .news-grid article:nth-child(even) { border-color: #1d5cff; }
.panel:hover, .coverage-card:hover, .program-card:hover, .news-block:hover, .quick-card:hover, .news-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(255, 107, 0, .18), 0 0 0 3px rgba(29, 92, 255, .10);
}
.panel::before, .coverage-card::before, .program-card::before, .news-block::before, .quick-card::before, .news-grid article::before, .coverage-grid article::before, .rate-card::before, .social-panel::before, .contact-grid > article::before, .mission-grid article::before, .news-system-grid article::before, .source-panel::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.58) 50%, transparent 60%);
  transform: translateX(-75%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
}
.panel:hover::before, .coverage-card:hover::before, .program-card:hover::before, .news-block:hover::before, .quick-card:hover::before, .news-grid article:hover::before, .coverage-grid article:hover::before, .rate-card:hover::before, .social-panel:hover::before, .contact-grid > article:hover::before, .mission-grid article:hover::before, .news-system-grid article:hover::before, .source-panel:hover::before {
  opacity: 1;
  animation: site-glint .72s ease forwards;
}
@keyframes site-glint {
  from { transform: translateX(-75%) rotate(8deg); }
  to { transform: translateX(75%) rotate(8deg); }
}
.panel { min-height: 458px; padding: 24px 14px; text-align: center; }
.panel h2, .coverage-card h2 { margin: 0 0 7px; color: #08013c; font-size: 17px; text-transform: uppercase; }
.panel p, .coverage-card p { margin: 0; color: #100845; font-size: 12px; font-weight: 600; }
.live-kicker { color: #ff2100 !important; text-align: left; margin-bottom: 8px !important; font-size: 16px !important; font-weight: 800 !important; text-transform: uppercase; }
.live-kicker span, .live-badge i { width: 9px; height: 9px; background: #ff2100; border-radius: 50%; display: inline-block; margin-right: 7px; }
.radio-logo { width: min(225px, 74%); aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin: 28px auto 18px; border: 4px solid #fff; box-shadow: 0 8px 18px rgba(0,0,0,.26); }
.audio-player {
  min-height: 74px;
  border-radius: 6px;
  background: linear-gradient(135deg, #100039, var(--purple));
  color: #fff;
  display: grid;
  grid-template-columns: 46px 45px 1fr 64px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-align: left;
}
.play-button, .video-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.audio-time { font-size: 12px; }
.audio-line { height: 3px; border-radius: 3px; background: rgba(255,255,255,.22); }
.audio-line span { display: block; width: 42%; height: 100%; background: var(--orange); border-radius: inherit; }
.audio-player strong { grid-column: 4; grid-row: 1; color: var(--orange); text-transform: uppercase; font-size: 12px; justify-self: end; }
.volume { grid-column: 3 / 5; grid-row: 2; accent-color: var(--orange); width: 100%; }

.chat-panel { border-left: 1px solid #dddde9; border-right: 1px solid #dddde9; }
.chat-list { margin-top: 32px; display: grid; gap: 18px; text-align: left; }
.chat-msg { display: grid; grid-template-columns: 28px 1fr 58px; gap: 12px; align-items: start; }
.chat-msg span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}
.chat-msg.orange span { background: var(--orange); }
.chat-msg.studio span { font-size: 8px; }
.chat-msg strong { color: #0b0642; font-size: 12px; }
.chat-msg p { margin-top: 1px; font-size: 10px; color: #0b0642; }
.chat-msg time { color: #a09dad; font-size: 10px; }
.chat-form { margin-top: 28px; display: grid; grid-template-columns: 1fr 74px; gap: 10px; }
.chat-form input {
  min-height: 40px;
  border: 1px solid #d8d8e5;
  border-radius: 5px;
  padding: 0 14px;
  font: inherit;
  font-size: 12px;
}
.chat-form button, .full-btn {
  border: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple), #3f0c9b);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.video-box { margin: 28px 0 12px; border-radius: 6px; overflow: hidden; position: relative; aspect-ratio: 16 / 9; background: #14020d; min-height: 305px; }
.video-box img { width: 100%; height: 100%; object-fit: cover; }
.video-box::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.18); }
.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  color: #fff;
  background: rgba(0,0,0,.6);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.video-play { position: absolute; z-index: 1; inset: 0; margin: auto; width: 74px; height: 74px; font-size: 0; background: rgba(0,0,0,.34); }
.video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
  margin-left: 5px;
}
.video-play.is-playing { background: rgba(255, 107, 0, .88); }
.video-play.is-playing::before {
  width: 22px;
  height: 28px;
  border: 0;
  margin-left: 0;
  background: linear-gradient(90deg, #fff 0 7px, transparent 7px 15px, #fff 15px 22px);
}
.full-btn { width: 100%; height: 42px; text-transform: uppercase; }
.full-btn span { float: right; padding-right: 10px; }

.quick-cards { display: grid; gap: 13px; }
.quick-card {
  min-height: 112px;
  border-radius: 8px;
  border: 2px solid #1d5cff;
  color: #fff;
  padding: 17px 16px 13px 78px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.quick-card.orange { border-color: var(--orange); }
.quick-card.purple { background: linear-gradient(135deg, #351085, var(--purple)); }
.quick-card.orange { background: linear-gradient(135deg, var(--orange-2), #ff4b00); }
.quick-card span {
  position: absolute;
  left: 17px;
  top: 19px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
}
.quick-card.orange span { color: var(--orange); }
.quick-card strong { display: block; font-size: 18px; }
.quick-card p { color: #fff; margin: 3px 0 4px; font-size: 12px; font-weight: 500; }
.quick-card em { font-style: normal; font-size: 12px; font-weight: 800; }

.programming-section { padding: 4px 0 20px; text-align: center; }
.page-hero {
  padding: 44px 0 38px;
  background:
    linear-gradient(110deg, rgba(33,0,90,.92), rgba(33,0,90,.72)),
    linear-gradient(135deg, var(--purple), var(--orange));
  color: #fff;
  border-bottom: 5px solid var(--orange);
}
.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  color: #fff;
}
.page-hero p { max-width: 760px; margin: 0; font-size: 18px; font-weight: 600; }
.page-hero .eyebrow { color: var(--gold); }
.page-section { padding-top: 30px; padding-bottom: 36px; }
.about-section {
  margin: 18px 0 26px;
  background: linear-gradient(180deg, var(--warm), #fff 42%, #fff);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.about-ribbon {
  min-height: 82px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #ffc23a);
  color: #fff;
  font-family: "Dancing Script", cursive;
  font-size: clamp(32px, 4vw, 48px);
  text-shadow: 0 2px 8px rgba(33, 0, 90, .22);
}
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: center;
  padding: 42px 0;
}
.about-photo {
  margin: 0;
  border: 2px solid var(--orange);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.about-copy h2, .contact-section h2 {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}
.about-copy p { color: #312c46; font-size: 15px; margin: 0 0 13px; }
.signature {
  display: block;
  margin-top: 20px;
  color: var(--purple);
  font-family: "Dancing Script", cursive;
  font-size: 30px;
}
.about-copy span { color: #0b0642; font-weight: 700; font-size: 13px; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  padding: 34px 0;
}
.mission-grid article {
  background: rgba(255, 216, 77, .56);
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.mission-grid h3 { margin: 0 0 14px; color: var(--purple); font-size: 26px; }
.mission-grid p { margin: 0; color: #312c46; font-size: 14px; }
.page-about { margin-top: 0; margin-bottom: 0; }
.objectives-block {
  padding: 28px 0 44px;
}
.objectives-block > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px 32px;
}
.objectives-block ul { margin: 0; padding-left: 20px; color: #241d44; font-weight: 600; }
.objectives-block li { margin: 0 0 10px; }
.section-title { margin: 0 auto 14px; color: #0b0642; text-align: center; text-transform: uppercase; font-size: 18px; position: relative; }
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--orange);
  margin: 8px auto 0;
}
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.program-card { min-height: 280px; padding: 26px 26px 18px; }
.program-card span {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--purple);
  color: #fff;
  font-size: 24px;
}
.program-card:nth-child(even) span { background: var(--orange); }
.program-card time { color: #ff3000; font-size: 13px; font-weight: 800; }
.program-card h3 { margin: 12px 0 6px; color: #07013d; font-size: 19px; }
.program-card p { margin: 9px 0; color: #0b0642; font-size: 13px; font-weight: 500; }
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  border-radius: 4px;
  padding: 0 34px;
  margin-top: 14px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  background: #fff;
}
.schedule-wrap {
  margin-top: 24px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: left;
}
.schedule-wrap h3 { margin: 0 0 14px; color: var(--purple); text-align: center; font-size: 22px; }
.schedule-table {
  display: grid;
  gap: 1px;
  background: #deddec;
  border-radius: 7px;
  overflow: hidden;
}
.schedule-table > div {
  display: grid;
  grid-template-columns: 130px 160px 1.2fr 1.25fr;
  gap: 0;
  background: #fff;
}
.schedule-table span, .schedule-table strong {
  padding: 10px 12px;
  font-size: 13px;
  color: #0b0642;
}
.schedule-table strong { color: var(--purple); }
.schedule-head {
  background: linear-gradient(135deg, var(--purple), #341087) !important;
}
.schedule-head span {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.content-row { display: grid; grid-template-columns: 1fr 340px; gap: 18px; padding: 10px 0 20px; align-items: stretch; }
.news-block { padding: 20px; }
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.news-grid article {
  min-height: 105px;
  border: 2px solid #1d5cff;
  border-radius: 7px;
  padding: 14px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.news-grid .main-news { grid-row: span 3; min-height: 300px; }
.main-news div { height: 150px; border-radius: 6px; background: linear-gradient(135deg, var(--purple), var(--orange)); margin-bottom: 14px; }
.news-grid span { color: var(--orange); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.news-grid h3 { color: #0b0642; margin: 6px 0; font-size: 18px; line-height: 1.3; }
.news-grid p { color: var(--muted); margin: 0; font-size: 13px; }
.news-system-section { padding: 4px 0 36px; }
.news-system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.news-system-grid article, .source-panel {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.news-system-grid article:nth-child(odd), .source-panel:nth-child(odd) { border-color: var(--orange); }
.news-system-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}
.news-system-grid article:nth-child(even) span { background: var(--orange); }
.news-system-grid h3, .source-panel h3 {
  margin: 0 0 10px;
  color: var(--purple);
  font-size: 21px;
}
.news-system-grid p, .source-panel p {
  margin: 0;
  color: #2f2a45;
  font-size: 14px;
  font-weight: 600;
}
.news-source-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
  margin-top: 16px;
}
.source-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #0b0642;
  font-weight: 700;
}
.source-panel li { margin-bottom: 8px; }
.featured-source {
  background: linear-gradient(135deg, var(--purple), #110033);
  border-color: var(--orange);
}
.featured-source h3, .featured-source p, .featured-source strong { color: #fff; }
.featured-source strong { display: block; margin-top: 14px; }

.coverage-card { padding: 28px 54px; }
.coverage-card h2 { text-align: left; }
.coverage-card ul { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 12px; color: #0b0642; font-weight: 800; text-transform: uppercase; }
.coverage-card a:not(.outline-btn) { display: inline-flex; color: #0b0642; transition: color .18s ease, transform .18s ease; }
.coverage-card a:not(.outline-btn):hover { color: var(--orange); transform: translateX(4px); }
.coverage-detail, .rates-section { padding: 18px 0 30px; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.coverage-grid article, .rate-card, .social-panel, .contact-grid > article {
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.coverage-grid article:nth-child(odd), .rate-card:nth-child(odd), .contact-grid > article { border-color: var(--orange); }
.coverage-grid article:hover, .rate-card:hover, .social-panel:hover, .contact-grid > article:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(255, 107, 0, .18), 0 0 0 3px rgba(29, 92, 255, .10);
}
.coverage-grid a {
  display: inline-block;
  color: var(--orange);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 9px;
}
.coverage-grid p { margin: 0; color: #171044; font-size: 13px; font-weight: 600; }
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rate-card {
  background: linear-gradient(180deg, #fff, #fffaf0);
}
.rate-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--purple), #130045);
  color: #fff;
}
.rate-card h3 { margin: 0 0 18px; color: var(--purple); font-size: 24px; }
.rate-card.featured h3 { color: #fff; }
.rate-card dl { margin: 0; display: grid; gap: 10px; }
.rate-card dl div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: baseline;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  padding: 10px 12px;
}
.rate-card.featured dl div { border-color: rgba(255,255,255,.42); }
.rate-card dt, .rate-card dd { margin: 0; font-weight: 800; color: #0b0642; }
.rate-card strong { color: var(--orange); white-space: nowrap; }
.rate-card.featured dt, .rate-card.featured dd, .rate-card.featured strong { color: #fff; }
.contact-section {
  margin-top: 8px;
  padding: 42px 0;
  background: linear-gradient(110deg, rgba(33,0,90,.08), #fff 42%, rgba(255,107,0,.10));
  border-top: 3px solid var(--gold);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.contact-list, .social-panel { display: grid; gap: 12px; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0b0642;
  font-size: 20px;
  font-weight: 800;
}
.contact-list span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--warm);
  color: var(--orange);
  border: 1px solid var(--orange);
}
.social-panel {
  align-content: center;
  background: linear-gradient(135deg, var(--purple), #07001d);
}
.social-panel a {
  display: block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  padding: 13px 15px;
  color: #fff;
  font-weight: 800;
}

.footer {
  min-height: 220px;
  background: radial-gradient(circle at 80% 20%, #271072, #05001d 70%);
  color: #fff;
  padding: 26px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.25fr; gap: 52px; align-items: start; }
.footer img { width: 90px; border-radius: 50%; float: left; margin: 0 18px 20px 0; }
.footer h3 { margin: 8px 0 12px; font-size: 18px; }
.footer p { margin: 7px 0; color: #fff; font-size: 14px; }
.footer-socials a { width: 40px; height: 40px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.8); }
.promo { color: #ff4b00; display: block; margin-top: 18px; font-size: 22px; font-style: italic; }
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .38);
  z-index: 20;
}

body > footer:not(.footer),
[data-elementor-type="footer"],
.elementor-location-footer,
.elementor-4,
footer .elementor,
footer [data-elementor-type="wp-post"],
.hfe-footer,
.hfe-before-footer-wrap,
.hfe-after-footer-wrap {
  display: none !important;
}

@media (max-width: 1370px) {
  .header__inner { gap: 22px; }
  .brand { min-width: 350px; gap: 18px; }
  .brand img { width: 150px; }
  .brand strong { font-size: 25px; }
  .brand em { font-size: 16px; }
  .main-nav { gap: 20px; font-size: 12px; }
  .main-nav__list { gap: 20px; }
  .listen-btn { min-height: 48px; padding: 0 16px; font-size: 12px; }
  .live-audio-control { width: 160px; }
}

@media (max-width: 1500px) and (min-width: 1200px) {
  .container { width: min(100% - 40px, 1380px); }
  .header__inner { gap: 20px; }
  .brand { min-width: 335px; gap: 16px; }
  .brand img { width: 148px; }
  .brand strong { font-size: 25px; }
  .brand em { font-size: 16px; }
  .main-nav, .main-nav__list { gap: 18px; }
  .listen-btn { min-height: 48px; padding: 0 16px; font-size: 12px; }
  .live-audio-control { width: 160px; }
}

@media (max-width: 1199px) {
  .container { width: min(100% - 32px, 980px); }
  .site-header { height: auto; }
  .header__inner { min-height: 94px; flex-wrap: wrap; padding: 14px 0; }
  .brand { min-width: 0; flex: 1; }
  .brand img { width: 148px; }
  .brand strong { font-size: 24px; }
  .brand em { font-size: 15px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; }
  .live-audio-control {
    order: 6;
    width: 100%;
    grid-template-columns: auto 1fr;
    align-items: center;
    margin-top: 4px;
  }
  .main-nav.is-open {
    display: grid;
    width: 100%;
    gap: 0;
    order: 5;
    border-top: 1px solid var(--line);
    margin: 4px 0 0;
  }
  .main-nav.is-open .main-nav__list { display: grid; gap: 0; }
  .main-nav.is-open a { padding: 13px 0; }
  .main-nav a::after { display: none; }
  .live-grid { grid-template-columns: 1fr 1fr; }
  .quick-cards { grid-template-columns: repeat(2, 1fr); grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .mission-grid, .rates-grid, .contact-grid, .news-system-grid { grid-template-columns: 1fr 1fr; }
  .news-source-layout { grid-template-columns: 1fr; }
  .objectives-block > div { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .content-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 767px) {
  .container { width: min(100% - 24px, 520px); }
  .topbar { height: 34px; }
  .topbar__inner { justify-content: center; }
  .socials { display: none; }
  .breaking { font-size: 11px; width: 100%; text-align: center; }
  .breaking span { padding: 5px 8px; margin-right: 7px; border-radius: 6px; }
  .header__inner { min-height: 82px; }
  .brand { gap: 10px; align-items: center; flex: 0 1 auto; }
  .brand img {
    width: 154px;
    max-height: 58px;
    object-fit: contain;
  }
  .menu-toggle { margin-left: auto; }
  .brand strong, .brand em { display: none; }
  .live-section { padding-top: 12px; }
  .live-grid, .program-grid, .quick-cards, .news-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-ribbon { min-height: 66px; font-size: 34px; }
  .about-grid { grid-template-columns: 1fr; gap: 18px; padding: 28px 0; }
  .about-copy h2, .contact-section h2 { font-size: 30px; }
  .mission-grid, .coverage-grid, .rates-grid, .contact-grid, .news-system-grid, .news-source-layout { grid-template-columns: 1fr; gap: 14px; }
  .objectives-block { padding-top: 18px; }
  .objectives-block > div { grid-template-columns: 1fr; padding: 18px; }
  .mission-grid { padding: 20px 0; }
  .panel { min-height: auto; padding: 18px 12px; }
  .radio-logo { width: min(210px, 72%); margin-top: 18px; }
  .live-audio-control { grid-template-columns: 1fr; }
  .audio-player { min-height: 62px; grid-template-columns: 42px 42px 1fr 58px; padding: 10px; }
  .play-button { width: 40px; height: 40px; }
  .chat-panel { order: 3; }
  .video-panel { order: 2; }
  .video-panel { padding-top: 22px; }
  .video-box { margin-top: 18px; min-height: 185px; }
  .video-play { width: 62px; height: 62px; }
  .video-play::before {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
  }
  .live-badge { top: 10px; left: 10px; font-size: 11px; }
  .quick-cards { order: 1; grid-template-columns: repeat(3, 1fr); }
  .quick-card {
    min-height: 80px;
    padding: 12px 8px;
    text-align: center;
    display: grid;
    place-items: center;
    gap: 5px;
  }
  .quick-card span { position: static; width: 42px; height: 42px; font-size: 22px; }
  .quick-card p, .quick-card em { display: none; }
  .quick-card strong { font-size: 10px; }
  .quick-card:nth-child(4) { grid-column: 2; }
  .chat-list { gap: 13px; margin-top: 22px; }
  .chat-msg { grid-template-columns: 28px 1fr; }
  .chat-msg time { display: none; }
  .programming-section { padding-top: 10px; }
  .program-card { min-height: 206px; padding: 18px; }
  .program-card p:last-child { display: none; }
  .schedule-wrap { padding: 12px; overflow-x: hidden; }
  .schedule-table { background: transparent; gap: 10px; }
  .schedule-table > div {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
  }
  .schedule-head { display: none !important; }
  .schedule-table span, .schedule-table strong { padding: 6px 10px; }
  .schedule-table > div span:first-child {
    background: var(--purple);
    color: #fff;
    font-weight: 800;
  }
  .news-grid .main-news { min-height: auto; }
  .coverage-card { padding: 22px; }
  .coverage-grid article, .rate-card, .social-panel, .contact-grid > article { padding: 17px; }
  .rate-card dl div { grid-template-columns: 1fr; gap: 4px; }
  .contact-list a { font-size: 15px; align-items: flex-start; }
  .contact-list span { flex: 0 0 auto; }
  .footer { padding-bottom: 86px; }
  .footer img { width: 74px; }
  .whatsapp-float { width: 54px; height: 54px; }
}

@media (max-width: 1199px) {
  .province-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .schedule-table div { grid-template-columns: 150px 1fr; }
  .schedule-table em { grid-column: 2; }
}

@media (max-width: 767px) {
  .page-hero { padding: 38px 0; }
  .about-section,
  .mission-grid,
  .province-grid,
  .rates-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .objectives ul { columns: 1; }
  .schedule-table div { grid-template-columns: 1fr; }
  .schedule-table em { grid-column: auto; }
}
