.hero--atmosphere {
  min-height: min(100vh, 820px);
}

.hero__media--single {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero__overlay--atmosphere {
  background: radial-gradient(circle at 10% 0, rgba(255, 216, 73, 0.22), transparent 45%), radial-gradient(circle at 85% 20%, rgba(30, 136, 255, 0.42), transparent 55%), linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.96));
}

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

.hero__content--atmosphere .hero__subtitle {
  max-width: 40rem;
}

.section--atmosphere-intro {
  position: relative;
  background: radial-gradient(circle at top left, rgba(30, 136, 255, 0.16), transparent 55%), radial-gradient(circle at bottom right, rgba(255, 59, 63, 0.16), transparent 55%);
}

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

.atmosphere-intro__card {
  max-width: 720px;
  margin: 0 auto;
}

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

.section--atmosphere-geometry {
  background-color: rgba(5, 6, 10, 0.96);
}

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

.atmosphere-geometry__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.atmosphere-geometry__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 136, 255, 0.24), transparent 40%, rgba(255, 59, 63, 0.2));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.atmosphere-geometry__content {
  max-width: 560px;
}

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

.section--atmosphere-light {
  position: relative;
}

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

.atmosphere-light__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.atmosphere-light__media::after {
  content: "";
  position: absolute;
  inset: auto 12% 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-yellow), var(--color-accent-red));
}

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

.atmosphere-light__item p {
  margin-bottom: 0;
}

.section--atmosphere-social {
  background-color: rgba(14, 16, 24, 0.98);
}

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

.atmosphere-social__card h3 {
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
}

.section--atmosphere-art {
  position: relative;
}

.atmosphere-art {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.atmosphere-art__grid {
  margin-top: var(--space-4);
}

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

.section--atmosphere-cta {
  background: linear-gradient(135deg, rgba(30, 136, 255, 0.24), rgba(255, 216, 73, 0.18));
}

.atmosphere-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
}

.atmosphere-cta__content {
  max-width: 560px;
}

.atmosphere-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .atmosphere-geometry {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .atmosphere-light {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }

  .atmosphere-cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .atmosphere-cta__content {
    max-width: 480px;
  }
}

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

  .atmosphere-geometry__media,
  .atmosphere-light__media {
    order: -1;
  }
}
