.hero-events {
  background-image: url('/assets/images/evenimente-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-events .hero-content {
  max-width: 40rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

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

.events-grid {
  margin-top: var(--space-2);
}

.event-card .event-image-wrapper {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.event-card .event-image-wrapper img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.event-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary);
  margin-right: var(--space-2);
  transform: translateY(-1px);
}

.section-poker {
  background: radial-gradient(circle at top left, rgba(75, 159, 214, 0.08), transparent 55%);
}

.poker-grid {
  align-items: center;
  gap: var(--space-8);
}

.poker-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.poker-image-wrapper img {
  height: 100%;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.poker-content .event-list {
  margin-top: var(--space-4);
}

.poker-cta-group {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.section-premium {
  background-color: var(--color-surface-soft);
}

.premium-grid {
  margin-top: var(--space-2);
}

.premium-card {
  height: 100%;
}

.section-gallery-intro .gallery-grid-info {
  align-items: center;
  gap: var(--space-8);
}

.gallery-placeholder {
  position: relative;
  min-height: 220px;
}

.gallery-placeholder-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(75, 159, 214, 0.16), rgba(15, 23, 42, 0.1));
  box-shadow: var(--shadow-md);
}

.gallery-placeholder-card--offset {
  inset: 1.25rem -1.5rem -1.25rem 1.5rem;
  opacity: 0.6;
}

.section-support {
  background: #ffffff;
}

.support-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.support-cta {
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background-color: var(--color-surface-soft);
  box-shadow: var(--shadow-sm);
}

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

.support-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .event-card .event-image-wrapper img {
    height: 190px;
  }

  .poker-grid,
  .gallery-grid-info,
  .support-grid {
    gap: var(--space-6);
  }
}
