.schedule-hero {
  display: grid;
  gap: var(--space-24);
  align-items: center;
}

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

.schedule-hero-text {
  max-width: 38rem;
}

.schedule-hero-actions {
  margin-top: var(--space-16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
}

.schedule-hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.section-header {
  max-width: 40rem;
  margin-bottom: var(--space-24);
}

.schedule-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
  min-width: 640px;
}

.schedule-table th,
.schedule-table td {
  padding: var(--space-10);
  border-bottom: 1px solid var(--color-gray-200);
  text-align: left;
  vertical-align: top;
}

.schedule-table thead th {
  position: sticky;
  top: 0;
  background-color: var(--color-surface);
  z-index: 1;
  white-space: nowrap;
}

.schedule-table tbody tr:nth-child(even) {
  background-color: var(--color-gray-50);
}

.schedule-table th[scope="row"] {
  white-space: nowrap;
  font-weight: 500;
  color: var(--color-gray-700);
}

.schedule-class-name {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-4);
}

@media (max-width: 767px) {
  .schedule-table {
    min-width: 0;
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td,
  .schedule-table th[scope="row"] {
    display: block;
    width: 100%;
  }

  .schedule-table tr {
    margin-bottom: var(--space-16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    background-color: var(--color-surface);
    overflow: hidden;
  }

  .schedule-table th[scope="row"] {
    background-color: var(--color-primary-soft);
    padding: var(--space-10) var(--space-12);
  }

  .schedule-table td {
    border-bottom: 1px solid var(--color-gray-200);
    padding: var(--space-8) var(--space-12);
  }

  .schedule-table td:last-child {
    border-bottom: none;
  }

  .schedule-table td::before {
    content: attr(data-label);
    display: block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
  }
}

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

.schedule-class-cards {
  margin-top: var(--space-16);
}

.schedule-featured-info {
  align-self: stretch;
}

.schedule-list {
  list-style: disc;
  padding-left: var(--space-20);
}

.schedule-list li {
  margin-bottom: var(--space-8);
  color: var(--color-text);
}

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

.schedule-steps {
  list-style: none;
  counter-reset: schedule-step;
}

.schedule-steps li {
  margin-bottom: var(--space-16);
}

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

.schedule-notices {
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  background-color: var(--color-accent-soft);
}

.schedule-beginners {
  align-items: center;
  gap: var(--space-32);
}

.schedule-beginners-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.schedule-faq {
  margin-top: var(--space-8);
}

.schedule-faq-item {
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.schedule-faq-item:last-child {
  border-bottom: none;
}

.schedule-faq-item dt {
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.schedule-faq-item dd {
  color: var(--color-text);
}

.schedule-download {
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.schedule-bottom-cta {
  max-width: 44rem;
  text-align: center;
}

.schedule-bottom-cta-actions {
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .schedule-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-booking,
  .schedule-featured,
  .schedule-beginners,
  .schedule-faq-download {
    display: flex;
    flex-direction: column;
  }
}
