/* Schedule page — aligned with site design system */

#schedule .section__title {
  margin-bottom: 2.5rem;
}

.sch-section {
  margin-bottom: 2.75rem;
}

.sch-section__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.sch-section__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 196, 0, 0.18);
}

.sch-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.sch-section__head .sch-section__label {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.sch-badge {
  padding: 0.25rem 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 196, 0, 0.14);
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: var(--radius);
}

.sch-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1rem;
}

.sch-card {
  padding: 1.15rem 1.25rem;
  background: var(--gray-800);
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 0.875rem;
}

.sch-card__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white);
}

.sch-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sch-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}

.sch-days {
  flex: 0 0 auto;
  min-width: 5.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
}

.sch-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.sch-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(245, 196, 0, 0.14);
  border-radius: 999px;
}

.sch-coach-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
}

.sch-coach {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  background: var(--gray-800);
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 0.875rem;
}

.sch-coach__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sch-coach__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  background: rgba(245, 196, 0, 0.14);
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 50%;
}

.sch-coach__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.sch-coach__ig {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4a9eff;
  text-decoration: none;
}

.sch-coach__ig:hover {
  text-decoration: underline;
}

.sch-notice {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  padding: 1.15rem 1.25rem;
  background: rgba(245, 196, 0, 0.1);
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 0.875rem;
}

.sch-notice__icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  color: var(--gold);
}

.sch-notice__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-100);
}

@media (max-width: 29.99rem) {
  .sch-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sch-days {
    min-width: 0;
  }
}

@media (min-width: 48rem) {
  .sch-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .sch-coach-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .sch-coach-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
