.schedule-grid {
  display: grid;
  grid-template-columns: minmax(110px, 25%) minmax(0, 75%);
  gap: 16px 30px;
  width: 100%;
}

.schedule-time {
  font-weight: 600;
  white-space: nowrap;
}

.schedule-event {
  min-width: 0;
}

.schedule-event-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.schedule-subevents {
  margin: 0;
  padding-left: 20px;
}

.schedule-subevents li {
  margin-bottom: 4px;
}

.schedule-subevents li:last-child {
  margin-bottom: 0;
}