.section--hero-poker {
  padding-top: clamp(4rem, 8vw, 5.5rem);
}

.poker-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.poker-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.6;
}

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

.poker-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

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

.poker-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

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

.poker-hero-image {
  box-shadow: var(--shadow-md);
}

.poker-section-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.poker-section-grid {
  gap: var(--space-8);
  align-items: flex-start;
}

.poker-games-grid,
.poker-events-grid {
  align-items: stretch;
}

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

.poker-simple-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.poker-simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
}

.poker-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

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

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

.poker-steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.poker-steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 51, 102, 0.16);
  color: var(--color-primary);
}

.poker-gallery-grid {
  margin-top: var(--space-6);
}

.poker-gallery-item {
  height: 100%;
}

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

.poker-faq {
  max-width: 780px;
  margin-inline: auto;
}

.poker-faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 20, 0.9);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.poker-faq-question {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.poker-faq-icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
}

.poker-faq-icon::before,
.poker-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 1px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.poker-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--transition-base);
}

.poker-faq-item[data-open="true"] .poker-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.poker-faq-answer {
  display: none;
  padding: 0 1.1rem 0.9rem 1.1rem;
  font-size: var(--text-sm);
}

.poker-faq-item[data-open="true"] .poker-faq-answer {
  display: block;
}

.poker-faq-footer {
  margin-top: var(--space-5);
  text-align: center;
}

.poker-final-cta-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
}

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

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

@media (max-width: 768px) {
  .poker-hero-cta,
  .poker-calendar-cta,
  .poker-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poker-breadcrumb ol {
    font-size: var(--text-xs);
  }
}
