.poker-hero {
  padding-top: var(--space-20);
}

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

.poker-hero__title {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.poker-hero__subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-6);
}

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

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

.poker-hero__media {
  min-height: 320px;
  box-shadow: var(--shadow-medium);
}

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

.poker-section h2 {
  margin-bottom: var(--space-4);
}

.poker-section p:last-child {
  margin-bottom: 0;
}

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

.poker-section--reverse {
  grid-auto-flow: dense;
}

.poker-section--reverse > .media-cover {
  order: -1;
}

.poker-themes {
  padding: var(--space-8);
}

.poker-themes__grid {
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

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

.poker-themes__footer {
  max-width: 40rem;
}

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

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

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

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

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

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

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

@media (max-width: 900px) {
  .poker-hero__layout {
    grid-template-columns: 1fr;
  }

  .poker-hero {
    padding-top: var(--space-16);
  }
}

@media (max-width: 768px) {
  .poker-hero__media {
    min-height: 260px;
  }

  .poker-themes {
    padding: var(--space-6);
  }
}

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