.schedule-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm, 1.2rem);
    margin-bottom: var(--space-md, 1.2rem);
}

/*--- original file content follows ---*/
:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: rgba(14, 14, 16, 0.78);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --text-soft: rgba(255, 255, 255, 0.72);
  --ember: #ad0f18;
  --ember-soft: #ff5a4f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(173, 15, 24, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 90, 79, 0.12), transparent 22%),
    linear-gradient(180deg, #0a0a0b 0%, #050505 100%);
}

body {
  font-family: "Space Grotesk", sans-serif;
  overscroll-behavior-y: none;
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 4.75rem 4.75rem;
  mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
  pointer-events: none;
  opacity: 0.28;
}

.glass-panel {
  backdrop-filter: blur(18px);
}

.live-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--ember-soft);
  box-shadow: 0 0 0 0 rgba(255, 90, 79, 0.7);
  animation: pulse-dot 1.8s infinite;
}

.player-button {
  display: flex;
  min-height: 4.75rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 1.35rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: white;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.player-button:hover,
.player-button:focus-visible {
  border-color: rgba(255, 90, 79, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 90, 79, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 90, 79, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.player-button:active {
  transform: translateY(1px) scale(0.985);
}

.player-button--primary {
  background:
    linear-gradient(180deg, rgba(255, 90, 79, 0.8), rgba(173, 15, 24, 0.9)),
    rgba(173, 15, 24, 0.9);
  border-color: rgba(255, 90, 79, 0.55);
  box-shadow:
    0 16px 36px rgba(173, 15, 24, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.player-button__icon {
  font-family: "Sora", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.player-button__label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.player-button--primary .player-button__label {
  color: rgba(255, 255, 255, 0.92);
}

.visualizer {
  overflow: hidden;
}

.visualizer .bar {
  flex: 1 1 0;
  min-width: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ember-soft) 0%, var(--ember) 100%);
  opacity: 0.38;
  transform-origin: center bottom;
  transform: scaleY(0.24);
}

.visualizer.is-playing .bar {
  opacity: 1;
  animation: equalizer 1s ease-in-out infinite;
}

.visualizer.is-playing .bar:nth-child(2n) {
  animation-duration: 1.35s;
}

.visualizer.is-playing .bar:nth-child(3n) {
  animation-duration: 1.12s;
}

.visualizer.is-playing .bar:nth-child(4n) {
  animation-duration: 0.86s;
}

.volume-slider {
  appearance: none;
  width: 100%;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ember-soft), rgba(255, 255, 255, 0.32));
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  border: 2px solid white;
  background: var(--ember-soft);
  box-shadow: 0 4px 16px rgba(255, 90, 79, 0.35);
}

.volume-slider::-moz-range-thumb {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid white;
  border-radius: 999px;
  background: var(--ember-soft);
  box-shadow: 0 4px 16px rgba(255, 90, 79, 0.35);
}

.schedule-card,
.news-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.18);
  border-radius: 1.45rem;
  overflow: hidden;
}

.schedule-card {
  min-height: 10rem;
  padding: 1rem;
}

.schedule-card--current {
  border-color: rgba(255, 90, 79, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 90, 79, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 90, 79, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.22);
}

.schedule-card__kicker,
.news-card__source {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.schedule-card__title,
.news-card__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
  color: white;
}

.schedule-card__time,
.news-card__meta {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 90, 79, 0.92);
}

.schedule-card__meta,
.news-card__excerpt {
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.schedule-card__link,
.news-card__link {
  align-self: flex-start;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember-soft);
  text-decoration: none;
}

.schedule-card__link:hover,
.news-card__link:hover,
.schedule-card__link:focus-visible,
.news-card__link:focus-visible {
  color: white;
  outline: none;
}

.news-feed {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
}

.news-card--ghost {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
}

.news-card__thumb,
.news-card__thumb-wrap {
  margin: 0.9rem 0 0.9rem 0.9rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 90, 79, 0.45), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.news-card__thumb-wrap,
.news-card__thumb {
  min-height: 8.5rem;
}

.news-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

@keyframes equalizer {
  0%,
  100% {
    transform: scaleY(0.22);
  }
  20% {
    transform: scaleY(0.92);
  }
  45% {
    transform: scaleY(0.48);
  }
  70% {
    transform: scaleY(0.76);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 79, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.75rem rgba(255, 90, 79, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 79, 0);
  }
}

@media (min-width: 768px) {
  .news-card {
    grid-template-columns: 6.5rem minmax(0, 1fr);
  }

  .news-card__thumb,
  .news-card__thumb-wrap {
    min-height: 100%;
  }
}