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

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

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

.schedule-hero__content p {
  max-width: 36rem;
}

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

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

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

.schedule-hero__media {
  position: relative;
}

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

.schedule-hero__media-date {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.schedule-hero__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.schedule-hero__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
}

.schedule-hero__list-time {
  font-weight: 600;
  color: var(--color-primary);
}

.schedule-hero__list-main {
  font-weight: 500;
}

.schedule-hero__list-meta {
  grid-column: 2 / -1;
  color: var(--color-text-muted);
}

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

  .schedule-hero__list-meta {
    grid-column: 1 / -1;
  }
}

.schedule-search__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}

.schedule-search__header p {
  max-width: 34rem;
}

.schedule-search {
  margin-top: var(--space-2);
}

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

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

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

.schedule-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.schedule-section-header p {
  max-width: 34rem;
}

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

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

.schedule-item__header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
}

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

.schedule-item__body {
  margin-top: var(--space-2);
}

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

.schedule-item__meta dt {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.schedule-item__meta dd {
  margin: 0;
}

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

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

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

.special-events-grid {
  align-items: stretch;
}

.schedule-special__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.schedule-special__meta dt {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.schedule-special__meta dd {
  margin: 0;
}

.schedule-special__cta {
  width: 100%;
  justify-content: center;
}

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

.poker-zone-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.poker-zone-list h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.poker-zone-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.poker-zone-media {
  max-width: 30rem;
  margin-left: auto;
}

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

  .poker-zone-media {
    max-width: 100%;
    margin-left: 0;
    margin-top: var(--space-4);
  }
}

.booking-rules-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.booking-steps,
.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-block: var(--space-4);
}

.booking-steps h3,
.rules-list h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.support-grid {
  align-items: center;
  gap: var(--space-8);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 17, 0.9);
  padding: var(--space-3) var(--space-4);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

.faq-item[open] {
  background: rgba(9, 14, 30, 1);
}

.faq-item p {
  margin-top: var(--space-2);
}

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

.support-media {
  max-width: 28rem;
  margin-left: auto;
}

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

  .support-media {
    max-width: 100%;
    margin-left: 0;
  }
}

.chip-list {
  margin-top: var(--space-2);
}
