.schedule-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.schedule-hero__eyebrow {
  font-size: var(--font-size-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-metallic-soft);
  margin-bottom: var(--space-2);
}

.schedule-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.schedule-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.schedule-hero__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-section-header {
  max-width: 720px;
  margin-bottom: var(--space-6);
}

.schedule-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.schedule-section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

.schedule-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.schedule-bullet-list li {
  color: var(--color-text-muted);
}

.schedule-bullet-list .chip {
  margin-right: var(--space-2);
}

.schedule-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.schedule-daysegments {
  align-items: stretch;
}

.schedule-segment .card__body {
  display: grid;
  gap: var(--space-3);
}

.schedule-table-wrapper {
  margin-top: var(--space-4);
}

.schedule-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
}

.schedule-table td[data-label] {
  vertical-align: top;
}

.schedule-instructors {
  align-items: center;
  gap: var(--space-8);
}

.schedule-instructor-list {
  display: grid;
  gap: var(--space-4);
}

.schedule-instructor-card__name {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.schedule-instructor-card__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.schedule-instructors__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-instructors__cta {
  margin-top: var(--space-4);
}

.schedule-booking {
  gap: var(--space-8);
  align-items: flex-start;
}

.schedule-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: grid;
  gap: var(--space-4);
}

.schedule-steps h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-1);
}

.schedule-booking__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.schedule-highlights {
  height: 100%;
}

.schedule-special {
  gap: var(--space-8);
  align-items: flex-start;
}

.schedule-special-blocks {
  display: grid;
  gap: var(--space-4);
}

.schedule-special-card {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background-color: var(--color-elevated);
  box-shadow: var(--shadow-sm);
}

.schedule-special-card h3 {
  margin-bottom: var(--space-2);
}

.schedule-special__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-4);
}

.schedule-events-card {
  margin-top: var(--space-2);
}

.schedule-download__content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.schedule-download__cta {
  display: grid;
  gap: var(--space-3);
  justify-items: flex-start;
}

.schedule-download__hint {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.schedule-faq__list {
  display: grid;
  gap: var(--space-4);
  max-width: 860px;
  margin: 0 auto;
}

.schedule-faq-item h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-1);
}

.schedule-faq-item p {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .schedule-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-download__content {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .section--hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .schedule-booking,
  .schedule-special,
  .schedule-instructors {
    display: block;
  }

  .schedule-booking__aside,
  .schedule-special__media,
  .schedule-instructors__media {
    margin-top: var(--space-6);
  }

  .schedule-table {
    font-size: var(--font-size-xs);
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.6rem 0.5rem;
  }

  .schedule-download__cta {
    justify-items: stretch;
  }
}
