.hero-media-card {
  align-self: stretch;
}

.hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-meta {
  font-size: var(--font-size-sm);
}

.section-intro p {
  max-width: 42rem;
  margin-inline: auto;
}

.events-grid,
.vip-privat-grid,
.offer-grid {
  align-items: stretch;
}

.event-figure,
.offer-figure {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.schedule-wrapper {
  overflow: hidden;
}

.schedule-table-wrapper {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  font-size: var(--font-size-sm);
}

.schedule-table th,
.schedule-table td {
  padding: 0.75rem 0.9rem;
  white-space: nowrap;
}

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

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

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

.schedule-table tbody tr:hover {
  background-color: rgba(236, 72, 153, 0.12);
}

.schedule-hint {
  font-size: var(--font-size-xs);
}

.participation-steps {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.participation-steps li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0.75rem;
}

.participation-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
}

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

.feedback-card {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.faq-card .faq-item + .faq-item {
  margin-top: 0.75rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-size: var(--font-size-sm);
  color: var(--gray-100);
  padding: 0.6rem 0;
}

.faq-question[aria-expanded="true"] {
  color: var(--color-primary);
}

.faq-answer {
  font-size: var(--font-size-sm);
}

.reservation-form .card-body {
  padding-top: var(--space-4);
}

.highlight-price {
  color: var(--color-success);
}

.references-wrapper > .card {
  height: 100%;
}

@media (max-width: 768px) {
  .schedule-table th,
  .schedule-table td {
    white-space: normal;
  }

  .hero-media-card {
    margin-top: var(--space-4);
  }
}
