.atmosphere {
  display: grid;
  gap: 2.5rem;
}

@media (width >= 768px) {
  .atmosphere {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3.5rem;
    align-items: center;
  }
}

.atmosphere__body {
  color: rgb(242 242 244 / 0.7);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 30rem;
}

.atmosphere__points {
  display: flex;
  flex-direction: column;
}

.atmosphere__point {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgb(242 242 244 / 0.15);
}

.atmosphere__point:first-child {
  border-top: 1px solid rgb(242 242 244 / 0.15);
}

.atmosphere__point-title {
  display: block;
  margin-bottom: 0.35rem;
  color: rgb(242 242 244);
  font-size: 1.35rem;
  line-height: 1.1;
}

.atmosphere__point-text {
  color: rgb(242 242 244 / 0.55);
  font-size: 0.92rem;
  line-height: 1.55;
}

.atmosphere__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.atmosphere__photo {
  overflow: hidden;
  background: rgb(18 18 22);
}

.atmosphere__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.atmosphere__photo:hover img {
  transform: scale(1.04);
}

.atmosphere__photo--sign {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 11rem;
}

.atmosphere__photo--bar {
  aspect-ratio: 4 / 5;
}

.atmosphere__photo--lounge {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

@media (width >= 768px) {
  .atmosphere__photo--sign {
    min-height: 0;
  }
}
