body.poker-page main {
  background-color: var(--color-bg);
}

.poker-hero.hero-bg::before {
  background-image: url('/assets/images/central-poker-atmosphere.webp');
}

.poker-two-column,
.poker-hosts-grid,
.poker-social-grid,
.booking-grid,
.events-calendar-grid {
  align-items: center;
  gap: var(--space-40);
}

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

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

.poker-feature-list,
.poker-bullet-list,
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.poker-feature-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-16);
  align-items: flex-start;
}

.poker-feature-list h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
}

.poker-bullet-list li,
.booking-steps li {
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

.booking-steps strong {
  font-weight: 600;
  color: var(--color-primary);
}

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

.poker-experience-grid .card,
.poker-social-card,
.booking-highlight-card,
.testimonial-card {
  height: 100%;
}

.testimonial-meta {
  margin-top: var(--space-12);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.final-cta {
  background: radial-gradient(circle at 50% 0, var(--color-primary-softest), transparent 55%);
}

.faq-list .faq-question {
  background: transparent;
}

.faq-list .faq-question span:last-child {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.faq-list .faq-answer {
  max-width: 52rem;
}

@media (max-width: 900px) {
  .poker-feature-list li {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .events-calendar-grid,
  .booking-grid,
  .poker-social-grid,
  .poker-hosts-grid,
  .poker-two-column {
    gap: var(--space-24);
  }
}
