 .hero--poker {
  position: relative;
}

.hero-background--poker::before {
  background:
    radial-gradient(circle at 10% 0%, rgba(224, 235, 255, 0.95) 0, transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(255, 228, 232, 0.95) 0, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(224, 247, 234, 0.9) 0, transparent 60%);
}

.hero-visual {
  max-width: 640px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.section-header {
  max-width: 640px;
  margin: 0 auto var(--space-6);
}

.poker-favourites-grid .poker-card {
  height: 100%;
}

.poker-list {
  margin-top: 0.5rem;
}

.poker-list li + li {
  margin-top: 0.3rem;
}

.poker-flow-grid {
  align-items: flex-start;
}

.poker-steps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.poker-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.poker-step h3 {
  margin-bottom: 0.25rem;
  font-size: var(--font-size-lg);
}

.poker-note {
  margin-top: 1rem;
  font-size: var(--font-size-sm);
}

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

.poker-image-card img {
  border-radius: var(--radius-lg);
}

.poker-highlights h3 {
  margin-bottom: 0.5rem;
}

.hosts-grid {
  align-items: flex-start;
}

.hosts-image-card img {
  border-radius: var(--radius-lg);
}

.themed-grid .themed-card {
  height: 100%;
}

.themed-meta {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: var(--space-8);
  align-items: flex-start;
}

.booking-card {
  position: relative;
}

.booking-form .field-sub {
  flex: 1;
}

.related-grid .related-card {
  height: 100%;
}

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

@media (max-width: 768px) {
  .hero-visual {
    margin-top: 2rem;
  }

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