.schedule-hero {
  padding-top: var(--space-20);
}

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

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

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

.schedule-hero__media {
  display: flex;
  justify-content: flex-end;
}

.schedule-hero__image-wrap {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.schedule-hero__image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.schedule-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.schedule-section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.schedule-table__wrapper {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
  overflow-x: auto;
}

.schedule-table__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.schedule-table__table th,
.schedule-table__table td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  vertical-align: top;
}

.schedule-table__table thead th {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.schedule-table__table tbody th {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.schedule-slot {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: var(--font-size-xs);
}

.schedule-slot__title {
  font-weight: 600;
  color: var(--color-text);
}

.schedule-slot__room,
.schedule-slot__trainer {
  color: var(--color-text-muted);
}

.schedule-table__note {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
}

.schedule-formats__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
}

.schedule-format .card__title {
  margin-bottom: var(--space-2);
}

.schedule-format__meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.schedule-trainers__grid {
  align-items: center;
  gap: var(--space-10);
}

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

.schedule-trainers__cta-text {
  margin-bottom: var(--space-4);
}

.schedule-trainers__media {
  display: flex;
  justify-content: flex-end;
}

.schedule-trainers__image-wrap {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.schedule-trainers__image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

.schedule-booking__steps li {
  padding-left: 0;
}

.schedule-booking__note {
  font-size: var(--font-size-sm);
}

.schedule-seasonal__list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0;
  display: grid;
  gap: 0.4rem;
  font-size: var(--font-size-sm);
}

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

.schedule-mobile__image-wrap {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.schedule-mobile__image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.schedule-faq__accordion {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-2);
}

.schedule-faq__item {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
}

.schedule-faq__item:focus-visible {
  box-shadow: var(--shadow-focus);
}

.schedule-faq__question {
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.schedule-faq__icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  position: relative;
}

.schedule-faq__icon::before,
.schedule-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--color-text-muted);
  transition: transform var(--transition-normal);
}

.schedule-faq__icon::before {
  width: 0.8rem;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.schedule-faq__icon::after {
  width: 2px;
  height: 0.8rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.schedule-faq__item[aria-expanded="true"] .schedule-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.schedule-faq__panel {
  padding: 0.75rem 1.1rem 1.1rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  border-top: none;
  background: rgba(15, 23, 42, 0.95);
  margin-top: -0.5rem;
  font-size: var(--font-size-sm);
}

.schedule-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
}

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

.schedule-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

  .schedule-hero__media,
  .schedule-trainers__media {
    justify-content: center;
  }

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

  .schedule-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .schedule-hero {
    padding-top: var(--space-16);
  }

  .schedule-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-table__wrapper {
    padding: var(--space-3);
  }

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