.hero-events {
  position: relative;
}

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

.hero-events-text {
  max-width: 34rem;
}

.hero-events-cta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-disclaimer {
  margin-top: var(--space-6);
}

.hero-events-media {
  position: relative;
  display: grid;
  gap: var(--space-4);
}

.hero-events-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-events-image-main {
  transform: translateY(0);
}

.hero-events-image-secondary {
  max-width: 70%;
  justify-self: flex-end;
  transform: translateY(-12%);
}

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

.section-alt {
  background: radial-gradient(circle at 0 0, rgba(21, 154, 88, 0.18), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(224, 177, 90, 0.08), transparent 55%),
              var(--color-bg-elevated);
}

.section-heading-wrapper {
  max-width: 46rem;
}

.event-type-grid {
  align-items: stretch;
}

.event-type-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.event-type-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.event-type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.event-type-card:hover .event-type-media img {
  transform: scale(1.05);
  opacity: 0.95;
}

.event-type-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.event-type-list,
.poker-feature-list,
.custom-offers-list,
.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.event-type-cta {
  margin-top: auto;
  align-self: flex-start;
}

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

.poker-experience-visual {
  position: relative;
}

.poker-experience-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.poker-experience-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.custom-offers-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.custom-offers-cta {
  margin-top: var(--space-2);
}

.testimonial-grid {
  align-items: stretch;
}

.testimonial-card {
  position: relative;
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-gray-200);
}

.testimonial-name {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-gray-400);
}

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

.safety-disclaimer {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.safety-cta {
  align-self: flex-start;
}

.contact-form .form-field {
  margin-bottom: var(--space-4);
}

.contact-submit {
  margin-top: var(--space-2);
}

@media (max-width: 1024px) {
  .hero-events-grid,
  .poker-experience-grid,
  .custom-offers-grid,
  .safety-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-events-media {
    order: -1;
  }

  .hero-events-image-secondary {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .hero-events-grid {
    gap: var(--space-6);
  }

  .hero-events-text {
    max-width: 100%;
  }

  .hero-events-image-secondary {
    display: none;
  }

  .event-type-media {
    height: 190px;
  }
}

@media (max-width: 480px) {
  .hero-events-cta {
    flex-direction: column;
  }
}
