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

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

.schedule-hero__content {
  max-width: 40rem;
}

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

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

.schedule-hero__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.schedule-weekly-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.schedule-weekly-card__top {
  margin-bottom: var(--space-4);
}

.schedule-weekly-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  font-size: var(--fs-sm);
}

.schedule-weekly-card__details dt {
  font-weight: 500;
  color: var(--gray-200);
}

.schedule-weekly-card__details dd {
  color: var(--color-text-muted);
}

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

.schedule-weekly-card__note {
  margin-top: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.schedule-casual-section {
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.18), transparent 55%);
}

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

.schedule-casual-table {
  display: grid;
  gap: var(--space-4);
}

.schedule-casual-row {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background-color: var(--color-surface);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.schedule-casual-row h3 {
  margin-bottom: var(--space-2);
}

.schedule-casual-row dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  font-size: var(--fs-sm);
}

.schedule-casual-row dt {
  font-weight: 500;
  color: var(--gray-200);
}

.schedule-casual-row dd {
  color: var(--color-text-muted);
}

.schedule-casual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

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

.schedule-broadcasts__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

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

.schedule-broadcasts-item__header {
  margin-bottom: var(--space-3);
}

.schedule-broadcasts-item__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  font-size: var(--fs-sm);
}

.schedule-broadcasts-item__details dt {
  font-weight: 500;
  color: var(--gray-200);
}

.schedule-broadcasts-item__details dd {
  color: var(--color-text-muted);
}

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

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

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

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

.schedule-special-item__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  font-size: var(--fs-sm);
}

.schedule-special-item__details dt {
  font-weight: 500;
  color: var(--gray-200);
}

.schedule-special-item__details dd {
  color: var(--color-text-muted);
}

.schedule-private-section {
  background-color: var(--color-surface-alt);
}

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

.schedule-private-table {
  display: grid;
  gap: var(--space-4);
}

.schedule-private-row {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background-color: var(--color-surface);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.schedule-private-row h3 {
  margin-bottom: var(--space-2);
}

.schedule-private-row dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  font-size: var(--fs-sm);
}

.schedule-private-row dt {
  font-weight: 500;
  color: var(--gray-200);
}

.schedule-private-row dd {
  color: var(--color-text-muted);
}

.schedule-private-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.schedule-calendar-section {
  background: radial-gradient(circle at top, rgba(16, 185, 129, 0.18), transparent 55%);
}

.schedule-calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.schedule-calendar-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.schedule-calendar-form__field--actions {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
}

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

.schedule-calendar-table-wrapper {
  padding: var(--space-5);
}

.schedule-calendar-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.schedule-calendar-image {
  width: 180px;
  border-radius: var(--radius-md);
}

.schedule-calendar-table {
  width: 100%;
  border-spacing: 0;
  font-size: var(--fs-sm);
}

.schedule-calendar-table thead {
  background-color: rgba(15, 23, 42, 0.9);
}

.schedule-calendar-table th,
.schedule-calendar-table td {
  padding: 0.9rem 0.75rem;
  text-align: left;
}

.schedule-calendar-table th {
  font-weight: 500;
  color: var(--gray-200);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.schedule-calendar-table tbody tr:nth-child(even) {
  background-color: rgba(15, 23, 42, 0.6);
}

.schedule-calendar-table tbody tr:nth-child(odd) {
  background-color: rgba(15, 23, 42, 0.3);
}

.schedule-calendar-table tbody tr:hover {
  background-color: rgba(79, 70, 229, 0.18);
}

.schedule-calendar-footer {
  margin-top: var(--space-4);
  font-size: var(--fs-xs);
}

.schedule-howto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.schedule-howto-steps {
  display: grid;
  gap: var(--space-4);
  counter-reset: howto;
}

.schedule-howto-steps li {
  position: relative;
  padding-left: 3rem;
}

.schedule-howto-steps li::before {
  counter-increment: howto;
  content: counter(howto);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), #22c55e);
  color: #ffffff;
  font-size: var(--fs-sm);
  font-weight: 600;
}

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

.schedule-side-list {
  display: grid;
  gap: var(--space-3);
  font-size: var(--fs-sm);
}

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

.schedule-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: flex-start;
}

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

.schedule-faq-question {
  width: 100%;
  text-align: left;
  padding: 0;
  font-size: var(--fs-base);
  color: var(--color-text);
}

.schedule-faq-question::after {
  content: "+";
  float: right;
  font-size: var(--fs-lg);
  line-height: 1;
  color: var(--color-text-muted);
}

.schedule-faq-question[aria-expanded="true"]::after {
  content: "–";
}

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

.schedule-contact {
  position: sticky;
  top: 6rem;
}

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

.schedule-contact-form__field {
  display: grid;
  gap: 0.3rem;
}

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

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

  .schedule-broadcasts-grid,
  .schedule-calendar-grid,
  .schedule-howto-grid,
  .schedule-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-contact {
    position: static;
  }
}

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

  .schedule-casual-row dl,
  .schedule-broadcasts-item__details,
  .schedule-special-item__details,
  .schedule-private-row dl,
  .schedule-calendar-form__row {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  .schedule-calendar-table-wrapper {
    padding: var(--space-4);
  }

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

  .schedule-howto-steps li {
    padding-left: 2.6rem;
  }
}
