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

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

.atmosphere-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
}

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

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

.atmosphere-block__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.atmosphere-detail {
  min-height: 100%;
}

.atmosphere-cta {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 55%), #050505;
  box-shadow: var(--shadow-hard);
}

.atmosphere-cta__grid {
  align-items: center;
}

.atmosphere-cta__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
}

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

.atmosphere-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), border-color var(--transition-base);
}

.atmosphere-link:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.9);
  box-shadow: var(--shadow-hard);
}

@media (max-width: 768px) {
  .atmosphere-cta__actions {
    margin-top: var(--space-4);
  }
}
