.themed-hero {
  position: relative;
}

.themed-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.themed-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: var(--space-8);
  align-items: center;
}

.themed-hero__lead {
  max-width: 640px;
}

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

.themed-hero__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.themed-hero__image-wrap {
  max-width: 460px;
  margin: 0 auto;
}

.themed-hero__image-card {
  padding: var(--space-4);
}

.themed-hero__image {
  border-radius: var(--radius-md);
}

.themed-hero__image-caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-hero__notice {
  margin-top: var(--space-6);
}

.themed-section-header {
  max-width: 720px;
  margin-bottom: var(--space-8);
}

.themed-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.themed-section-header--center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.themed-layout__grid {
  gap: var(--space-8);
}

.themed-layout__visual {
  padding: var(--space-4);
}

.themed-layout__image {
  border-radius: var(--radius-md);
}

.themed-layout__caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.themed-layout__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.themed-layout__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-poker__grid {
  gap: var(--space-8);
}

.themed-poker__card {
  padding: var(--space-4);
}

.themed-poker__image {
  border-radius: var(--radius-md);
}

.themed-poker__caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.themed-poker__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.themed-poker__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-poker__disclaimer {
  font-size: var(--font-size-xs);
}

.themed-experience__grid {
  margin-top: var(--space-6);
}

.themed-experience__item {
  height: 100%;
}

.themed-experience__icon-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

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

.themed-lighting__grid {
  gap: var(--space-8);
}

.themed-lighting__visual {
  padding: var(--space-4);
}

.themed-lighting__image {
  border-radius: var(--radius-md);
}

.themed-lighting__caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.themed-lighting__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

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

.themed-lighting__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-booking__card {
  padding: var(--space-5);
}

.themed-booking__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.themed-booking__text {
  max-width: 720px;
}

.themed-booking__list {
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--color-text-muted);
}

.themed-booking__list li + li {
  margin-top: var(--space-2);
}

.themed-booking__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

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

.themed-booking__legal {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
}

.themed-next__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-6);
}

.themed-next__title {
  margin-bottom: var(--space-2);
}

.themed-next__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-next__text-link {
  font-size: var(--font-size-sm);
}

@media (min-width: 768px) {
  .themed-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }

  .themed-hero__content {
    gap: var(--space-10);
  }

  .themed-layout__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  }

  .themed-poker__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  }

  .themed-booking__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .themed-booking__actions {
    align-items: flex-end;
    text-align: right;
  }

  .themed-next__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .themed-next__column {
    max-width: 520px;
  }
}

@media (min-width: 1024px) {
  .themed-hero__image-wrap {
    margin-right: 0;
  }

  .themed-booking__card {
    padding: var(--space-6) var(--space-8);
  }
}
