.poker-hero {
  position: relative;
}

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

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

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

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

.poker-hero__meta-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

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

.poker-hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-lg);
}

.poker-hero__chips {
  margin-left: auto;
  max-width: 420px;
}

.poker-section-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.poker-feature {
  height: 100%;
}

.poker-inline-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.9);
}

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

.poker-decor__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.poker-edu {
  align-self: stretch;
}

.poker-checklist {
  list-style: none;
}

.poker-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.poker-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--color-primary-strong), var(--color-accent-green));
  box-shadow: 0 0 12px rgba(226, 179, 76, 0.7);
}

.poker-bullets {
  list-style: none;
}

.poker-bullets li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: var(--space-2);
}

.poker-bullets li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary-strong);
}

.poker-gallery__footer {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.poker-testimonial {
  position: relative;
}

.poker-testimonial::before {
  content: "\201C";
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(148, 163, 184, 0.18);
}

.poker-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: flex-start;
}

.poker-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.poker-cta__card {
  align-self: stretch;
}

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

  .poker-hero__media {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .poker-hero__chips {
    margin-left: 0;
    max-width: none;
  }
}

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

  .poker-hero__cta,
  .poker-decor__cta,
  .poker-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
