.schedule-page .rhn-schedule {
  --schedule-gap: 14px;
  --schedule-card-pad: 14px;
  --schedule-table-card-height: clamp(245px, 30vh, 310px);
  --schedule-sidebar-featured-height: 665px;
  --schedule-program-card-height: var(--schedule-sidebar-featured-height);
  --schedule-onair-card-height: 250px;
  --schedule-sidebar-top: 104px;
  --schedule-sidebar-bottom-gap: 16px;
  --schedule-sidebar-height: calc(
    100vh - var(--schedule-sidebar-top) - var(--schedule-sidebar-bottom-gap) +
      40px
  );
  --schedule-card: rgba(3, 32, 13, 0.82);
  --schedule-card-strong: rgba(1, 22, 10, 0.92);
  --schedule-row: rgba(13, 58, 25, 0.58);
  --schedule-row-soft: rgba(121, 229, 54, 0.08);
  --schedule-border: rgba(121, 229, 54, 0.34);
  --schedule-border-soft: rgba(121, 229, 54, 0.18);
  --schedule-text: #f8fff2;
  --schedule-title: #ffffff;
  --schedule-muted: #d4e3ce;
  --schedule-accent: #79e536;
  --schedule-yellow: var(--tertiary);
  width: 100%;
  padding: 20px 0 0;
  color: var(--schedule-text);
}

:root[data-theme="light"] .schedule-page .rhn-schedule {
  --schedule-card: #ffffff;
  --schedule-card-strong: #ffffff;
  --schedule-row: #f8fafc;
  --schedule-row-soft: #f8fafc;
  --schedule-border: #dbe3ee;
  --schedule-border-soft: #e2e8f0;
  --schedule-text: var(--text);
  --schedule-title: var(--text-strong);
  --schedule-muted: var(--muted-strong);
  --schedule-accent: var(--primary);
}

.rhn-schedule__inner {
  width: var(--content-width);
  max-width: var(--content-max);
  margin: 0 auto;
}

.rhn-schedule-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, clamp(280px, 24vw, 340px));
  gap: var(--schedule-gap);
  align-items: start;
}

.rhn-schedule-main {
  min-width: 0;
  display: grid;
  gap: var(--schedule-gap);
}

.rhn-schedule-hero {
  --schedule-hero-title: #ffffff;
  --schedule-hero-program: #79e536;
  --schedule-hero-copy: #ffffff;
  --schedule-hero-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
  position: relative;
  isolation: isolate;
  min-height: clamp(188px, 17vw, 232px);
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--schedule-border-soft);
  border-radius: 8px;
  padding: clamp(18px, 2vw, 24px);
  background:
    linear-gradient(
      90deg,
      rgba(0, 14, 7, 0.96),
      rgba(2, 34, 14, 0.74) 54%,
      rgba(0, 12, 5, 0.96)
    ),
    #001007;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.rhn-schedule-hero.is-background-light {
  --schedule-hero-title: #071108;
  --schedule-hero-program: #176b2c;
  --schedule-hero-copy: #071108;
  --schedule-hero-shadow: none;
}

.rhn-schedule-hero.is-background-dark {
  --schedule-hero-title: #ffffff;
  --schedule-hero-program: #79e536;
  --schedule-hero-copy: #ffffff;
  --schedule-hero-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.rhn-schedule-hero::before {
  content: "";
  position: absolute;
  inset: -18px 4% -18px 43%;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 14, 7, 0),
      rgba(0, 14, 7, 0.32) 42%,
      rgba(0, 14, 7, 0.84)
    ),
    url("../images/brand/utama.webp") center / min(360px, 38vw) auto no-repeat;
  opacity: 0.24;
  filter: saturate(1.12) drop-shadow(0 0 34px rgba(121, 229, 54, 0.22));
  pointer-events: none;
}

.rhn-schedule-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 70% 28%,
      rgba(252, 205, 42, 0.2),
      transparent 18%
    ),
    radial-gradient(
      circle at 78% 72%,
      rgba(121, 229, 54, 0.18),
      transparent 26%
    ),
    radial-gradient(rgba(121, 229, 54, 0.16) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    42px 42px;
  opacity: 0.72;
  pointer-events: none;
}

.rhn-schedule-host-panel::before {
  content: "";
  position: absolute;
  z-index: -2;
  background: url("../images/hero/hero-light.webp") center / contain no-repeat;
  opacity: 0.16;
  filter: saturate(1.1) contrast(1.04);
}

.rhn-schedule-host-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.rhn-schedule-hero__copy {
  width: 100%;
  min-width: 0;
  max-width: 430px;
}

.rhn-schedule-hero__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  word-spacing: 0.04em;
  text-transform: uppercase;
}

.rhn-schedule-hero__title span {
  display: block;
  color: var(--secondary);
}

.rhn-schedule-hero__copy p {
  max-width: 40ch;
  margin: 10px 0 0;
  color: #e8f5df;
  font-size: 1.05rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.rhn-schedule-hero__visual {
  position: relative;
  min-height: 154px;
  display: grid;
  place-items: center;
}

.rhn-schedule-hero__mic {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  color: var(--schedule-yellow);
}

.rhn-schedule-hero__mic .rhn-fa-icon,
.rhn-schedule-hero__mic svg {
  font-size: clamp(34px, 4vw, 50px);
  width: 1em;
  height: 1em;
  filter: drop-shadow(0 0 16px rgba(252, 205, 42, 0.46));
}

.rhn-schedule-days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.rhn-schedule-day {
  min-width: 86px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--schedule-border);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--schedule-text);
  background: var(--schedule-card-strong);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.rhn-schedule-day:hover,
.rhn-schedule-day:focus-visible {
  transform: translateY(-1px);
  border-color: var(--schedule-accent);
  box-shadow: 0 10px 22px rgba(121, 229, 54, 0.18);
}

.rhn-schedule-day.is-active,
.rhn-schedule-day[aria-selected="true"] {
  color: #102114;
  background: var(--schedule-accent);
  border-color: var(--schedule-accent);
  box-shadow: 0 0 24px rgba(121, 229, 54, 0.26);
}

.rhn-schedule-tables {
  display: grid;
  grid-template-columns: minmax(305px, 0.9fr) minmax(450px, 1.1fr);
  gap: var(--schedule-gap);
  align-items: stretch;
}

.rhn-schedule-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--schedule-border);
  border-radius: 8px;
  background:
    linear-gradient(140deg, var(--schedule-row-soft), transparent 48%),
    var(--schedule-card);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.rhn-schedule-tables .rhn-schedule-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.rhn-schedule-tables .rhn-schedule-card--weekly {
  height: var(--schedule-table-card-height);
  min-height: var(--schedule-table-card-height);
}

.rhn-schedule-tables .rhn-schedule-card--today {
  height: var(--schedule-table-card-height);
  min-height: var(--schedule-table-card-height);
  grid-template-rows: auto minmax(0, 1fr);
}

.rhn-schedule-card--today .rhn-schedule-table-wrap {
  max-height: none;
}

.rhn-schedule-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 var(--schedule-card-pad);
  border-bottom: 1px solid var(--schedule-border-soft);
}

.rhn-schedule-card__head h2 {
  margin: 0;
  color: var(--schedule-title);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.rhn-schedule-card__head .rhn-fa-icon,
.rhn-schedule-card__head svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--schedule-accent);
  font-size: 18px;
}

.rhn-schedule-table-wrap {
  min-height: 0;
  overflow: auto;
  padding: 9px;
  scrollbar-width: thin;
  scrollbar-color: rgba(121, 229, 54, 0.58) transparent;
}

.rhn-schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--schedule-text);
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1.48;
}

.rhn-schedule-table th,
.rhn-schedule-table td {
  border-right: 1px solid var(--schedule-border-soft);
  border-bottom: 1px solid var(--schedule-border-soft);
  padding: 10px 11px;
  text-align: left;
  vertical-align: middle;
}

.rhn-schedule-table th:first-child,
.rhn-schedule-table td:first-child {
  border-left: 1px solid var(--schedule-border-soft);
}

.rhn-schedule-table thead th {
  border-top: 1px solid var(--schedule-border-soft);
  color: var(--schedule-muted);
  background: var(--schedule-card-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rhn-schedule-table thead th:first-child {
  border-top-left-radius: 8px;
}

.rhn-schedule-table thead th:last-child {
  border-top-right-radius: 8px;
}

.rhn-schedule-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.rhn-schedule-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.rhn-schedule-table tbody tr {
  background: rgba(7, 36, 16, 0.36);
}

:root[data-theme="light"] .rhn-schedule-table tbody tr {
  background: rgba(255, 255, 255, 0.62);
}

.rhn-schedule-table tbody tr.is-now {
  background: rgba(7, 36, 16, 0.36);
}

:root[data-theme="light"] .rhn-schedule-table tbody tr.is-now {
  background: rgba(255, 255, 255, 0.62);
}

.rhn-schedule-today-table th:nth-child(1),
.rhn-schedule-today-table td:nth-child(1) {
  width: 31%;
}

.rhn-schedule-today-table th:nth-child(2),
.rhn-schedule-today-table td:nth-child(2) {
  width: 25%;
}

.rhn-schedule-today-table th:nth-child(3),
.rhn-schedule-today-table td:nth-child(3) {
  width: 25%;
}

.rhn-schedule-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.rhn-schedule-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 2px solid var(--schedule-accent);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(121, 229, 54, 0.36);
}

.rhn-schedule-table tbody tr.is-now .rhn-schedule-dot {
  border-color: var(--schedule-yellow);
  background: var(--schedule-yellow);
  box-shadow:
    0 0 0 0 rgba(252, 205, 42, 0.44),
    0 0 18px rgba(252, 205, 42, 0.62);
  animation: rhn-schedule-now-dot 1.35s ease-in-out infinite;
}

@keyframes rhn-schedule-now-dot {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(252, 205, 42, 0.44),
      0 0 18px rgba(252, 205, 42, 0.58);
  }

  50% {
    transform: scale(1.28);
    box-shadow:
      0 0 0 7px rgba(252, 205, 42, 0),
      0 0 24px rgba(252, 205, 42, 0.78);
  }
}

.rhn-schedule-program {
  display: grid;
  gap: 4px;
}

.rhn-schedule-program strong {
  color: var(--schedule-title);
  font-weight: 700;
}

.rhn-schedule-badge {
  width: max-content;
  border-radius: 999px;
  padding: 3px 7px;
  color: #102114;
  background: var(--schedule-yellow);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.rhn-schedule-category {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--schedule-border-soft);
  border-radius: 999px;
  padding: 3px 7px;
  color: var(--schedule-muted);
  background: var(--schedule-row-soft);
  font-size: 0.8rem;
  line-height: 1.1;
}

.rhn-schedule-weekly-table {
  table-layout: fixed;
  min-width: 0;
  font-size: 0.8rem;
}

.rhn-schedule-weekly-table th,
.rhn-schedule-weekly-table td {
  padding: 10px 7px;
  color: var(--schedule-text);
  font-weight: 400;
  text-align: center;
  line-height: 1.45;
  word-break: normal;
}

.rhn-schedule-weekly-table thead th {
  color: var(--schedule-muted);
  font-weight: 400;
}

.rhn-schedule-weekly-table td:first-child,
.rhn-schedule-weekly-table th:first-child {
  width: 66px;
  text-align: left;
}

.rhn-schedule-weekly-order {
  color: var(--schedule-muted);
  font-size: 0.76rem;
  font-weight: 400;
}

.rhn-schedule-weekly-entry {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.rhn-schedule-weekly-entry time {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.2;
}

.rhn-schedule-weekly-entry strong {
  min-width: 0;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.rhn-schedule-side {
  min-width: 0;
  display: grid;
  gap: var(--schedule-gap);
  align-items: start;
}

.rhn-schedule-sidebar {
  height: var(--schedule-program-card-height);
  min-height: 0;
  max-height: var(--schedule-program-card-height);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.rhn-schedule-featured-list {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  padding: 10px 9px 10px var(--schedule-card-pad);
  scrollbar-width: thin;
  scrollbar-color: rgba(121, 229, 54, 0.62) transparent;
}

.rhn-schedule-featured {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid var(--schedule-border-soft);
  border-radius: 8px;
  padding: 7px;
  background: transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.rhn-schedule-featured:hover,
.rhn-schedule-featured:focus-within {
  transform: none;
  border-color: var(--schedule-border-soft);
  background: transparent;
  box-shadow: none;
}

.rhn-schedule-featured img {
  width: 86px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.rhn-schedule-featured h3 {
  margin: 0;
  color: var(--schedule-title);
  font-size: 1rem;
  font-weight: 500 !important;
  line-height: 1.14;
}

.rhn-schedule-featured p,
.rhn-schedule-featured span {
  display: block;
  margin: 3px 0 0;
  color: var(--schedule-muted);
  font-size: 0.82rem;
  line-height: 1.28;
}

.rhn-schedule-featured span:last-child {
  color: var(--schedule-title);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 500;
}

.rhn-schedule-host-panel {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  background: var(--schedule-card);
  scroll-margin-top: 112px;
}

:root[data-theme="light"] .rhn-schedule-host-panel {
  --schedule-card: #ffffff;
  --schedule-row-soft: #f8fafc;
  --schedule-border: #dbe3ee;
  --schedule-border-soft: #e2e8f0;
  --schedule-text: #334155;
  --schedule-title: #0f172a;
  --schedule-muted: #64748b;
  --schedule-accent: var(--primary);
}

:root[data-theme="dark"] .rhn-schedule-host-panel {
  --schedule-card: rgba(7, 33, 14, 0.92);
  --schedule-row-soft: rgba(121, 229, 54, 0.055);
  --schedule-border: rgba(121, 229, 54, 0.18);
  --schedule-border-soft: rgba(121, 229, 54, 0.18);
  --schedule-text: #e8f6e2;
  --schedule-title: #ffffff;
  --schedule-muted: #b8cdb2;
  --schedule-accent: #79e536;
}

.rhn-schedule-host-panel::before {
  display: none;
  inset: -120px -80px -120px 45%;
}

.rhn-schedule-host-panel::after {
  display: none;
  inset: 42px 0 0;
  background:
    linear-gradient(90deg, transparent, rgba(121, 229, 54, 0.08)),
    radial-gradient(rgba(121, 229, 54, 0.18) 1px, transparent 1px);
  background-size:
    auto,
    34px 34px;
  opacity: 0.42;
}

.rhn-schedule-hosts {
  position: relative;
  z-index: 1;
  padding: 0 44px;
}

.rhn-schedule-host-track {
  display: flex;
  gap: var(--schedule-gap);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 12px 0;
}

.rhn-schedule-host-track::-webkit-scrollbar {
  display: none;
}

.rhn-schedule-host {
  flex: 0 0 clamp(224px, 19vw, 268px);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid var(--schedule-border-soft);
  border-radius: 8px;
  padding: 10px;
  background: var(--schedule-row-soft);
  outline: 0;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.rhn-schedule-host.is-highlighted {
  border-color: var(--schedule-yellow);
  background: var(--schedule-row-soft);
  box-shadow: none;
}

@media (min-width: 641px) {
  .rhn-schedule-host {
    flex-basis: calc((100% - (var(--schedule-gap) * 2)) / 3);
    max-width: calc((100% - (var(--schedule-gap) * 2)) / 3);
  }
}

.rhn-schedule-host img {
  width: 76px;
  height: 102px;
  border-radius: 8px;
  object-fit: cover;
}

.rhn-schedule-host h3 {
  margin: 0;
  color: var(--schedule-title);
  font-size: 1rem;
  font-weight: 500 !important;
  line-height: 1.15;
}

.rhn-schedule-host strong {
  display: block;
  margin-top: 4px;
  color: var(--schedule-accent);
  font-size: 0.9rem;
  font-weight: 500 !important;
  line-height: 1.2;
}

.rhn-schedule-host p {
  margin: 8px 0 0;
  color: var(--schedule-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.rhn-schedule-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
}

.rhn-schedule-socials a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--schedule-title);
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.rhn-schedule-socials a:hover,
.rhn-schedule-socials a:focus-visible {
  transform: translateY(-1px) scale(1.08);
  color: var(--schedule-yellow);
}

.rhn-schedule-socials .rhn-fa-icon,
.rhn-schedule-socials svg {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.rhn-schedule-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--schedule-border);
  border-radius: 999px;
  color: var(--schedule-text);
  background: var(--schedule-card-strong);
  font-size: 1.25rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.rhn-schedule-carousel-btn .rhn-fa-icon {
  font-size: 15px;
}

.rhn-schedule-carousel-btn:not([disabled]):hover,
.rhn-schedule-carousel-btn:not([disabled]):focus-visible {
  transform: translateY(-50%) scale(1.06);
  border-color: var(--schedule-accent);
  color: var(--schedule-yellow);
  box-shadow: 0 10px 24px rgba(121, 229, 54, 0.18);
}

.rhn-schedule-carousel-btn[disabled] {
  cursor: default;
  opacity: 0.38;
}

.rhn-schedule-carousel-btn--prev {
  left: 0;
}

.rhn-schedule-carousel-btn--next {
  right: 0;
}

.schedule-page .news-onair-card {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  min-width: 0;
  min-height: 220px; /* Setting tinggi card "Sedang On Air" halaman Jadwal. */
  overflow: hidden;
  padding: 16px;
  border-color: transparent !important;
  border-radius: 8px;
  color: #f7fff1;
  background: color-mix(in srgb, #102014 70%, transparent) !important;
  box-shadow: none;
}

.schedule-page .news-onair-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 210px;
  height: 170px;
  transform: translate(-50%, -50%);
  background: url("../images/hero/hero-light.webp") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.schedule-page .news-onair-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.schedule-page .news-onair-card__head h2,
.schedule-page .news-onair-card__body h3 {
  color: #ffffff;
}

.schedule-page .news-onair-card__head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.schedule-page .news-onair-card__head span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: #102114;
  background: var(--schedule-yellow);
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 800;
}

.schedule-page .news-onair-card__body {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 40px;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.schedule-page .news-onair-card__body img {
  width: 100%;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.schedule-page .news-onair-card__body h3,
.schedule-page .news-onair-card__body p,
.schedule-page .news-onair-card__body small {
  margin: 0;
}

.schedule-page .news-onair-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.18;
}

.schedule-page .news-onair-card__body p,
.schedule-page .news-onair-card__body small {
  display: block;
  margin-top: 3px;
  color: #cfe5c8;
  font-size: 0.78rem;
  line-height: 1.22;
}

.schedule-page .news-onair-card__body small {
  font-family: var(--font-heading);
  font-weight: 700;
}

.schedule-page .news-onair-card__body a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #102114;
  background: linear-gradient(180deg, #b7f022, #76bd00);
  box-shadow: 0 12px 26px rgba(121, 229, 54, 0.24);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.schedule-page .news-onair-card__body a:hover,
.schedule-page .news-onair-card__body a:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.08);
}

.schedule-page .news-equalizer {
  width: min(100%, 430px);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  margin: 16px auto 0;
}

.schedule-page .news-equalizer i {
  flex: 1 1 0;
  max-width: 4px;
  height: calc(var(--h) * 1px);
  min-height: 6px;
  border-radius: 999px;
  background: #79e536;
}

.rhn-schedule-onair-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 273px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(121, 229, 54, 0.34);
  border-radius: 8px;
  padding: 16px;
  color: #f7fff1;
  background:
    radial-gradient(
      circle at 92% 14%,
      rgba(121, 229, 54, 0.22),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(0, 45, 22, 0.98), rgba(0, 20, 12, 0.98));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.rhn-schedule-onair-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 220px;
  height: 174px;
  transform: translate(-50%, -50%);
  background: url("../images/hero/hero-light.webp") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.rhn-schedule-onair-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rhn-schedule-onair-head h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.rhn-schedule-onair-head span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: #102114;
  background: var(--schedule-yellow);
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
}

.rhn-schedule-onair-body {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.rhn-schedule-onair-body img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.rhn-schedule-onair-body h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
}

.rhn-schedule-onair-body p,
.rhn-schedule-onair-body small {
  display: block;
  margin: 4px 0 0;
  color: #cfe5c8;
  line-height: 1.25;
}

.rhn-schedule-onair-body p {
  font-size: 0.78rem;
}

.rhn-schedule-onair-body small {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
}

.rhn-schedule-onair-play {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #102114;
  background: linear-gradient(180deg, #b7f022, #76bd00);
  box-shadow: 0 12px 26px rgba(121, 229, 54, 0.24);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.rhn-schedule-onair-play:hover,
.rhn-schedule-onair-play:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.08);
  box-shadow: 0 15px 30px rgba(121, 229, 54, 0.32);
}

.rhn-schedule-onair-play .rhn-fa-icon {
  font-size: 15px;
}

.rhn-schedule-onair-wave {
  min-width: 0;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
}

.rhn-schedule-onair-wave i {
  flex: 1 1 0;
  max-width: 4px;
  height: calc(var(--h) * 1px);
  min-height: 6px;
  border-radius: 999px;
  background: #79e536;
}

@media (min-width: 1121px) {
  .rhn-schedule-shell {
    align-items: stretch;
  }

  .rhn-schedule-main,
  .rhn-schedule-side {
    height: 100%;
  }

  .rhn-schedule-side {
    grid-template-rows: var(--schedule-program-card-height) var(--schedule-onair-card-height);
    align-items: stretch;
  }

  .schedule-page .news-onair-card {
    height: var(--schedule-onair-card-height);
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: stretch;
  }

  .schedule-page .news-equalizer {
    align-self: center;
    justify-self: center;
    margin-top: 0;
  }
}

@media (max-width: 1120px) {
  .rhn-schedule-shell {
    grid-template-columns: 1fr;
  }

  .rhn-schedule-sidebar {
    height: 460px;
    min-height: 0;
    max-height: 460px;
  }
}

@media (max-width: 900px) {
  .rhn-schedule-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
  }

  .rhn-schedule-hero__visual {
    min-height: 144px;
  }
}

@media (max-width: 760px) {
  .rhn-schedule-tables {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .schedule-page .rhn-schedule {
    padding-top: 14px;
    padding-bottom: 0;
    overflow-x: hidden;
  }

  .rhn-schedule__inner {
    width: calc(100% - 28px);
  }

  .rhn-schedule-hero {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 10px;
  }

  .rhn-schedule-hero__copy {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
  }

  .rhn-schedule-hero__copy p {
    max-width: min(100%, 30ch);
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .rhn-schedule-hero__title {
    font-size: clamp(1.9rem, 8.4vw, 2.45rem);
    line-height: 1.02;
  }

  .rhn-schedule-hero__visual {
    width: 100%;
    min-height: 116px;
    margin-top: 2px;
  }

  .rhn-schedule-hero__mic {
    width: auto;
    height: auto;
  }

  .rhn-schedule-days {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .rhn-schedule-days::-webkit-scrollbar {
    display: none;
  }

  .rhn-schedule-day {
    flex: 0 0 auto;
    min-width: 74px;
    height: 40px;
    padding: 0 12px;
  }

  .rhn-schedule-card__head {
    min-height: 40px;
    gap: 8px;
  }

  .rhn-schedule-card__head h2 {
    font-size: 0.88rem;
  }

  .rhn-schedule-table {
    min-width: 560px;
    font-size: 0.9rem;
  }

  .rhn-schedule-weekly-table {
    min-width: 680px;
    table-layout: auto;
    font-size: 0.86rem;
  }

  .rhn-schedule-sidebar {
    height: 430px;
    max-height: 430px;
  }

  .rhn-schedule-hosts {
    padding: 0 42px;
  }

  .rhn-schedule-host {
    flex-basis: min(78vw, 310px);
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .rhn-schedule-host img {
    width: 84px;
    height: 118px;
  }

  .schedule-page .news-onair-card {
    width: 100%;
    max-width: calc(100vw - 28px);
    padding: 14px;
    justify-self: start;
  }

  .schedule-page .news-onair-card__head {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .schedule-page .news-onair-card__body {
    grid-template-columns: 52px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .schedule-page .news-onair-card__body img {
    height: 42px;
  }

  .schedule-page .news-onair-card__body a {
    grid-column: auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
  }
}

.schedule-page .rhn-schedule :is(h2, h3, h4, h5, h6) {
  font-family: var(--font-heading);
  font-weight: 700;
}

.schedule-page .rhn-schedule .rhn-schedule-featured h3 {
  font-weight: 500 !important;
}

/* Schedule cards follow the site-wide no-visible-border treatment. */
.schedule-page
  :is(
    .rhn-schedule-hero,
    .rhn-schedule-card,
    .rhn-schedule-host-panel,
    .rhn-schedule-onair-card,
    .news-onair-card
  ) {
  border-color: transparent !important;
  box-shadow: var(--rhn-card-separator-shadow) !important;
}

.schedule-page
  :is(
    .rhn-schedule-card,
    .rhn-schedule-host-panel,
    .rhn-schedule-onair-card,
    .news-onair-card
  ):is(:hover, :focus-within) {
  border-color: transparent !important;
  box-shadow: var(--rhn-card-separator-shadow-hover) !important;
}
/* Keep schedule on-air card dark in light mode. */
:root[data-theme="light"] .schedule-page .news-onair-card {
  border-color: rgba(121, 229, 54, 0.34) !important;
  color: #f7fff1 !important;
  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(121, 229, 54, 0.22),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(0, 45, 22, 0.98), rgba(0, 20, 12, 0.98)) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16) !important;
}

:root[data-theme="light"] .schedule-page .news-onair-card::before {
  opacity: 0.12 !important;
}

:root[data-theme="light"] .schedule-page .news-onair-card__head h2,
:root[data-theme="light"] .schedule-page .news-onair-card__body h3 {
  color: #ffffff !important;
}

:root[data-theme="light"] .schedule-page .news-onair-card__body p,
:root[data-theme="light"] .schedule-page .news-onair-card__body small {
  color: #cfe5c8 !important;
}
/* Final on-air card palette: always dark. */
.schedule-page .news-onair-card,
:root[data-theme="light"] .schedule-page .news-onair-card,
:root[data-theme="dark"] .schedule-page .news-onair-card {
  border-color: rgba(121, 229, 54, 0.34) !important;
  color: #f7fff1 !important;
  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(121, 229, 54, 0.22),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(0, 45, 22, 0.98), rgba(0, 20, 12, 0.98)) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16) !important;
}

.schedule-page .news-onair-card::before {
  opacity: 0.12 !important;
}

.schedule-page .news-onair-card__head h2,
.schedule-page .news-onair-card__body h3 {
  color: #ffffff !important;
}

.schedule-page .news-onair-card__body p,
.schedule-page .news-onair-card__body small {
  color: #cfe5c8 !important;
}

:root[data-theme="dark"] .schedule-page {
  background: #000000 !important;
}

:root[data-theme="dark"] .schedule-page :is(
  .rhn-schedule-card,
  .rhn-schedule-host-panel,
  .rhn-schedule-onair-card,
  .news-onair-card
) {
  border-color: rgba(192, 235, 166, 0.14) !important;
  background: #0b0f0d !important;
  box-shadow: none !important;
}

:root[data-theme="dark"] .schedule-page .news-onair-card {
  border-color: rgba(121, 229, 54, 0.22) !important;
  background: #0b0f0d !important;
}

:root[data-theme="dark"] .schedule-page .news-onair-card::before {
  background-image: none !important;
}

.schedule-page .news-onair-card,
:root[data-theme="light"] .schedule-page .news-onair-card,
:root[data-theme="dark"] .schedule-page .news-onair-card {
  border-color: transparent !important;
  color: #f7fff1 !important;
  background: #0b0f0d !important;
  box-shadow: none !important;
}

.schedule-page .news-onair-card::before,
:root[data-theme="light"] .schedule-page .news-onair-card::before,
:root[data-theme="dark"] .schedule-page .news-onair-card::before {
  background-image: none !important;
}

.schedule-page .news-onair-card__head h2,
.schedule-page .news-onair-card__body h3,
:root[data-theme="light"] .schedule-page .news-onair-card__head h2,
:root[data-theme="light"] .schedule-page .news-onair-card__body h3,
:root[data-theme="dark"] .schedule-page .news-onair-card__head h2,
:root[data-theme="dark"] .schedule-page .news-onair-card__body h3 {
  color: #ffffff !important;
}

.schedule-page .news-onair-card__body p,
.schedule-page .news-onair-card__body small,
:root[data-theme="light"] .schedule-page .news-onair-card__body p,
:root[data-theme="light"] .schedule-page .news-onair-card__body small,
:root[data-theme="dark"] .schedule-page .news-onair-card__body p,
:root[data-theme="dark"] .schedule-page .news-onair-card__body small {
  color: #cfe5c8 !important;
}

.schedule-page .rhn-schedule-host,
:root[data-theme="light"] .schedule-page .rhn-schedule-host,
:root[data-theme="dark"] .schedule-page .rhn-schedule-host {
  border-color: var(--schedule-border) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.schedule-page .rhn-schedule-host.is-highlighted,
:root[data-theme="light"] .schedule-page .rhn-schedule-host.is-highlighted,
:root[data-theme="dark"] .schedule-page .rhn-schedule-host.is-highlighted {
  border-color: var(--schedule-yellow) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.schedule-page .rhn-schedule-hero,
:root[data-theme="light"] .schedule-page .rhn-schedule-hero,
:root[data-theme="dark"] .schedule-page .rhn-schedule-hero {
  --schedule-hero-title: #ffffff;
  --schedule-hero-program: #74e52a;
  --schedule-hero-copy: #ffffff;
  --schedule-hero-shadow: 0 2px 12px rgba(0, 0, 0, 0.46);
  grid-template-columns: minmax(0, 1fr) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.schedule-page .rhn-schedule-hero::before,
:root[data-theme="light"] .schedule-page .rhn-schedule-hero::before,
:root[data-theme="dark"] .schedule-page .rhn-schedule-hero::before {
  content: none !important;
}

.schedule-page .rhn-schedule-hero::after,
:root[data-theme="light"] .schedule-page .rhn-schedule-hero::after,
:root[data-theme="dark"] .schedule-page .rhn-schedule-hero::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(0, 12, 6, 0.62) 0%,
      rgba(0, 18, 8, 0.42) 42%,
      rgba(26, 167, 84, 0.2) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.16) 48%,
      rgba(0, 0, 0, 0.36) 100%
    );
  pointer-events: none;
}

.schedule-page .rhn-schedule-hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  border-radius: inherit;
}

.schedule-page .rhn-schedule-hero__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: rhn-schedule-hero-slide 20s ease-in-out infinite;
}

.schedule-page .rhn-schedule-hero__slides img:nth-child(1) {
  animation-delay: 0s;
}

.schedule-page .rhn-schedule-hero__slides img:nth-child(2) {
  animation-delay: 4s;
}

.schedule-page .rhn-schedule-hero__slides img:nth-child(3) {
  animation-delay: 8s;
}

.schedule-page .rhn-schedule-hero__slides img:nth-child(4) {
  animation-delay: 12s;
}

.schedule-page .rhn-schedule-hero__slides img:nth-child(5) {
  animation-delay: 16s;
}

.schedule-page .rhn-schedule-hero__copy::before {
  content: none !important;
}

.schedule-page .rhn-schedule-hero__copy,
.schedule-page .rhn-schedule-hero__visual {
  position: relative;
  z-index: 1;
}

.schedule-page .rhn-schedule-hero__title,
:root[data-theme="light"] .schedule-page .rhn-schedule-hero__title,
:root[data-theme="dark"] .schedule-page .rhn-schedule-hero__title {
  color: var(--schedule-hero-title) !important;
  text-shadow: var(--schedule-hero-shadow) !important;
}

.schedule-page .rhn-schedule-hero__title span,
:root[data-theme="light"] .schedule-page .rhn-schedule-hero__title span,
:root[data-theme="dark"] .schedule-page .rhn-schedule-hero__title span {
  color: var(--schedule-hero-program) !important;
}

.schedule-page .rhn-schedule-hero__copy p,
:root[data-theme="light"] .schedule-page .rhn-schedule-hero__copy p,
:root[data-theme="dark"] .schedule-page .rhn-schedule-hero__copy p {
  color: var(--schedule-hero-copy) !important;
  text-shadow: var(--schedule-hero-shadow) !important;
}

@keyframes rhn-schedule-hero-slide {
  0%,
  8% {
    opacity: 0;
  }

  16%,
  37% {
    opacity: 1;
  }

  45%,
  100% {
    opacity: 0;
  }
}
