.hero--atmosphere {
  padding-top: calc(var(--space-32) + var(--header-height));
}

.atmosphere-intro .card {
  align-self: flex-start;
}

.atmosphere-layout-grid .card,
.atmosphere-bar-card,
.atmosphere-poker-card,
.atmosphere-music-card,
.atmosphere-details-grid .card,
.atmosphere-testimonial-card {
  height: 100%;
}

.atmosphere-image {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.atmosphere-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform var(--transition-slow), opacity var(--transition-normal);
}

.atmosphere-image:hover img {
  transform: scale(1.07);
}

.atmosphere-list {
  display: grid;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.atmosphere-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--color-primary);
  vertical-align: middle;
}

.atmosphere-poker-text h3 {
  margin-bottom: var(--space-4);
}

.atmosphere-cta .btn {
  min-width: 11rem;
}

.atmosphere-gallery-footer {
  align-items: center;
}

@media (max-width: 960px) {
  .hero--atmosphere {
    padding-top: calc(var(--space-24) + var(--header-height));
  }

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

@media (max-width: 640px) {
  .hero--atmosphere .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .atmosphere-cta .flex {
    flex-direction: column;
  }
}
