.hero--schedule {
  position: relative;
}

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

.hero--schedule__content {
  position: relative;
  z-index: 1;
}

.hero--schedule__visual {
  max-width: 480px;
  justify-self: flex-end;
}

.hero--schedule__image-shell {
  min-height: 260px;
}

.hero__meta-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
  margin-top: var(--space-3);
  max-width: 34rem;
}

.schedule-section-header__top {
  align-items: flex-end;
}

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

.schedule-featured__table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.schedule-table {
  min-width: 640px;
}

.schedule-table-note {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.schedule-list {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: var(--font-size-sm);
}

.schedule-list li {
  color: var(--color-text-muted);
}

.schedule-list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  list-style: none;
  padding-left: 0;
}

.schedule-list--columns li {
  position: relative;
  padding-left: 1.2rem;
}

.schedule-list--columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-primary);
}

.schedule-meta-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.schedule-weekly-grid {
  align-items: stretch;
}

.schedule-weekly-card,
.schedule-blackjack-card,
.schedule-gathering-card,
.schedule-format-card,
.schedule-leaderboard-card,
.schedule-showcase-card,
.schedule-registration-card,
.schedule-updates-card {
  height: 100%;
}

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

.premium-venues-layout__image {
  min-height: 260px;
}

.premium-venues-image-shell {
  height: 100%;
}

.premium-venues-card {
  height: 100%;
}

.schedule-formats-grid,
.schedule-registration-grid,
.schedule-updates-grid,
.schedule-gatherings-grid {
  align-items: stretch;
}

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

@media (max-width: 1024px) {
  .hero--schedule__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .premium-venues-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

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

  .hero--schedule__visual {
    max-width: 420px;
    justify-self: center;
  }

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

  .premium-venues-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .premium-venues-layout__image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .schedule-table {
    min-width: 520px;
  }

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

@media (max-width: 600px) {
  .hero--schedule__visual {
    max-width: 100%;
  }

  .schedule-section-header__cta-group {
    width: 100%;
  }

  .schedule-section-header__cta-group .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
