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

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

.schedule-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 46rem;
}

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

.schedule-hero__meta {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.schedule-hero__meta-item {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.schedule-hero__meta-label {
  display: block;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-700);
  margin-bottom: var(--space-1);
}

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

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

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

.schedule-breadcrumb__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.schedule-breadcrumb__item {
  font-size: var(--font-size-xs);
  color: var(--gray-700);
}

.schedule-breadcrumb__item + .schedule-breadcrumb__item::before {
  content: "/";
  margin-right: var(--space-2);
  color: var(--gray-600);
}

.schedule-breadcrumb__link {
  color: var(--gray-700);
}

.schedule-breadcrumb__link:hover {
  color: var(--color-accent);
}

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

.schedule-section-header--compact {
  max-width: 36rem;
}

.schedule-section-header p {
  margin-bottom: 0;
}

.schedule-filters__form {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--color-surface), var(--color-surface-alt));
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
}

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

.schedule-filters__row--secondary {
  margin-top: var(--space-4);
  grid-template-columns: 2fr 1.4fr;
  align-items: flex-end;
}

.schedule-filters__field--search {
  grid-column: 1 / -1;
}

.schedule-filters__search-wrapper {
  display: flex;
  gap: var(--space-2);
}

.schedule-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
}

.schedule-table__wrapper {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.schedule-table__table {
  width: 100%;
  font-size: var(--font-size-sm);
}

.schedule-table__table thead {
  background: var(--gray-200);
}

.schedule-table__table th,
.schedule-table__table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
}

.schedule-table__table th {
  font-weight: 600;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-800);
}

.schedule-table__table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.01);
}

.schedule-table__table tbody tr:hover {
  background-color: rgba(31, 139, 255, 0.08);
}

.schedule-table__actions-header,
.schedule-table__actions-cell {
  text-align: right;
}

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

.schedule-types__grid {
  align-items: center;
  gap: var(--space-6);
}

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

.schedule-types__figure {
  max-width: 32rem;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-group-highlights__grid {
  gap: var(--space-5);
}

.schedule-group-highlights__time {
  font-size: var(--font-size-xs);
  color: var(--gray-700);
}

.schedule-trainers__grid {
  gap: var(--space-5);
}

.schedule-download__grid {
  align-items: center;
  gap: var(--space-6);
}

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

.schedule-download__list {
  padding-left: var(--space-5);
}

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

.schedule-download__note {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
}

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

.schedule-booking__footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.schedule-booking__info {
  font-size: var(--font-size-xs);
  margin-bottom: 0;
}

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

.schedule-booking__aside .card {
  height: 100%;
}

.schedule-faq__items {
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.schedule-faq__item + .schedule-faq__item {
  border-top: 1px solid var(--gray-300);
}

.schedule-faq__question {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-md);
  text-align: left;
}

.schedule-faq__icon {
  font-size: var(--font-size-xl);
  color: var(--gray-700);
}

.schedule-faq__answer {
  padding: 0 var(--space-5) var(--space-4) var(--space-5);
}

.schedule-faq__answer p {
  margin-bottom: 0;
}

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

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

  .schedule-filters__chips {
    justify-content: flex-start;
  }

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

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

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

  .schedule-filters__form {
    padding: var(--space-4);
  }

  .schedule-table__table thead {
    display: none;
  }

  .schedule-table__table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--gray-300);
  }

  .schedule-table__table td {
    padding: var(--space-1) 0;
  }

  .schedule-table__table td::before {
    content: attr(data-label);
    display: block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-700);
    margin-bottom: 2px;
  }

  .schedule-table__actions-cell {
    margin-top: var(--space-2);
    text-align: left;
  }

  .schedule-faq__question {
    padding-inline: var(--space-4);
  }

  .schedule-faq__answer {
    padding-inline: var(--space-4);
  }
}

@media (max-width: 480px) {
  .schedule-hero__meta {
    gap: var(--space-2);
  }

  .schedule-filters__search-wrapper {
    flex-direction: column;
  }
}
