.schedule-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: var(--color-text);
}

.schedule-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.schedule-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05) brightness(0.9);
}

.schedule-hero__content {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

.schedule-hero__text {
  max-width: 720px;
}

.schedule-hero__eyebrow {
  font-size: var(--font-size-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-2);
}

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

.schedule-hero__meta {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--gray-300);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.section-header {
  max-width: 760px;
  margin-bottom: var(--space-8);
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

.schedule-overview__grid {
  gap: var(--space-6);
}

.schedule-overview__hint {
  font-size: var(--font-size-xs);
  color: var(--gray-400);
}

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

.schedule-featured__media {
  min-height: 260px;
}

.schedule-featured__label-group {
  margin-bottom: var(--space-3);
}

.schedule-featured__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 180px));
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--gray-300);
}

.schedule-featured__meta dt {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

.schedule-featured__meta dd {
  margin: 0;
}

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

.schedule-weekly__grid {
  gap: var(--space-6);
}

.schedule-monthly {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, #111827 0, #020617 60%);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.schedule-monthly__tabs {
  display: inline-flex;
  gap: var(--space-2);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  background-color: rgba(15, 23, 42, 0.9);
  margin-bottom: var(--space-5);
}

.schedule-monthly__tab {
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-400);
}

.schedule-monthly__tab.is-active {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #ffffff;
}

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

.schedule-monthly__table {
  width: 100%;
  display: grid;
  gap: 1px;
  background: rgba(31, 41, 55, 0.9);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.schedule-monthly__row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 2fr 1.4fr 1.6fr;
}

.schedule-monthly__row--head {
  background: rgba(15, 23, 42, 0.98);
}

.schedule-monthly__cell {
  padding: 0.9rem 0.9rem;
  background: radial-gradient(circle at top, #020617 0, #020617 60%);
  font-size: var(--font-size-sm);
}

.schedule-monthly__row--head .schedule-monthly__cell {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-400);
}

.schedule-monthly__panel[hidden] {
  display: none;
}

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

.schedule-poker__media {
  min-height: 260px;
}

.schedule-poker__list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.schedule-poker__item {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.schedule-poker__date {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-1);
}

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

.schedule-poker__tag {
  margin-top: var(--space-1);
  font-size: var(--font-size-xs);
  color: var(--gray-400);
}

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

.schedule-themed__grid {
  gap: var(--space-6);
}

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

.schedule-artists__item {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.schedule-artists__time {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-400);
  margin-bottom: var(--space-2);
}

.schedule-artists__cta {
  margin-top: var(--space-6);
}

.schedule-venues__grid {
  gap: var(--space-6);
}

.schedule-venues__note {
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--gray-300);
}

.schedule-archive__list {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.schedule-gallery__cta {
  display: flex;
  justify-content: center;
}

.schedule-participation__grid {
  gap: var(--space-8);
  align-items: stretch;
}

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

.schedule-participation__cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

@media (max-width: 900px) {
  .schedule-hero {
    min-height: 60vh;
    align-items: center;
  }

  .schedule-hero__content {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }

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

  .schedule-monthly__row {
    grid-template-columns: 1.2fr 1.1fr 1.8fr;
  }

  .schedule-monthly__row .schedule-monthly__cell:nth-child(4),
  .schedule-monthly__row .schedule-monthly__cell:nth-child(5) {
    display: none;
  }
}

@media (max-width: 640px) {
  .schedule-hero__cta-group,
  .schedule-featured__cta,
  .schedule-poker__cta,
  .schedule-participation__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-monthly__tabs {
    width: 100%;
    justify-content: space-between;
  }

  .schedule-monthly__tab {
    flex: 1;
    text-align: center;
  }
}
