body.home-page main {
  background: transparent;
}

.hero--home {
  position: relative;
}

.hero--home .hero-inner {
  padding-bottom: 2.5rem;
}

.hero-image-wrapper {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  max-width: 640px;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.95);
}

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

.hero-image-glow {
  position: absolute;
  inset: auto 10% -18% 10%;
  height: 40px;
  background: radial-gradient(circle at 50% 0, rgba(75, 127, 255, 0.35), transparent 70%);
  pointer-events: none;
}

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

.home-program-grid .home-program-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-card-link {
  font-size: var(--font-size-sm);
}

.home-venue-grid {
  align-items: center;
}

.home-venue-image-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(227, 222, 245, 0.9);
}

.home-venue-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.home-poker-grid {
  align-items: center;
}

.home-poker-image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(224, 235, 255, 0.9);
}

.home-poker-badges {
  position: absolute;
  inset: auto 10px 10px auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-poker-text .home-poker-list {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: var(--font-size-sm);
}

.home-poker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
  font-size: 0.7rem;
}

.home-poker-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-themed-grid {
  align-items: stretch;
  gap: var(--space-8);
}

.home-themed-card {
  align-self: center;
}

.home-events-grid,
.home-gastro-grid,
.home-guests-grid,
.home-newsletter-grid,
.home-archive-grid {
  align-items: center;
}

.home-events-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: var(--font-size-sm);
  margin: var(--space-4) 0;
}

.home-events-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-secondary-sun), var(--color-accent-pink));
}

.home-events-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.home-gastro-image-frame,
.home-guests-image-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(227, 222, 245, 0.9);
}

.home-testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-4) 0;
}

.home-testimonial blockquote {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.home-testimonial figcaption {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  margin-top: 0.3rem;
}

.home-newsletter-form {
  align-self: stretch;
}

.home-newsletter-list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: var(--font-size-sm);
}

.home-newsletter-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  text-align: center;
  border-radius: 50%;
  background: var(--color-secondary-sun-soft);
  color: var(--color-gray-800);
  font-size: 0.75rem;
}

.home-archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-3);
}

.home-form .btn--full {
  margin-top: var(--space-3);
}

@media (max-width: 900px) {
  .hero-image-frame {
    max-width: 520px;
  }

  .home-venue-grid,
  .home-poker-grid,
  .home-themed-grid,
  .home-events-grid,
  .home-gastro-grid,
  .home-guests-grid,
  .home-newsletter-grid,
  .home-archive-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-venue-image-wrapper,
  .home-poker-image-wrapper,
  .home-gastro-image-wrapper,
  .home-guests-image-wrapper {
    order: -1;
  }
}

@media (max-width: 600px) {
  .hero-image-wrapper {
    margin-top: 1.8rem;
  }

  .hero-image-frame {
    border-radius: 24px;
  }

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

  .home-venue-ctas,
  .home-poker-ctas,
  .home-events-ctas {
    flex-direction: column;
    align-items: stretch;
  }
}
