.poker-hero {
  position: relative;
  color: var(--color-text);
}

.poker-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.4;
}

.poker-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.poker-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-8);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.poker-hero-copy {
  max-width: 40rem;
}

.poker-hero-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

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

.poker-hero-note {
  font-size: var(--font-size-sm);
}

.poker-hero-aside {
  align-self: center;
}

.poker-hero-card {
  backdrop-filter: blur(20px);
}

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

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

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--color-primary-strong), transparent);
  opacity: 0.9;
}

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

.poker-figure figcaption {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.section-surface-alt {
  background: radial-gradient(circle at top left, rgba(216, 164, 58, 0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.95), rgba(5, 7, 11, 1));
}

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

.section-heading p {
  margin-bottom: 0;
}

.poker-aside-card {
  align-self: flex-start;
}

.poker-aside-note {
  font-size: var(--font-size-sm);
}

.poker-packages-grid {
  align-items: stretch;
}

.poker-package-card {
  display: flex;
  flex-direction: column;
}

.poker-package-card .card-body {
  flex: 1 1 auto;
}

.poker-gallery-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

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

@media (max-width: 1023px) {
  .poker-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .poker-hero-aside {
    order: -1;
  }
}

@media (max-width: 767px) {
  .poker-hero-media {
    opacity: 0.3;
  }

  .poker-hero-layout {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .section-heading {
    text-align: left;
  }

  .poker-gallery-cta {
    justify-content: flex-start;
  }
}
