.poker-hero {
  position: relative;
}

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

.poker-hero__content {
  max-width: 640px;
}

.poker-hero__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.poker-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  margin-bottom: var(--space-5);
}

.poker-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.poker-hero__meta h6 {
  margin-bottom: var(--space-2);
}

.poker-section {
  position: relative;
}

.poker-section--surface {
  background: radial-gradient(circle at top right, rgba(197, 154, 90, 0.1), transparent 55%), var(--color-surface);
}

.poker-section__intro {
  max-width: 720px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.poker-section__grid {
  align-items: center;
  gap: var(--space-8);
}

.poker-list {
  list-style: none;
  padding-left: 0;
  margin: var(--space-4) 0;
}

.poker-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--color-text-soft);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffcf8b 0, #c59a5a 60%, #8d7560 100%);
}

.poker-section__cta,
.poker-section__cta-inline {
  margin-top: var(--space-5);
}

.poker-offline__media,
.poker-staff__media,
.poker-gallery__media {
  max-width: 520px;
}

.poker-spaces__grid,
.poker-experiences__grid,
.poker-testimonials__grid {
  align-items: stretch;
}

.poker-spaces__item,
.poker-experiences__item,
.poker-testimonial,
.poker-tournaments__card,
.poker-rules__card,
.poker-culinary__card,
.poker-membership__card,
.poker-cta-final__card {
  height: 100%;
}

.poker-staff__highlights {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-5) 0;
}

.poker-staff__highlights dt {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.poker-staff__highlights dd {
  margin: 0;
  color: var(--color-text-soft);
}

.poker-cta-final {
  background: radial-gradient(circle at top, rgba(197, 154, 90, 0.12), transparent 55%);
}

.poker-cta-final__card {
  display: flex;
  justify-content: center;
}

.poker-cta-final__content {
  max-width: 760px;
  text-align: center;
}

.poker-cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-4);
}

.poker-cta-final__note {
  color: var(--color-muted);
}

@media (max-width: 1024px) {
  .poker-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

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

  .poker-hero__media {
    order: -1;
  }

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

  .poker-section__intro {
    text-align: left;
  }
}

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

  .poker-cta-final__actions {
    flex-direction: column;
  }
}
