.poker-hero-layout {
  align-items: center;
  gap: var(--space-8);
}

.poker-hero-text {
  max-width: 640px;
}

.poker-hero-media {
  display: flex;
  justify-content: flex-end;
}

.poker-hero-image-wrapper {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.poker-hero-image-wrapper img {
  height: 100%;
  object-fit: cover;
}

.poker-list {
  list-style: none;
  padding-left: 0;
}

.poker-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

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

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

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

.poker-benefits-grid,
.poker-crew-cards,
.poker-scenarios-grid,
.poker-gear-grid {
  gap: var(--space-6);
}

.poker-custom-card {
  margin-top: var(--space-8);
}

.poker-social-card {
  margin-top: var(--space-4);
}

.poker-cta-card {
  align-self: stretch;
}

.poker-lead-form {
  margin-top: var(--space-4);
}

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

  .poker-hero-media {
    order: -1;
    justify-content: center;
    margin-bottom: var(--space-6);
  }

  .poker-hero-image-wrapper {
    max-width: 420px;
  }

  .poker-why-grid,
  .poker-intro-grid,
  .poker-crew-grid,
  .poker-mobility-grid,
  .poker-theme-grid,
  .poker-social-grid {
    gap: var(--space-6);
  }
}
