.slide-schedule {
  flex-direction: column;
  align-items: stretch;
  padding: 6vh 8vw;
  gap: 3vh;
}

.slide-schedule .sched-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1vh;
}

.slide-schedule .sched-title {
  font-size: 3.6vw;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.slide-schedule .sched-date {
  font-size: 1.8vw;
  color: var(--muted);
  text-transform: capitalize;
}

.slide-schedule .sched-list {
  display: flex;
  flex-direction: column;
  gap: 1.8vh;
  flex: 1;
  overflow: hidden;
}

.slide-schedule .sched-row {
  display: grid;
  grid-template-columns: 14vw 1fr auto;
  align-items: center;
  gap: 2vw;
  padding: 1.2vh 0;
  font-size: 2.4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.slide-schedule .sched-row:last-child { border-bottom: none; }

.slide-schedule .sched-time {
  font-weight: 700;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.slide-schedule .sched-name {
  font-weight: 600;
}

.slide-schedule .sched-instructor {
  font-size: 1.6vw;
  color: var(--muted);
  margin-left: 1vw;
}

.slide-schedule .sched-row.is-current {
  background: rgba(212, 0, 26, 0.12);
  border-left: 4px solid var(--accent);
  padding-left: 1.5vw;
  margin-left: -2vw;
}

.slide-schedule .sched-row.is-past {
  opacity: 0.35;
}

.slide-schedule .sched-empty {
  font-size: 2.4vw;
  color: var(--muted);
  text-align: center;
  margin-top: 6vh;
}
