.poker-hero {
  position: relative;
}

.poker-hero__grid {
  gap: var(--space-10);
  align-items: center;
}

.poker-hero__content {
  max-width: 36rem;
}

.poker-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.poker-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

.poker-hero__figure {
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.poker-hero__image {
  width: 100%;
  height: auto;
}

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

.poker-list {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
  padding-left: 1.1rem;
}

.poker-list li {
  position: relative;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.poker-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
}

.poker-link::after {
  content: "→";
  font-size: 0.9em;
}

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

.poker-schedule__grid {
  gap: var(--space-8);
  align-items: stretch;
}

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

.poker-sports-card__figure,
.poker-education-card__figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.poker-sports-card__image,
.poker-education-card__image {
  width: 100%;
  height: auto;
}

.poker-reservation__grid {
  gap: var(--space-8);
  align-items: stretch;
}

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

.poker-rules__grid {
  gap: var(--space-8);
  align-items: stretch;
}

.poker-rules__note {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
}

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

.poker-testimonial__author {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--gray-300);
}

.poker-faq {
  max-width: 900px;
}

.poker-faq__grid {
  display: grid;
  gap: var(--space-3);
}

.poker-faq__item {
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-sm);
}

.poker-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
}

.poker-faq__item summary::-webkit-details-marker {
  display: none;
}

.poker-faq__item[open] {
  background-color: var(--color-surface-alt);
}

.poker-faq__item p {
  margin-top: var(--space-3);
}

.poker-faq__contact {
  margin-top: var(--space-6);
  text-align: center;
}

@media (max-width: 900px) {
  .poker-hero__grid {
    gap: var(--space-6);
  }

  .poker-hero__content {
    max-width: 100%;
    text-align: left;
  }
}

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

  .poker-section-header {
    text-align: left;
  }

  .poker-faq__item {
    padding: var(--space-3) var(--space-4);
  }
}
