.poker-hero {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

.poker-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.poker-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
}

.poker-hero__inner {
  position: relative;
}

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

.poker-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

.poker-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

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

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

.poker-section-subtitle {
  color: var(--color-text-muted);
}

.poker-format-grid {
  align-items: stretch;
}

.poker-format-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poker-format-card__footer {
  margin-top: var(--space-4);
}

.poker-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.poker-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-howto-grid {
  align-items: center;
}

.poker-howto-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.poker-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
}

.poker-step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, var(--color-blush), var(--color-primary));
  color: #050309;
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.poker-howto-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.poker-howto-card {
  height: 100%;
}

.poker-howto-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.poker-howto-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

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

.poker-theme-card h3 {
  margin-bottom: var(--space-3);
}

.poker-hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

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

.poker-gallery-grid {
  align-items: stretch;
}

.poker-gallery-main,
.poker-gallery-side {
  min-height: 260px;
}

.poker-gallery-link {
  margin-top: var(--space-6);
  text-align: center;
  color: var(--color-text-muted);
}

.poker-testimonial-grid {
  align-items: stretch;
}

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

.poker-testimonial-name {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

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

.poker-faq-toggle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.poker-faq-footer {
  margin-top: var(--space-6);
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: var(--space-6);
  align-items: center;
}

.poker-cta-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.poker-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-end;
}

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

  .poker-cta-actions {
    align-items: flex-start;
  }
}

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

  .poker-hero__content {
    padding: var(--space-5);
  }

  .poker-section-header {
    margin-bottom: var(--space-6);
  }

  .poker-steps li {
    grid-template-columns: auto 1fr;
  }
}

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

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

  .poker-cta-actions {
    width: 100%;
  }

  .poker-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
