.hero--poker {
  position: relative;
}

.hero--poker-layout {
  align-items: center;
}

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

.hero-lead {
  font-size: var(--font-size-lg);
}

.hero-meta-row {
  flex-wrap: wrap;
}

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

.hero-image-frame {
  position: relative;
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

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

.hero-image-overlay-card {
  position: absolute;
  left: 50%;
  bottom: var(--space-6);
  transform: translateX(-50%);
  max-width: 80%;
}

.poker-section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}

.poker-section-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.poker-section-side-card {
  display: flex;
  align-items: stretch;
}

.poker-section-side-card > * {
  width: 100%;
}

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

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

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-primary));
  box-shadow: 0 0 0 4px rgba(183, 140, 255, 0.18);
}

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

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

.poker-link-list li {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.poker-format-card {
  height: 100%;
}

.poker-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(109, 95, 150, 0.9);
  box-shadow: var(--shadow-elevated);
}

.poker-image-group,
.poker-image-gallery {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-text {
  font-size: var(--font-size-sm);
}

#poker-contact-card {
  max-width: 1120px;
  margin: 0 auto;
}

.poker-legal-card {
  height: 100%;
}

@media (max-width: 900px) {
  .hero--poker {
    padding-top: var(--space-16);
  }

  .hero-image-overlay-card {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: var(--space-4);
  }

  .hero-image-frame {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 768px) {
  .hero--poker-layout {
    gap: var(--space-10);
  }

  .poker-section-side-card {
    margin-top: var(--space-6);
  }
}

@media (max-width: 640px) {
  .hero-lead {
    font-size: var(--font-size-base);
  }

  .hero-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
