.maglido-atmo-section {
  max-width: 1200px;
  margin: 80px auto 60px;
  padding: 0 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maglido-atmo-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.maglido-atmo-section p.maglido-atmo-intro {
  margin: 0 0 30px;
  color: #555;
  max-width: 620px;
}

.maglido-atmo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.maglido-atmo-item {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.maglido-atmo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maglido-atmo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .maglido-atmo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .maglido-atmo-grid {
    grid-template-columns: 1fr;
  }
  .maglido-atmo-section {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}