:root {
  --bg: #f5f5f5;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.98);
  --panel-strong: rgba(36, 36, 36, 0.98);
  --line: rgba(17, 24, 39, 0.1);
  --line-strong: rgba(17, 24, 39, 0.2);
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #ef3b2d;
  --accent-2: #223047;
  --accent-3: #1f8a34;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --topbar-height: 90px;
  --navbar-height: 90px;
  --anchor-offset: calc(var(--topbar-height) + var(--navbar-height) + 1.5rem);
  --page-gutter: 2rem;
}

@media (max-width: 480px) {
  .topbar .market-panel .ticker__quote,
  .topbar .market-panel .ticker__separator {
    display: inline-flex !important;
  }

  .topbar .market-panel .ticker__quote {
    align-items: baseline;
    white-space: nowrap;
  }

  .hero__intro .eyebrow {
    padding-left: 0.34rem;
    letter-spacing: 0.085em;
  }
}

@media (max-width: 768px) {
  .topbar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    align-items: stretch;
  }

  .weather-panel,
  .market-panel,
  .time-panel {
    justify-items: start;
    text-align: left;
    padding: 0.55rem 0.65rem;
  }

  .time-panel {
    grid-column: 1 / -1;
  }

  .ticker,
  .weather,
  .now {
    justify-content: flex-start;
    text-align: left;
    font-size: 0.76rem;
  }

  .ticker__content,
  .weather__content,
  .now__content {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-portal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 0.75rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .hero-portal__card {
    min-width: 0;
  }

  .hero-portal__media {
    aspect-ratio: 4 / 3;
  }

  .hero-portal__card strong {
    -webkit-line-clamp: 3;
  }

  .hero-portal__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
  }
}

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

  .time-panel {
    grid-column: auto;
  }

  .weather-panel,
  .market-panel,
  .time-panel {
    justify-items: center;
    text-align: center;
  }

  .ticker,
  .weather,
  .now,
  .ticker__content,
  .weather__content,
  .now__content {
    justify-content: center;
    text-align: center;
  }

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Barlow", sans-serif;
  line-height: 1.5;
  background: linear-gradient(180deg, #f6f6f6 0%, #efefef 100%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(239, 59, 45, 0.55);
  outline-offset: 3px;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  padding-top: var(--topbar-height);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: transform 220ms ease, opacity 220ms ease;
}

.topbar__inner,
.navbar__inner,
.masthead__inner,
main {
  width: min(1280px, calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.topbar__inner {
  min-height: var(--topbar-height);
  display: grid;
  grid-template-columns: auto repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  position: relative;
}

.market-panel,
.weather-panel,
.time-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.38rem;
  min-width: 0;
  width: 100%;
  min-height: 100%;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.98)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(15, 23, 42, 0.035);
}

.time-panel,
.weather-panel,
.market-panel {
  text-align: center;
}

.topbar__toggle,
.topbar__restore {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-2);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.topbar__toggle {
  flex: 0 0 auto;
}

.topbar__toggle:hover,
.topbar__toggle:focus-visible,
.topbar__restore:hover,
.topbar__restore:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.16);
}

.topbar__toggle svg,
.topbar__restore svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.topbar__restore {
  position: fixed;
  top: 0.8rem;
  right: 1rem;
  z-index: 31;
}

body.topbar-is-hidden {
  --topbar-height: 0px;
}

body.topbar-is-hidden .site-shell {
  padding-top: 0;
}

body.topbar-is-hidden .topbar {
  transform: translateY(calc(-100% - 8px));
  opacity: 0;
  pointer-events: none;
}

body.topbar-is-hidden .topbar__toggle svg {
  transform: rotate(180deg);
}

.eyebrow {
  margin: 0;
  color: #667085;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker,
.weather,
.now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.78rem;
  color: var(--accent-2);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.ticker span,
.weather span,
.now span {
  color: var(--muted);
}

.ticker__icon,
.weather__icon,
.now__icon {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--accent-2);
  background: linear-gradient(180deg, rgba(34, 48, 71, 0.05), rgba(34, 48, 71, 0.09));
  border: 1px solid rgba(34, 48, 71, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.ticker__icon svg,
.weather__icon svg,
.now__icon svg {
  width: 1.12rem;
  height: 1.12rem;
}

.ticker__content,
.weather__content,
.now__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  flex-wrap: wrap;
  min-width: 0;
  text-align: center;
}

.ticker__content > span,
.weather__content > span,
.now__content > span {
  flex-shrink: 0;
}

.ticker__content strong,
.weather__content strong,
.now__content strong {
  color: #1f2937;
  font-weight: 800;
}

.now__date,
.now__time,
.now__zone {
  line-height: 1.2;
}

.ticker__content span,
.weather__content span,
.now__content span {
  font-size: 0.84rem;
}

.ticker__quote {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  white-space: nowrap;
}

.ticker__separator {
  flex: 0 0 auto;
}

.now__content {
  display: grid;
  gap: 0.14rem;
  justify-items: center;
}

.now__date {
  color: #1f2937;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.now__time {
  color: var(--accent-2);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.now__zone {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.navbar {
  position: sticky;
  top: var(--topbar-height);
  z-index: 20;
  background: rgba(36, 36, 36, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.navbar__inner {
  min-height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.58rem 0;
}

.brand {
  display: flex;
  align-items: center;
  align-self: center;
  color: #ffffff;
  flex-shrink: 0;
  min-height: 100%;
  padding: 0;
}

.brand__logo {
  display: block;
  width: auto;
  max-height: 36px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.menu {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 1rem;
  align-self: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.masthead {
  padding: 1.75rem 0 1.5rem;
  background: linear-gradient(180deg, #f7f7f7 0%, #f2f2f2 100%);
  border-bottom: 1px solid var(--line);
}

.masthead__inner {
  display: grid;
  gap: 1.35rem;
}

.logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0 0.35rem;
  min-height: 148px;
}

.site-logo {
  display: block;
  width: min(100%, 680px);
  max-width: min(100%, 680px);
  max-height: 146px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.live-player {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 320px);
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 247, 247, 0.98)),
    #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.live-player__copy {
  display: grid;
  gap: 0.18rem;
}

.live-player__copy strong {
  color: var(--accent-2);
  font-size: 1.22rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.live-player__schedule {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-player__status {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #4b5563;
  font-size: 0.88rem;
  font-weight: 700;
  flex-wrap: wrap;
}

.live-player__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(239, 59, 45, 0.16);
  animation: liveDotPulse 1800ms ease-in-out infinite;
}

.live-player__button {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(239, 59, 45, 0.14);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--accent), #ff6c5f),
    #ef3b2d;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  box-shadow: 0 10px 22px rgba(239, 59, 45, 0.16);
}

.live-player__button::after {
  content: "";
  position: absolute;
  inset: 0.32rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.live-player__button-icon {
  position: relative;
  width: 0.95rem;
  height: 0.95rem;
}

.live-player__button-icon::before,
.live-player__button-icon::after {
  content: "";
  position: absolute;
  transition: all 180ms ease;
}

.live-player__button-icon::before {
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.8rem solid #ffffff;
}

.live-player__button.is-playing .live-player__button-icon::before,
.live-player__button.is-playing .live-player__button-icon::after {
  top: 50%;
  width: 0.22rem;
  height: 0.95rem;
  background: #ffffff;
  border: 0;
  transform: translateY(-50%);
}

.live-player__button.is-playing .live-player__button-icon::before {
  left: calc(50% - 0.22rem);
}

.live-player__button.is-playing .live-player__button-icon::after {
  left: calc(50% + 0.1rem);
}

.live-player__button:hover,
.live-player__button:focus-visible {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 14px 28px rgba(239, 59, 45, 0.2);
}

.live-player__button.is-playing {
  border-color: rgba(34, 48, 71, 0.16);
  background:
    linear-gradient(135deg, #223047, #2f425f),
    #223047;
  box-shadow: 0 12px 24px rgba(34, 48, 71, 0.16);
}

.live-player__controls {
  display: grid;
  gap: 0.75rem;
}

.live-player__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(34, 48, 71, 0.1);
  border-radius: 16px;
  color: var(--accent-2);
  background: rgba(34, 48, 71, 0.04);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.live-player__fallback:hover,
.live-player__fallback:focus-visible {
  border-color: rgba(239, 59, 45, 0.24);
  color: var(--accent);
  background: rgba(239, 59, 45, 0.06);
  transform: translateY(-1px);
}

.live-player__volume {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0.6rem;
}

.live-player__volume-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--accent-2);
  background: linear-gradient(180deg, rgba(34, 48, 71, 0.06), rgba(34, 48, 71, 0.12));
  border: 1px solid rgba(34, 48, 71, 0.08);
}

.live-player__volume-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.live-player__volume-label {
  color: #667085;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-player__volume-slider {
  width: 100%;
  height: 0.36rem;
  margin: 0;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) var(--radio-volume, 75%),
    rgba(17, 24, 39, 0.09) var(--radio-volume, 75%),
    rgba(17, 24, 39, 0.09) 100%
  );
  cursor: pointer;
}

.live-player__volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 0.84rem;
  height: 0.84rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.16);
}

.live-player__volume-slider::-moz-range-thumb {
  width: 0.84rem;
  height: 0.84rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.16);
}

.live-player__volume-slider::-moz-range-track {
  height: 0.36rem;
  border-radius: 999px;
  background: transparent;
}

.live-player__meter {
  position: relative;
  height: 0.32rem;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 48, 71, 0.06), rgba(34, 48, 71, 0.12)),
    rgba(34, 48, 71, 0.08);
}

.live-player__meter-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(239, 59, 45, 0.85), rgba(255, 154, 145, 0.82));
  opacity: 0.72;
}

.live-player__button.is-playing ~ .live-player__meter .live-player__meter-bar {
  opacity: 1;
  animation: livePulse 1600ms ease-in-out infinite;
}

.live-player.is-error {
  border-color: rgba(239, 59, 45, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 249, 249, 0.98), rgba(250, 243, 243, 0.98)),
    #ffffff;
}

.live-player.is-error .live-player__status {
  color: #b42318;
}

.live-player.is-error .live-player__dot {
  background: #b42318;
  animation: none;
}

.live-player.is-error .live-player__meter-bar {
  width: 12%;
  opacity: 0.35;
  animation: none;
}

.live-player.is-error .live-player__button {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.live-player.is-error .live-player__button:hover,
.live-player.is-error .live-player__button:focus-visible {
  transform: none;
  box-shadow: none;
}

@keyframes livePulse {
  0%,
  100% {
    width: 18%;
    opacity: 0.68;
  }

  30% {
    width: 44%;
    opacity: 0.88;
  }

  65% {
    width: 74%;
    opacity: 1;
  }
}

@keyframes liveDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 59, 45, 0.18);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 0 6px rgba(239, 59, 45, 0);
    opacity: 0.9;
  }
}

main {
  padding-top: 1.4rem;
  padding-bottom: 5rem;
}

main[id],
section[id] {
  scroll-margin-top: var(--anchor-offset);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(300px, 0.82fr);
  gap: 1.35rem;
  align-items: stretch;
  margin-bottom: 2.7rem;
}

.hero__copy,
.hero__panel,
.schedule-card,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.hero__copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.3rem, 2.4vw, 2rem);
  border-radius: var(--radius-lg);
}

.hero__copy::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), #ff786d);
}

.hero__copy::before {
  content: "";
  position: absolute;
  right: -4.5rem;
  bottom: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 59, 45, 0.1) 0%, rgba(239, 59, 45, 0) 72%);
  pointer-events: none;
}

.hero__copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  letter-spacing: -0.03em;
  color: var(--accent-2);
}

.hero__copy h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1;
  text-wrap: balance;
}

.hero__lead,
.section-heading__text,
.contact-card p,
.program-card__meta,
.program-card__host,
.day-section__summary {
  color: var(--muted);
}

.hero__lead {
  max-width: 62ch;
  margin: 0.72rem 0 0;
  font-size: 0.98rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.hero__intro {
  display: grid;
  gap: 0.85rem;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.98)),
    #ffffff;
}

.hero-slider {
  position: relative;
  margin-top: 1rem;
}

.hero-slider__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: clamp(160px, 24vw, 240px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(34, 48, 71, 0.08), rgba(239, 59, 45, 0.08)),
    #f3f4f6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 38px rgba(15, 23, 42, 0.08);
  isolation: isolate;
}

.hero-slider__track {
  position: relative;
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition:
    opacity 380ms ease,
    transform 380ms ease,
    visibility 380ms ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide.is-active::before {
  opacity: 1;
}

.hero-slide img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: var(--hero-image-fit, cover);
  object-position: var(--hero-image-position, center center);
  transform: scale(var(--hero-image-scale, 1));
  transform-origin: center;
  filter: saturate(1.02) contrast(1.03);
}

.hero-slide--artwork::before {
  background-image:
    linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.18)),
    var(--hero-slide-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: blur(20px) saturate(0.92);
}

.hero-slide--artwork img {
  width: calc(100% - 0.35rem);
  height: calc(100% - 0.35rem);
  border-radius: 18px;
  box-shadow:
    0 18px 30px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-slider__viewport::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 38%;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.22) 100%);
  pointer-events: none;
}

.hero-slider__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 18, 30, 0.12), rgba(10, 18, 30, 0) 35%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
  background: rgba(17, 24, 39, 0.44);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.03);
}

.hero-slider__arrow svg {
  width: 1rem;
  height: 1rem;
}

.hero-slider__arrow--prev {
  left: 0.9rem;
}

.hero-slider__arrow--next {
  right: 0.9rem;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  margin-top: 0.85rem;
}

.hero-slider__dot {
  width: 0.58rem;
  height: 0.58rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  transition:
    width 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  transform: translateY(-1px);
  background: rgba(31, 41, 55, 0.28);
}

.hero-slider__dot.is-active {
  width: 1.55rem;
  background: linear-gradient(90deg, var(--accent), #ff786d);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-portal {
  display: grid;
  gap: 1rem;
  margin-top: 1.05rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(247, 247, 247, 0.98)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(15, 23, 42, 0.05);
}

.hero-portal__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-portal__eyebrow {
  margin: 0 0 0.18rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-portal__header strong {
  color: var(--accent-2);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.hero-portal__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(34, 48, 71, 0.06);
  border: 1px solid rgba(34, 48, 71, 0.1);
}

.hero-portal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-portal__card {
  min-height: 100%;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 248, 0.98)),
    #ffffff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-portal__card:hover,
.hero-portal__card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(239, 59, 45, 0.18);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
}

.hero-portal__card-link {
  display: grid;
  min-height: 100%;
}

.hero-portal__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(34, 48, 71, 0.12), rgba(239, 59, 45, 0.08)),
    #f3f4f6;
}

.hero-portal__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-portal__media-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.98), rgba(229, 231, 235, 0.96));
}

.hero-portal__body {
  display: grid;
  align-content: start;
  gap: 0.42rem;
  padding: 0.9rem 0.95rem 1rem;
}

.hero-portal__kicker {
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-portal__card strong {
  color: var(--accent-2);
  font-size: 0.98rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-portal__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-portal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-portal__card.is-loading,
.hero-portal__card.is-fallback {
  grid-column: 1 / -1;
}

.hero-portal__card.is-loading .hero-portal__media,
.hero-portal__card.is-fallback .hero-portal__media {
  min-height: 9rem;
}

.hero-news {
  display: grid;
  gap: 1.05rem;
  margin-top: 1rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.98)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(15, 23, 42, 0.05);
}

.hero-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-news__eyebrow {
  margin: 0 0 0.18rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-news__header strong {
  color: var(--accent-2);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.hero-news__link {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-news__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-news__item {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 248, 0.98)),
    #ffffff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-news__item-link {
  display: grid;
  gap: 0;
  min-height: 100%;
}

.hero-news__item:hover,
.hero-news__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 59, 45, 0.18);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
}

.hero-news__item.is-loading,
.hero-news__item.is-fallback {
  grid-column: 1 / -1;
  padding: 0.82rem 0.82rem 0.86rem;
}

.hero-news__item.is-loading .hero-news__kicker,
.hero-news__item.is-fallback .hero-news__kicker,
.hero-news__item.is-loading strong,
.hero-news__item.is-fallback strong {
  padding-left: 0;
  padding-right: 0;
}

.hero-news__kicker {
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 0.92rem 0 0.92rem;
}

.hero-news__item strong {
  color: var(--accent-2);
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 0.34rem 0.92rem 1rem 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-news__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.38;
}

.hero-news__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(34, 48, 71, 0.12), rgba(239, 59, 45, 0.08)),
    #f3f4f6;
}

.hero-news__media img,
.hero-news__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-news__media img {
  object-fit: cover;
  object-position: center;
}

.hero-news__media-placeholder {
  background:
    linear-gradient(135deg, rgba(34, 48, 71, 0.18), rgba(239, 59, 45, 0.12)),
    #eef2f7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff6c5f);
  box-shadow: 0 14px 30px rgba(239, 59, 45, 0.18);
}

.button--ghost {
  border: 1px solid var(--line-strong);
  background: #ffffff;
}

.hero__panel {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 0 1rem 1rem;
  border-radius: var(--radius-lg);
  height: 100%;
  overflow: hidden;
}

.stat-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 248, 248, 0.98)),
    #fafafa;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.stat-card__label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  font-size: 1.2rem;
  line-height: 1.15;
  color: var(--accent-2);
}

.stat-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.stat-card:first-child {
  position: relative;
  display: grid;
  align-content: start;
  height: 100%;
  border-radius: var(--radius-lg);
  padding-top: 1.25rem;
  border-color: rgba(239, 59, 45, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 248, 247, 0.98)),
    #ffffff;
}

.stat-card:first-child::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--accent), #ff8a80);
}

.stat-card:first-child strong {
  font-size: 1.38rem;
  letter-spacing: -0.02em;
}

.local-highlights {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.local-highlights__item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.68rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  color: inherit;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 247, 247, 0.98)),
    #ffffff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.local-highlights__item:hover,
.local-highlights__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 59, 45, 0.18);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
}

.local-highlights__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(34, 48, 71, 0.12), rgba(239, 59, 45, 0.08)),
    #f3f4f6;
}

.local-highlights__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.local-highlights__copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.local-highlights__copy strong {
  color: var(--accent-2);
  font-size: 1rem;
  line-height: 1.05;
}

.local-highlights__copy span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.ondemand-card {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.ondemand-card__viewport {
  display: grid;
  gap: 1rem;
}

.ondemand-card__cover {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  min-height: 186px;
  background:
    linear-gradient(135deg, #101828, #223047),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ondemand-card__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.ondemand-card--artwork .ondemand-card__cover::before {
  opacity: 1;
  background-image:
    linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.22)),
    var(--ondemand-cover-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: blur(18px) saturate(0.9);
}

.ondemand-card__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.ondemand-card__arrow:hover,
.ondemand-card__arrow:focus-visible {
  transform: translateY(-50%) scale(1.03);
  background: rgba(17, 24, 39, 0.44);
  border-color: rgba(255, 255, 255, 0.34);
}

.ondemand-card__arrow svg {
  width: 0.95rem;
  height: 0.95rem;
}

.ondemand-card__arrow--prev {
  left: 0.7rem;
}

.ondemand-card__arrow--next {
  right: 0.7rem;
}

.ondemand-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: var(--ondemand-image-fit, cover);
  object-position: var(--ondemand-image-position, center center);
  transform: scale(var(--ondemand-image-scale, 1));
  transform-origin: center;
  padding: 0;
  filter: saturate(1.02) contrast(1.04);
}

.ondemand-card--artwork .ondemand-card__image {
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  margin: 0.2rem;
  border-radius: 16px;
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ondemand-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1rem 0.95rem;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.06) 0%, rgba(17, 24, 39, 0.84) 100%);
}

.ondemand-card__eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ondemand-card__overlay strong {
  font-size: 1.12rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.ondemand-card__overlay span:last-child {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 600;
}

.ondemand-card__body {
  display: grid;
  gap: 0.95rem;
}

.ondemand-card__meta {
  display: grid;
  gap: 0.18rem;
}

.ondemand-card__label {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ondemand-card__title {
  margin: 0;
  color: var(--accent-2);
  font-size: 1rem;
  font-weight: 700;
}

.ondemand-card__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.ondemand-player {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 247, 247, 0.98)),
    #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.ondemand-player--disabled {
  border-style: dashed;
  opacity: 0.78;
}

.ondemand-player__button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.ondemand-player.is-playing {
  border-color: rgba(239, 59, 45, 0.22);
  box-shadow: 0 16px 30px rgba(239, 59, 45, 0.1);
}

.ondemand-player__now {
  display: grid;
  gap: 0.24rem;
}

.ondemand-player__badge {
  width: fit-content;
  max-width: 100%;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(239, 59, 45, 0.08);
}

.ondemand-player__badge.is-muted {
  color: #8a5b00;
  background: rgba(245, 158, 11, 0.14);
}

.ondemand-player__badge.is-news {
  color: var(--accent-3);
  background: rgba(31, 138, 52, 0.12);
}

.ondemand-player__episode {
  color: var(--accent-2);
  font-size: 1.08rem;
  line-height: 1.15;
}

.ondemand-player__episode-meta {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.ondemand-player__transport {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
}

.ondemand-player__button {
  position: relative;
  width: 3.3rem;
  height: 3.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(239, 59, 45, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff6c5f);
  box-shadow: 0 10px 20px rgba(239, 59, 45, 0.15);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.ondemand-player__button:hover,
.ondemand-player__button:focus-visible {
  transform: translateY(-1px);
}

.ondemand-player__button::after {
  content: "";
  position: absolute;
  inset: 0.28rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.ondemand-player__icon {
  position: relative;
  width: 0.95rem;
  height: 0.95rem;
}

.ondemand-player__icon::before,
.ondemand-player__icon::after {
  content: "";
  position: absolute;
  transition: all 180ms ease;
}

.ondemand-player__icon::before {
  top: 50%;
  left: 50%;
  transform: translate(-36%, -50%);
  width: 0;
  height: 0;
  border-top: 0.46rem solid transparent;
  border-bottom: 0.46rem solid transparent;
  border-left: 0.72rem solid #ffffff;
}

.ondemand-player__button.is-playing .ondemand-player__icon::before,
.ondemand-player__button.is-playing .ondemand-player__icon::after {
  top: 50%;
  width: 0.2rem;
  height: 0.86rem;
  background: #ffffff;
  border: 0;
  transform: translateY(-50%);
}

.ondemand-player__button.is-playing .ondemand-player__icon::before {
  left: calc(50% - 0.18rem);
}

.ondemand-player__button.is-playing .ondemand-player__icon::after {
  left: calc(50% + 0.1rem);
}

.ondemand-player__controls {
  display: grid;
  gap: 0.5rem;
}

.ondemand-player__progress {
  width: 100%;
  height: 0.36rem;
  margin: 0;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) var(--ondemand-progress, 0%),
    rgba(17, 24, 39, 0.09) var(--ondemand-progress, 0%),
    rgba(17, 24, 39, 0.09) 100%
  );
  cursor: pointer;
}

.ondemand-player__progress::-webkit-slider-thumb {
  appearance: none;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.16);
}

.ondemand-player__progress::-moz-range-thumb {
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.16);
}

.ondemand-player__progress::-moz-range-track {
  height: 0.36rem;
  border-radius: 999px;
  background: transparent;
}

.ondemand-player__times {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: #667085;
  font-size: 0.8rem;
  font-weight: 700;
}

.ondemand-playlist {
  display: grid;
  gap: 0.55rem;
}

.ondemand-playlist__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--accent-2);
}

.ondemand-playlist__header strong {
  font-size: 0.88rem;
}

.ondemand-playlist__header span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.ondemand-playlist__list {
  display: grid;
  gap: 0.42rem;
  max-height: 18.5rem;
  padding-right: 0.2rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 48, 71, 0.26) transparent;
}

.ondemand-playlist__list::-webkit-scrollbar {
  width: 0.4rem;
}

.ondemand-playlist__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(34, 48, 71, 0.24);
}

.ondemand-playlist,
.schedule-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.ondemand-playlist__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.66rem 0.72rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  color: inherit;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 247, 247, 0.98)),
    #ffffff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.ondemand-playlist__item:hover,
.ondemand-playlist__item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(34, 48, 71, 0.16);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.ondemand-playlist__item.is-active {
  border-color: rgba(239, 59, 45, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 245, 244, 0.98), rgba(255, 255, 255, 0.98)),
    #ffffff;
  box-shadow: 0 14px 24px rgba(239, 59, 45, 0.08);
}

.ondemand-playlist__item.is-playing {
  border-color: rgba(239, 59, 45, 0.28);
}

.ondemand-playlist__index {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(34, 48, 71, 0.06);
}

.ondemand-playlist__item.is-active .ondemand-playlist__index {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff786d);
}

.ondemand-playlist__main {
  display: grid;
  min-width: 0;
  gap: 0.14rem;
}

.ondemand-playlist__main strong {
  color: var(--accent-2);
  font-size: 0.84rem;
  line-height: 1.2;
}

.ondemand-playlist__main span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.ondemand-playlist__meta {
  display: grid;
  justify-items: end;
  gap: 0.24rem;
}

.ondemand-playlist__tag,
.ondemand-playlist__availability {
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ondemand-playlist__tag {
  color: var(--accent-2);
  background: rgba(34, 48, 71, 0.08);
}

.ondemand-playlist__availability {
  color: var(--accent);
  background: rgba(239, 59, 45, 0.08);
}

.ondemand-news {
  display: grid;
}

.ondemand-news__list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ondemand-news__item {
  position: relative;
  padding: 0.82rem 0.9rem 0.82rem 1.15rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  color: #374151;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 247, 247, 0.98)),
    #ffffff;
}

.ondemand-news__item::before {
  content: "";
  position: absolute;
  left: 0.62rem;
  top: 1rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(239, 59, 45, 0.08);
}

.ondemand-card__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.ondemand-card__dot {
  width: 0.58rem;
  height: 0.58rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.18);
  transition:
    width 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.ondemand-card__dot:hover,
.ondemand-card__dot:focus-visible {
  transform: translateY(-1px);
  background: rgba(31, 41, 55, 0.28);
}

.ondemand-card__dot.is-active {
  width: 1.45rem;
  background: linear-gradient(90deg, var(--accent), #ff786d);
}

.schedule-section,
.contact-section {
  margin-top: 2.5rem;
}

.promo-banner {
  margin: 0 0 1.35rem;
}

.promo-banner__card {
  width: min(100%, 970px);
  margin: 0 auto;
  padding: 0.55rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 246, 246, 0.98)),
    #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.promo-banner__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading--programacion {
  justify-content: center;
  margin-bottom: 1.35rem;
}

.section-heading__brand-title {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #111111;
  text-align: center;
}

.section-heading__text {
  max-width: 46ch;
  margin: 0;
  line-height: 1.6;
}

.schedule-card {
  overflow: hidden;
  padding: 0.8rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 246, 0.98)),
    #ffffff;
}

.schedule-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 72px repeat(7, minmax(0, 1fr));
  grid-template-rows: 64px repeat(24, minmax(58px, auto));
  gap: 0.45rem;
  min-width: 0;
}

.grid-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.grid-cell--corner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667085;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fafafa, #f3f4f6);
}

.grid-cell--day {
  display: grid;
  place-items: center;
  font-family: "Barlow", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
  background:
    linear-gradient(180deg, #2b2b2b, #1f1f1f),
    #242424;
  border-color: rgba(17, 24, 39, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.grid-cell--hour {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(180deg, #fbfbfb, #f5f5f5);
}

.grid-slot {
  border-style: solid;
  border-color: rgba(17, 24, 39, 0.06);
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 0.96)),
    #fbfbfb;
}

.program-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.3rem;
  padding: 0.78rem 0.78rem 0.74rem 0.78rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(239, 59, 45, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 249, 249, 0.98)),
    #ffffff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 6px 16px rgba(15, 23, 42, 0.04);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), #ff9a91);
  pointer-events: none;
}

.program-card:hover,
.program-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 59, 45, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 22px rgba(15, 23, 42, 0.08);
}

.program-card--compact {
  min-height: unset;
}

.program-card__time {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.program-card__title {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.12;
  color: var(--accent-2);
  letter-spacing: -0.01em;
}

.program-card__host {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.28;
  color: #374151;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card__meta {
  margin: 0.08rem 0 0;
  font-size: 0.74rem;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.schedule-mobile {
  display: none;
  gap: 1rem;
  margin-top: 1rem;
}

.day-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 248, 248, 0.98)),
    #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.day-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #2b2b2b, #1f1f1f),
    #242424;
}

.day-section__header h3 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.day-section__summary {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.day-section__content {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 59, 45, 0.26);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.site-footer {
  margin-top: 3rem;
  background:
    linear-gradient(180deg, rgba(36, 36, 36, 0.98), rgba(20, 20, 20, 0.99)),
    #181818;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
}

.site-footer__inner {
  width: min(1080px, calc(100% - var(--page-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 128px minmax(190px, 240px) minmax(0, 1fr);
  align-items: start;
  justify-items: start;
  gap: 0.8rem 1rem;
  padding: 1.15rem 0 1.25rem;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: 30px;
  max-width: 100%;
  object-fit: contain;
  margin-top: 0;
}

.site-footer__copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  max-width: 240px;
  justify-items: start;
  text-align: left;
}

.site-footer__copy strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.site-footer__copy span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-footer__info {
  display: grid;
  justify-items: start;
  gap: 0;
  width: 100%;
  text-align: left;
}

.site-footer__info a {
  text-decoration: none;
}

.site-footer__contact-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.42rem;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.15rem;
  min-width: 0;
  padding: 0.52rem 0.64rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  flex: 1 1 0;
  width: 25%;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-footer__contact-item:hover,
.site-footer__contact-item:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-footer__contact-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(239, 59, 45, 0.9), rgba(255, 108, 95, 0.9));
  box-shadow: 0 8px 18px rgba(239, 59, 45, 0.18);
}

.site-footer__contact-icon svg {
  width: 0.88rem;
  height: 0.88rem;
}

.site-footer__contact-text {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  width: 100%;
}

.site-footer__contact-text strong {
  color: #ffffff;
  font-size: 0.76rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-footer__contact-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker--loading,
.weather--loading {
  color: var(--muted);
}

@media (max-width: 1180px) {
  :root {
    --page-gutter: 1.5rem;
  }

  .topbar__inner {
    gap: 0.8rem;
  }

  .market-panel,
  .weather-panel,
  .time-panel {
    padding: 0.62rem 0.8rem;
  }

  .ticker,
  .weather,
  .now {
    font-size: 0.88rem;
    gap: 0.62rem;
  }

  .navbar__inner {
    gap: 1rem;
  }

  .menu a {
    min-height: 2.75rem;
    padding: 0 0.9rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
    gap: 1.1rem;
  }

  .hero__copy {
    padding: 1.6rem 1.45rem 1.55rem;
  }

  .hero__panel {
    padding: 0.9rem;
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 1.25rem;
  }

  .topbar__inner,
  .navbar__inner,
  .masthead__inner,
  main,
  .site-footer__inner {
    width: min(100% - var(--page-gutter), 1280px);
  }

  .brand__logo {
    max-height: 40px;
  }

  .site-logo {
    max-width: min(100%, 580px);
    max-height: 134px;
  }

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

  .hero {
    gap: 1rem;
  }

  .topbar__inner {
    align-items: stretch;
  }

  .topbar__toggle {
    align-self: center;
  }

  .ticker,
  .weather {
    font-size: 0.9rem;
  }

  .navbar__inner {
    min-height: 82px;
  }

  .menu {
    gap: 0.35rem;
  }

  .menu a {
    min-height: 2.7rem;
  }

  .hero__copy {
    padding: 1.45rem 1.35rem 1.35rem;
  }

  .hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 5vw, 2.55rem);
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__pill {
    min-height: 1.9rem;
    font-size: 0.68rem;
  }

  .hero-portal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ondemand-playlist__list {
    max-height: 16rem;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .section-heading--programacion {
    justify-items: center;
    margin-bottom: 1rem;
  }

  .contact-grid {
    display: grid;
    gap: 0.85rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__info {
    width: 100%;
  }

  .site-footer__contact-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.6rem;
  }
}

@media (max-width: 760px) {
  :root {
    --topbar-height: auto;
    --navbar-height: auto;
    --anchor-offset: 8rem;
    --page-gutter: 1rem;
  }

  .site-shell {
    padding-top: 0;
  }

  .topbar {
    position: sticky;
  }

  .topbar__inner {
    padding: 0.8rem 0 0.95rem;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.7rem;
  }

  .market-panel,
  .weather-panel,
  .time-panel {
    width: 100%;
    min-height: 5rem;
    padding: 0.82rem 0.92rem;
    border-radius: 16px;
  }

  .topbar__toggle {
    order: 4;
    justify-self: center;
    align-self: center;
    width: 3.2rem;
    height: 2rem;
    position: relative;
    z-index: 2;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  }

  .topbar__toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.34rem;
    width: 1.25rem;
    height: 3px;
    border-radius: 999px;
    background: rgba(34, 48, 71, 0.14);
    transform: translateX(-50%);
  }

  .ticker,
  .weather,
  .now {
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
  }

  .ticker__icon,
  .weather__icon,
  .now__icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .ticker__content,
  .weather__content,
  .now__content {
    row-gap: 0.26rem;
    gap: 0.38rem;
  }

  .ticker__content span,
  .weather__content span,
  .now__content span {
    font-size: 0.8rem;
  }

  .time-panel,
  .weather-panel {
    text-align: left;
  }

  .market-panel {
    text-align: left;
  }

  .now__content {
    justify-items: start;
  }

  body.topbar-is-hidden .topbar {
    transform: translateY(calc(-100% + 3.35rem));
    opacity: 1;
    pointer-events: auto;
    border-bottom-color: rgba(17, 24, 39, 0.04);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
  }

  body.topbar-is-hidden .topbar__inner {
    padding-bottom: 0.55rem;
  }

  body.topbar-is-hidden .topbar__inner > :not(.topbar__toggle) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  body.topbar-is-hidden .topbar__restore {
    display: none;
  }

  .brand__logo {
    max-height: 32px;
  }

  .navbar {
    top: 0;
  }

  .navbar__inner {
    min-height: 72px;
    flex-wrap: wrap;
    padding: 0.62rem 0;
    row-gap: 0.65rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    min-width: 2.9rem;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    gap: 0.45rem;
  }

  .menu.is-open {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.2rem;
    padding-top: 0.75rem;
  }

  .menu a {
    width: 100%;
    justify-content: center;
    min-height: 3.15rem;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .masthead {
    padding: 0.92rem 0 1rem;
  }

  .logo-block {
    padding-top: 0.15rem;
    min-height: 84px;
  }

  .site-logo {
    max-width: min(100%, 300px);
    max-height: 72px;
  }

  .masthead__inner {
    gap: 0.72rem;
  }

  .logo-block {
    order: 1;
  }

  .live-player {
    order: 2;
    border-width: 1px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  }

  .live-player {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 0.72rem;
    padding: 0.82rem 0.82rem 0.88rem;
    border-radius: 18px;
  }

  .live-player__copy {
    justify-items: center;
  }

  .live-player__copy strong {
    font-size: 1.04rem;
  }

  .live-player__schedule {
    font-size: 0.74rem;
  }

  .live-player__status {
    justify-content: center;
    font-size: 0.8rem;
  }

  .live-player__controls {
    width: min(100%, 320px);
  }

  .live-player__volume {
    width: 100%;
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .live-player__meter {
    width: 100%;
  }

  main {
    padding-top: 0.9rem;
    padding-bottom: 3rem;
  }

  .hero__copy h1 {
    max-width: 100%;
  }

  .hero__copy {
    padding: 0.95rem 0.95rem 1rem;
    display: grid;
    gap: 0.82rem;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .hero__copy h1 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .hero-slider {
    display: none;
  }

  .hero-slider__viewport {
    aspect-ratio: 16 / 9;
    min-height: clamp(150px, 42vw, 210px);
    border-radius: 20px;
  }

  .hero-slider__arrow {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero__actions {
    order: 2;
    margin-top: 0.05rem;
    gap: 0.6rem;
  }

  .hero__actions .button--ghost {
    display: none;
  }

  .hero-portal {
    order: 1;
    margin-top: 0.95rem;
    padding: 0.88rem;
  }

  .hero-portal__header {
    align-items: start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .hero-portal__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(238px, 82vw);
    grid-template-columns: none;
    gap: 0.78rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .hero-portal__grid::-webkit-scrollbar {
    display: none;
  }

  .hero-portal__card {
    scroll-snap-align: start;
  }

  .hero-portal__body {
    padding: 0.82rem 0.88rem 0.9rem;
    gap: 0.36rem;
  }

  .hero-portal__card strong {
    font-size: 0.94rem;
    -webkit-line-clamp: 2;
  }

  .hero-portal__excerpt {
    display: none;
  }

  .hero-portal__meta {
    font-size: 0.68rem;
  }

  .local-highlights {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(228px, 78vw);
    gap: 0.7rem;
    margin-top: 0.78rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .local-highlights::-webkit-scrollbar {
    display: none;
  }

  .local-highlights__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.62rem;
    padding: 0.56rem;
    scroll-snap-align: start;
  }

  .hero-news {
    margin-top: 1.2rem;
    padding: 0.9rem;
  }

  .hero-news__header {
    align-items: start;
    flex-direction: column;
  }

  .hero__pills {
    display: none;
  }

  .ondemand-playlist__list {
    max-height: 12rem;
  }

  .button {
    width: 100%;
    min-height: 3.2rem;
  }

  .hero__panel {
    display: grid;
    gap: 0.68rem;
    padding: 0 0.7rem 0.7rem;
  }

  .stat-card {
    padding: 0.86rem;
  }

  .hero__panel .stat-card:last-child {
    order: 1;
  }

  .hero__panel .stat-card:first-child {
    order: 2;
  }

  .hero__panel .stat-card:last-child {
    padding: 0.8rem;
  }

  .hero__panel .stat-card:last-child strong {
    font-size: 0.94rem;
  }

  .hero__panel .stat-card:last-child small {
    font-size: 0.78rem;
  }

  .ondemand-card__cover {
    aspect-ratio: 16 / 10;
    min-height: 148px;
  }

  .ondemand-card__arrow {
    width: 2.1rem;
    height: 2.1rem;
  }

  .ondemand-player {
    gap: 0.68rem;
  }

  .ondemand-player__transport,
  .ondemand-player__controls {
    width: 100%;
  }

  .ondemand-playlist__item {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.76rem;
  }

  .ondemand-playlist__meta {
    grid-column: 1 / -1;
    justify-items: start;
    grid-auto-flow: column;
  }

  .stat-card strong {
    font-size: 1.08rem;
  }

  .stat-card:first-child strong {
    font-size: 1.2rem;
  }

  .schedule-card {
    display: none;
  }

  .schedule-mobile {
    display: grid;
    gap: 0.9rem;
  }

  .day-section__header {
    padding: 0.95rem 1rem;
  }

  .day-section__content {
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .program-card {
    padding: 0.95rem 0.9rem 0.9rem;
  }

  .program-card__title {
    font-size: 1rem;
  }

  .program-card__meta {
    font-size: 0.8rem;
  }

  .contact-section {
    margin-top: 2.1rem;
  }

  .contact-grid {
    gap: 0.75rem;
  }

  .contact-card {
    padding: 1.05rem;
  }

  .site-footer {
    margin-top: 2.4rem;
  }

  .site-footer__inner {
    gap: 0.95rem;
    padding: 1.1rem 0 1.2rem;
  }

  .site-footer__logo {
    height: 34px;
  }

  .site-footer__copy strong {
    font-size: 0.96rem;
  }

  .site-footer__copy span {
    font-size: 0.86rem;
  }

  .site-footer__info strong {
    font-size: 0.88rem;
  }

  .site-footer__info span {
    font-size: 0.84rem;
  }

  .site-footer__contact-item {
    min-width: 0;
    width: 100%;
  }

  .site-footer__contact-text strong {
    font-size: 0.8rem;
    white-space: normal;
  }

  .site-footer__contact-text span {
    font-size: 0.82rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  :root {
    --anchor-offset: 7.4rem;
    --page-gutter: 0.875rem;
  }

  .topbar__inner {
    padding: 0.65rem 0;
  }

  .market-panel,
  .weather-panel,
  .time-panel {
    padding: 0.64rem 0.75rem;
  }

  .topbar__restore {
    top: 0.7rem;
    right: 0.875rem;
    width: 2.25rem;
    height: 2.25rem;
  }

  .eyebrow {
    font-size: 0.62rem;
  }

  .ticker,
  .weather,
  .now {
    font-size: 0.82rem;
  }

  .navbar__inner {
    min-height: 68px;
    padding: 0.56rem 0;
  }

  .brand__logo {
    max-height: 29px;
  }

  .menu-toggle {
    min-height: 2.9rem;
    min-width: 2.9rem;
    padding: 0 0.9rem;
  }

  .masthead {
    padding: 0.82rem 0 0.92rem;
  }

  .logo-block {
    min-height: 74px;
  }

  .site-logo {
    max-width: min(100%, 250px);
    max-height: 62px;
  }

  .live-player {
    padding: 0.78rem;
    gap: 0.65rem;
  }

  .live-player__button {
    width: 3.05rem;
    height: 3.05rem;
  }

  .live-player__copy strong {
    font-size: 1.05rem;
  }

  .live-player__status {
    font-size: 0.8rem;
  }

  .live-player__volume-icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .hero {
    margin-bottom: 1.9rem;
    gap: 0.72rem;
  }

  .hero__copy {
    padding: 0.9rem 0.88rem 0.95rem;
  }

  .hero__copy h1 {
    font-size: clamp(1.6rem, 8vw, 2rem);
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 0.9rem;
  }

  .hero__pill {
    min-height: 1.8rem;
    padding: 0 0.65rem;
    font-size: 0.64rem;
  }

  .hero-portal {
    padding: 0.78rem;
    border-radius: 18px;
  }

  .hero-portal__header strong {
    font-size: 0.94rem;
  }

  .hero-portal__grid {
    grid-auto-columns: minmax(214px, 84vw);
  }

  .local-highlights__item {
    grid-template-columns: 58px minmax(0, 1fr);
    border-radius: 15px;
    padding: 0.52rem;
  }

  .local-highlights__copy strong {
    font-size: 0.88rem;
  }

  .local-highlights__copy span {
    font-size: 0.74rem;
  }

  .hero-news__header strong {
    font-size: 0.94rem;
  }

  .ondemand-card {
    margin-top: 0.5rem;
    padding-top: 0.72rem;
  }

  .hero-slider__viewport {
    aspect-ratio: 16 / 9;
    min-height: 140px;
    border-radius: 18px;
  }

  .hero-slider__arrow--prev {
    left: 0.65rem;
  }

  .hero-slider__arrow--next {
    right: 0.65rem;
  }

  .hero-slider__dot.is-active {
    width: 1.3rem;
  }

  .stat-card,
  .contact-card {
    padding: 0.82rem;
  }

  .ondemand-card {
    gap: 0.72rem;
    padding-top: 0.72rem;
  }

  .ondemand-card__cover {
    aspect-ratio: 16 / 10;
    min-height: 138px;
    border-radius: 16px;
  }

  .ondemand-card__arrow--prev {
    left: 0.55rem;
  }

  .ondemand-card__arrow--next {
    right: 0.55rem;
  }

  .ondemand-card__overlay {
    padding: 0.72rem;
  }

  .ondemand-player {
    gap: 0.68rem;
    padding: 0.74rem;
  }

  .ondemand-player__transport {
    grid-template-columns: 1fr;
  }

  .ondemand-player__button {
    width: 3.15rem;
    height: 3.15rem;
  }

  .ondemand-playlist__header {
    display: grid;
    gap: 0.2rem;
  }

  .ondemand-playlist__item {
    padding: 0.76rem 0.8rem;
    gap: 0.7rem;
  }

  .ondemand-playlist__list {
    max-height: 10.8rem;
  }

  .ondemand-playlist__index {
    width: 1.8rem;
    height: 1.8rem;
  }

  .section-heading__text {
    font-size: 0.96rem;
  }

  .section-heading__brand-title {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
    letter-spacing: -0.04em;
  }

  .site-footer__inner {
    padding: 1rem 0 1.1rem;
  }

  .site-footer__logo {
    height: 30px;
  }

  .site-footer__info strong {
    font-size: 0.84rem;
  }

  .site-footer__info span {
    font-size: 0.8rem;
  }

  .site-footer__contact-list {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .site-footer__contact-item {
    width: 100%;
    min-width: 0;
    padding: 0.68rem 0.78rem;
    border-radius: 16px;
  }

  .site-footer__contact-icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .site-footer__contact-text strong {
    font-size: 0.78rem;
  }

  .site-footer__contact-text span {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}

/* MOBILE UX CLEANUP */
@media (max-width: 768px) {
  :root {
    --topbar-height: 56px;
    --navbar-height: 64px;
    --anchor-offset: calc(var(--topbar-height) + var(--navbar-height) + 0.75rem);
    --page-gutter: 1rem;
  }

  body {
    overflow-x: hidden;
  }

  img,
  svg,
  video,
  audio,
  iframe,
  canvas {
    max-width: 100%;
  }

  .site-shell,
  .hero,
  .hero__copy,
  .hero__panel,
  .hero-portal,
  .hero-portal__grid,
  .hero-portal__card,
  .stat-card,
  .ondemand-card,
  .ondemand-card__viewport,
  .ondemand-player,
  .ondemand-player__transport,
  .ondemand-player__controls,
  .schedule-mobile,
  .day-section,
  .program-card,
  .site-footer__contact-item {
    max-width: 100%;
  }

  .site-shell {
    padding-top: 0;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 32;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  }

  .topbar__inner {
    min-height: var(--topbar-height);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.35rem 0;
    align-items: stretch;
  }

  .topbar__toggle,
  .topbar__restore {
    display: none;
  }

  .time-panel,
  .weather-panel,
  .market-panel {
    min-height: 0;
    padding: 0.45rem 0.5rem;
    border-radius: 12px;
    gap: 0.2rem;
    box-shadow: none;
    text-align: center;
  }

  .time-panel .eyebrow,
  .weather-panel .eyebrow,
  .market-panel .eyebrow {
    display: none;
  }

  .ticker,
  .weather,
  .now {
    gap: 0.36rem;
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .ticker__icon,
  .weather__icon,
  .now__icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .ticker__icon svg,
  .weather__icon svg,
  .now__icon svg {
    width: 0.8rem;
    height: 0.8rem;
  }

  .ticker__content,
  .weather__content,
  .now__content {
    gap: 0.18rem;
    justify-content: center;
    text-align: center;
  }

  .ticker__content,
  .weather__content {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ticker__content span,
  .weather__content span,
  .now__content span,
  .now__date,
  .now__time,
  .now__zone {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .now__time {
    font-size: 0.78rem;
  }

  .now__date,
  .now__zone {
    display: none;
  }

  .navbar {
    top: var(--topbar-height);
    z-index: 31;
  }

  .navbar__inner {
    min-height: var(--navbar-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .brand__logo {
    max-height: 28px;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    font-size: 0;
    color: transparent;
    position: relative;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    left: 0.72rem;
    right: 0.72rem;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 180ms ease, top 180ms ease, bottom 180ms ease, opacity 180ms ease;
  }

  .menu-toggle::before {
    top: 0.95rem;
    box-shadow: 0 0.42rem 0 #ffffff;
  }

  .menu-toggle::after {
    bottom: 0.95rem;
  }

  .menu-toggle[aria-expanded="true"]::before {
    top: 1.3rem;
    transform: rotate(45deg);
    box-shadow: none;
  }

  .menu-toggle[aria-expanded="true"]::after {
    bottom: 1.3rem;
    transform: rotate(-45deg);
  }

  .menu {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    gap: 0.5rem;
    padding-top: 0.25rem;
  }

  .menu.is-open {
    display: grid;
  }

  .menu a {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
    border-radius: 14px;
  }

  .masthead {
    padding: 0.8rem 0 0.95rem;
  }

  .masthead__inner {
    gap: 0.7rem;
  }

  .logo-block {
    min-height: 70px;
    padding: 0.1rem 0 0;
  }

  .site-logo {
    width: min(100%, 240px);
    max-width: 100%;
    max-height: 58px;
  }

  .live-player {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.95rem;
    padding: 1.1rem 1rem;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  }

  .live-player__button {
    width: 4rem;
    height: 4rem;
    order: 2;
  }

  .live-player__copy {
    order: 1;
    justify-items: center;
    gap: 0.25rem;
  }

  .live-player__copy .eyebrow {
    font-size: 0.64rem;
  }

  .live-player__copy strong {
    font-size: 1.18rem;
    line-height: 1.08;
  }

  .live-player__schedule {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }

  .live-player__status {
    justify-content: center;
    font-size: 0.82rem;
  }

  .live-player__controls {
    width: 100%;
    max-width: 320px;
    gap: 0.55rem;
  }

  .live-player__volume {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.45rem;
  }

  .live-player__volume-label,
  .live-player__meter {
    display: none;
  }

  main {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero__copy,
  .hero__panel {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .hero__copy::before,
  .hero__copy::after {
    display: none;
  }

  .hero__intro {
    gap: 0.65rem;
    padding: 0 0.15rem;
  }

  .hero__intro h1,
  .hero__lead {
    display: none;
  }

  .hero__pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .hero__pill {
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  }

  .hero-slider,
  .hero__actions,
  .hero__panel .stat-card:last-child {
    display: none;
  }

  .hero-portal {
    margin-top: 0.15rem;
    padding: 1rem;
    gap: 0.8rem;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }

  .hero-portal__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero-portal__status {
    min-height: 1.75rem;
    padding: 0.28rem 0.65rem;
    font-size: 0.64rem;
  }

  .hero-portal__grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    overflow: visible;
    padding: 0;
  }

  .hero-portal__card {
    border-radius: 16px;
    box-shadow: none;
  }

  .hero-portal__card:hover,
  .hero-portal__card:focus-within {
    transform: none;
    box-shadow: none;
  }

  .hero-portal__media {
    aspect-ratio: 16 / 9;
  }

  .hero-portal__body {
    gap: 0.35rem;
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .hero-portal__card strong {
    font-size: 1rem;
    -webkit-line-clamp: 2;
  }

  .hero-portal__excerpt {
    display: -webkit-box;
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .hero__panel {
    display: grid;
    gap: 0.9rem;
  }

  .hero__panel .stat-card:first-child {
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }

  .hero__panel .stat-card:first-child > small {
    display: none;
  }

  .hero__panel .stat-card:first-child strong {
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .ondemand-card {
    gap: 0.8rem;
    margin-top: 0.55rem;
    padding-top: 0.8rem;
  }

  .ondemand-card__viewport,
  .ondemand-card__body {
    gap: 0.8rem;
  }

  .ondemand-card__cover {
    min-height: 160px;
    border-radius: 16px;
  }

  .ondemand-card__meta {
    gap: 0.12rem;
  }

  .ondemand-card__description,
  .ondemand-playlist__header span {
    display: none;
  }

  .ondemand-player {
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 18px;
    box-shadow: none;
  }

  .ondemand-player__episode {
    font-size: 1rem;
  }

  .ondemand-player__episode-meta {
    font-size: 0.78rem;
  }

  .ondemand-player__transport {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ondemand-player__button {
    width: 3.25rem;
    height: 3.25rem;
    justify-self: start;
  }

  .ondemand-player__controls,
  .ondemand-player__progress,
  .ondemand-playlist__list {
    width: 100%;
  }

  .ondemand-playlist {
    gap: 0.45rem;
  }

  .ondemand-playlist__header {
    justify-content: flex-start;
  }

  .ondemand-playlist__list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .ondemand-playlist__item {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.75rem;
    border-radius: 14px;
    box-shadow: none;
  }

  .ondemand-playlist__meta {
    grid-column: 1 / -1;
    justify-items: start;
    grid-auto-flow: column;
    gap: 0.35rem;
  }

  .schedule-section {
    margin-top: 2.15rem;
  }

  .schedule-card {
    display: none;
  }

  .schedule-mobile {
    display: grid;
    gap: 1rem;
  }

  .day-section {
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  }

  .day-section__header {
    padding: 0.95rem 1rem;
  }

  .day-section__content {
    gap: 0.85rem;
    padding: 0.95rem;
  }

  .program-card {
    padding: 1rem;
    border-radius: 16px;
    box-shadow: none;
  }

  .program-card__time {
    font-size: 0.68rem;
  }

  .program-card__title {
    font-size: 0.98rem;
  }

  .program-card__meta,
  .program-card__host {
    font-size: 0.79rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  :root {
    --topbar-height: 52px;
    --navbar-height: 60px;
    --page-gutter: 0.875rem;
  }

  .topbar__inner {
    gap: 0.35rem;
    padding: 0.3rem 0;
  }

  .time-panel,
  .weather-panel,
  .market-panel {
    padding: 0.36rem 0.35rem;
    border-radius: 10px;
  }

  .ticker,
  .weather,
  .now {
    gap: 0.24rem;
    font-size: 0.68rem;
  }

  .ticker__icon,
  .weather__icon,
  .now__icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .ticker__content span,
  .weather__content span,
  .now__content span,
  .now__date,
  .now__zone {
    font-size: 0.62rem;
  }

  .now__time {
    font-size: 0.72rem;
  }

  .navbar__inner {
    min-height: var(--navbar-height);
  }

  .brand__logo {
    max-height: 25px;
  }

  .menu-toggle {
    width: 2.55rem;
    min-width: 2.55rem;
    height: 2.55rem;
    min-height: 2.55rem;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    left: 0.66rem;
    right: 0.66rem;
  }

  .logo-block {
    min-height: 62px;
  }

  .site-logo {
    width: min(100%, 210px);
    max-height: 52px;
  }

  .live-player {
    padding: 0.95rem 0.85rem;
    gap: 0.85rem;
  }

  .live-player__button {
    width: 3.7rem;
    height: 3.7rem;
  }

  .live-player__copy strong {
    font-size: 1.08rem;
  }

  .hero__pills {
    gap: 0.45rem;
  }

  .hero__pill {
    min-height: 2.7rem;
    font-size: 0.72rem;
    padding: 0.6rem 0.75rem;
  }

  .hero-portal,
  .hero__panel .stat-card:first-child {
    padding: 0.88rem;
    border-radius: 18px;
  }

  .hero-portal__body {
    padding: 0.8rem 0.82rem 0.9rem;
  }

  .hero-portal__card strong,
  .ondemand-player__episode,
  .program-card__title {
    font-size: 0.94rem;
  }

  .ondemand-card__cover {
    min-height: 144px;
  }

  .ondemand-card__overlay {
    padding: 0.8rem;
  }

  .ondemand-card__overlay strong {
    font-size: 1rem;
  }

  .ondemand-player {
    padding: 0.82rem;
  }

  .ondemand-playlist__item {
    padding: 0.7rem;
  }

  .day-section__header,
  .day-section__content,
  .program-card {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

@media (max-width: 768px) {
  .topbar .topbar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.45rem 0;
    align-items: stretch;
  }

  .topbar .time-panel {
    grid-column: 1 / -1;
  }

  .topbar .time-panel,
  .topbar .weather-panel,
  .topbar .market-panel {
    min-width: 0;
    padding: 0.55rem 0.65rem;
    justify-items: start;
    text-align: left;
  }

  .topbar .ticker,
  .topbar .weather,
  .topbar .now,
  .topbar .ticker__content,
  .topbar .weather__content,
  .topbar .now__content {
    justify-content: flex-start;
    text-align: left;
  }

  .topbar .ticker,
  .topbar .weather,
  .topbar .now {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .topbar .ticker__content strong,
  .topbar .weather__content strong,
  .topbar .now__content strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar .ticker__content span,
  .topbar .weather__content span,
  .topbar .now__content span {
    display: none;
  }

  .hero-portal .hero-portal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 0.75rem;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .hero-portal .hero-portal__card {
    min-width: 0;
  }

  .hero-portal .hero-portal__media {
    aspect-ratio: 4 / 3;
  }

  .hero-portal .hero-portal__card strong {
    font-size: 0.95rem;
    -webkit-line-clamp: 3;
  }

  .hero-portal .hero-portal__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .topbar .topbar__inner {
    grid-template-columns: 1fr;
  }

  .topbar .time-panel {
    grid-column: auto;
  }

  .topbar .time-panel,
  .topbar .weather-panel,
  .topbar .market-panel {
    justify-items: center;
    text-align: center;
  }

  .topbar .ticker,
  .topbar .weather,
  .topbar .now,
  .topbar .ticker__content,
  .topbar .weather__content,
  .topbar .now__content {
    justify-content: center;
    text-align: center;
  }

  .hero-portal .hero-portal__grid {
    grid-template-columns: 1fr;
  }

  .topbar .market-panel .ticker__content {
    gap: 0.28rem;
    flex-wrap: nowrap;
  }

  .topbar .market-panel .ticker__quote {
    gap: 0.18rem;
    font-size: 0.72rem;
  }

  .topbar .market-panel .ticker__quote strong {
    font-size: 0.72rem;
  }

  .topbar .market-panel .ticker__separator {
    display: inline-flex;
  }

  .section-heading__brand-title {
    padding-left: 0.22rem;
    padding-right: 0.22rem;
    letter-spacing: 0.04em;
    overflow: visible;
  }
}
