html, body {
  overflow-x: hidden;
}

.hero--themed {
  position: relative;
}

.themed-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
}

.themed-hero-text {
  max-width: 640px;
}

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

.themed-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.themed-hero-media {
  align-self: center;
}

.themed-hero-img {
  max-width: 460px;
  margin-left: auto;
}

.themed-intro-header {
  text-align: left;
  margin-bottom: var(--space-8);
}

.themed-list {
  margin-top: var(--space-3);
}

.themed-image-block {
  max-width: 520px;
  margin-left: auto;
}

.themed-highlight-card {
  align-self: stretch;
}

.themed-poker-grid {
  align-items: flex-start;
}

.themed-team-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themed-staff-img {
  margin-top: var(--space-2);
}

.themed-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-link {
  color: var(--color-primary);
}

.themed-link:hover {
  color: var(--color-accent);
}

.themed-inline-btn {
  margin-top: var(--space-4);
}

.themed-dress-grid {
  align-items: flex-start;
}

.themed-experience-header {
  text-align: left;
  margin-bottom: var(--space-8);
}

.themed-testimonials-grid {
  align-items: stretch;
}

.themed-table {
  margin-top: var(--space-4);
}

.themed-booking-grid {
  align-items: flex-start;
}

.themed-booking-card {
  align-self: stretch;
}

.themed-booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themed-submit-btn {
  width: 100%;
  justify-content: center;
}

.themed-next-steps {
  text-align: center;
}

.themed-next-text {
  margin: var(--space-4) auto var(--space-6);
}

.themed-next-links {
  margin-top: var(--space-4);
}

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

  .themed-hero-img {
    margin: 0 auto;
    max-width: 420px;
  }

  .themed-image-block {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .themed-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .themed-submit-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .section-padding {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

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