.schedule-card {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--spc-line-strong);
  border-bottom: 1px solid var(--spc-line-strong);
  background: transparent;
}
.schedule-card-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px) clamp(4px, 1vw, 12px);
  border-bottom: 1px solid var(--spc-line);
}
.schedule-card-header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.live-time {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--spc-line);
  border-radius: 999px;
  background: var(--spc-surface-soft);
  font-size: .8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spc-danger);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--spc-danger) 14%, transparent);
}
.schedule-list { margin: 0; padding: 0; list-style: none; }
.schedule-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 84px;
  border-bottom: 1px solid var(--spc-line);
  transition: background-color .2s ease;
}
.schedule-item:last-child { border-bottom: 0; }
.schedule-item > time {
  display: flex;
  align-items: center;
  padding: 20px 10px 20px 4px;
  color: var(--spc-muted);
  font-size: .87rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.schedule-item-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 19px clamp(8px, 2vw, 24px);
}
.schedule-item-content::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--spc-line);
}
.schedule-marker {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--spc-muted);
  border-radius: 50%;
  background: var(--spc-bg);
}
.schedule-item-content h3 {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.35;
  letter-spacing: -.02em;
}
.current-label {
  display: none;
  margin-top: 5px;
  color: var(--spc-danger);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.schedule-item.is-current {
  background: linear-gradient(90deg, color-mix(in srgb, var(--spc-danger) 9%, transparent), transparent 72%);
}
.schedule-item.is-current > time { color: var(--spc-text); }
.schedule-item.is-current .schedule-marker {
  border-color: var(--spc-danger);
  background: var(--spc-danger);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--spc-danger) 13%, transparent);
}
.schedule-item.is-current .current-label { display: block; }

@media (hover: hover) {
  .schedule-item:not(.is-current):hover { background: color-mix(in srgb, var(--spc-text) 2.5%, transparent); }
}

@media (max-width: 640px) {
  .schedule-card-header { align-items: flex-start; flex-direction: column; padding: 24px 2px; }
  .live-time { align-self: flex-start; }
  .schedule-item { grid-template-columns: 64px minmax(0, 1fr); min-height: 76px; }
  .schedule-item > time { padding: 17px 8px 17px 2px; font-size: .78rem; }
  .schedule-item-content { gap: 14px; padding: 16px 6px 16px 15px; }
  .schedule-item-content::before { left: 19px; }
  .schedule-marker { width: 9px; height: 9px; }
  .schedule-item-content h3 { font-size: .98rem; }
}
