.hero--schedule {
  position: relative;
}

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

.hero--schedule__content {
  max-width: 38rem;
}

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

.hero--schedule__media {
  justify-self: end;
}

.hero--schedule__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero--schedule__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kiemelt-esemeny {
  align-items: center;
}

.kiemelt-esemeny__media {
  align-self: stretch;
}

.kiemelt-esemeny__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.kiemelt-esemeny__actions {
  align-items: center;
}

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

.schedule-card {
  height: 100%;
}

.vip-section__media {
  align-self: center;
}

.vip-section__image {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.event-timeline {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.event-timeline__item {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.4fr);
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-soft);
}

.event-timeline__item dt {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-primary-strong);
}

.event-timeline__item dd {
  margin: 0;
  color: var(--color-text-muted);
}

.game-zones .game-zone {
  display: flex;
  flex-direction: column;
}

.booking-steps {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: var(--space-4);
}

.booking-steps h4 {
  margin-bottom: var(--space-2);
}

.booking-form-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: var(--space-6);
  align-items: stretch;
}

.booking-form-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.booking-form-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-card__content {
  display: flex;
  flex-direction: column;
}

.booking-form {
  margin-top: var(--space-4);
}

.booking-form__submit {
  width: 100%;
}

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

  .booking-form-card {
    grid-template-columns: 1fr;
  }

  .booking-form-card__media {
    order: -1;
    max-height: 260px;
  }
}

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

  .hero--schedule__media {
    order: -1;
    justify-self: stretch;
  }

  .hero--schedule__image-wrapper {
    max-height: 260px;
  }

  .event-timeline__item {
    grid-template-columns: 1fr;
  }

  .promo-strip {
    margin-top: var(--space-10);
  }
}
