.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-40);
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

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

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

.poker-section {
  align-items: flex-start;
}

.poker-section--reverse {
  direction: rtl;
}

.poker-section--reverse > * {
  direction: ltr;
}

.poker-section__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.poker-section__card {
  align-self: stretch;
}

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

.poker-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.poker-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-left: 0;
}

.poker-list li::before {
  content: "\2022";
  color: var(--color-accent);
  display: inline-block;
  width: 1rem;
  margin-left: 0;
}

.poker-disclaimer--hero {
  margin-top: var(--space-24);
}

.poker-section__inline-card {
  margin-top: var(--space-24);
}

.poker-section__cta {
  margin-top: var(--space-20);
}

.poker-reservation {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
}

.poker-reservation__grid {
  align-items: stretch;
}

.poker-reservation__content {
  display: flex;
}

.poker-reservation__content .card {
  width: 100%;
}

.poker-reservation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-16);
}

.poker-reservation__disclaimer {
  margin-top: var(--space-8);
}

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

  .hero__content {
    order: 2;
  }

  .hero__visual {
    order: 1;
  }
}

@media (max-width: 768px) {
  .hero__actions,
  .poker-reservation__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poker-section--reverse {
    direction: ltr;
  }
}
