.atmosphere-hero {
  padding-top: var(--space-16);
}

.atmosphere-hero__grid {
  align-items: center;
  gap: var(--space-8);
}

.atmosphere-hero__lead {
  max-width: 34rem;
}

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

.atmosphere-hero__image-wrap {
  display: flex;
  justify-content: center;
}

.atmosphere-hero__image-card {
  max-width: 26rem;
}

.atmosphere-hero__image {
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.atmosphere-hero__alert {
  margin-top: var(--space-6);
}

.atmosphere-section__grid {
  align-items: center;
  gap: var(--space-8);
}

.atmosphere-section__grid--reverse {
  direction: rtl;
}

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

.atmosphere-section__image-block {
  display: flex;
  justify-content: center;
}

.atmosphere-section__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.atmosphere-section__sidecard {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.atmosphere-list {
  list-style: none;
  padding-left: 0;
}

.atmosphere-list li {
  position: relative;
  padding-left: 1.5rem;
  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.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary) 0, var(--color-accent-blue) 55%, transparent 100%);
}

.atmosphere-metrics__item {
  padding: var(--space-4);
}

.atmosphere-testimonials {
  margin-top: var(--space-6);
  gap: var(--space-6);
}

.atmosphere-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

  .atmosphere-hero__grid,
  .atmosphere-section__grid {
    gap: var(--space-6);
  }

  .atmosphere-section__grid--reverse {
    direction: ltr;
  }

  .atmosphere-section__sidecard {
    max-width: 100%;
  }

  .atmosphere-hero__actions {
    align-items: stretch;
  }
}
