.atmosphere-hero {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.atmosphere-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.7;
}

.atmosphere-hero__image-wrapper {
  width: 100%;
  height: 100%;
}

.atmosphere-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atmosphere-hero__content {
  position: relative;
  max-width: 760px;
}

.atmosphere-hero__lead {
  font-size: var(--font-size-lg);
  max-width: 640px;
}

.atmosphere-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.atmosphere-section-grid {
  align-items: center;
  gap: var(--space-10);
}

.atmosphere-section-grid--reverse {
  direction: rtl;
}

.atmosphere-section-grid--reverse > * {
  direction: ltr;
}

.atmosphere-card {
  height: 100%;
}

.atmosphere-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-4);
}

.atmosphere-media__image {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-elevated);
}

.atmosphere-media {
  position: relative;
}

.atmosphere-grid-cards {
  gap: var(--space-8);
}

.atmosphere-card-small {
  height: 100%;
}

.atmosphere-card-secondary {
  height: 100%;
}

.atmosphere-list {
  list-style: none;
  margin-top: var(--space-4);
}

.atmosphere-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.atmosphere-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--color-accent-gold), var(--color-primary));
  box-shadow: 0 0 12px rgba(245, 196, 107, 0.8);
}

.atmosphere-section-header {
  max-width: 780px;
}

.atmosphere-section-header__lead {
  max-width: 640px;
}

.atmosphere-final-cta {
  padding-top: var(--space-12);
  padding-bottom: var(--space-20);
}

.atmosphere-final-card {
  max-width: 820px;
  margin: 0 auto;
}

.atmosphere-final-card__text {
  max-width: 640px;
}

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

  .atmosphere-hero__content {
    max-width: none;
  }

  .atmosphere-section-grid--reverse {
    direction: ltr;
  }

  .atmosphere-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .atmosphere-final-cta {
    padding-bottom: var(--space-16);
  }
}

@media (max-width: 600px) {
  .atmosphere-hero__lead {
    font-size: var(--font-size-base);
  }

  .atmosphere-card,
  .atmosphere-card-small,
  .atmosphere-card-secondary {
    padding: var(--space-5);
  }
}
