.premia-hero {
  background-image:
    linear-gradient(180deg, rgba(18, 21, 19, 0.04) 38%, rgba(18, 21, 19, 0.82) 100%),
    url("/passage-premia-hero.jpg");
  background-position: center 52%;
}

.henan-hero {
  background-image:
    linear-gradient(180deg, rgba(18, 21, 19, 0.04) 32%, rgba(18, 21, 19, 0.84) 100%),
    url("/passage-henan-hero.jpg");
  background-position: center 48%;
}

.real-gallery {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding: 0 0 13px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #7f8c00 #d9d5cb;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.photo-real {
  --photo-aspect: 4 / 3;
  flex: 0 0 auto;
  position: relative;
  width: auto;
  height: clamp(300px, 30vw, 430px);
  aspect-ratio: var(--photo-aspect);
  margin: 0;
  overflow: hidden;
  background: #121513;
  border-radius: 7px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.photo-real.photo-portrait {
  --photo-aspect: 3 / 4;
}

.photo-real img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-real figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  padding: 9px 11px;
  background: rgba(18, 21, 19, 0.82);
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.25;
}

.gallery-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.gallery-meta > span {
  color: var(--muted);
  font-size: 0.82rem;
}

.gallery-controls {
  display: flex;
  gap: 7px;
}

.gallery-controls button {
  display: grid;
  width: 39px;
  height: 39px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 600 18px/1 "DM Mono", monospace;
}

.gallery-controls button:hover,
.gallery-controls button:focus-visible {
  background: var(--acid);
  outline: none;
}

@media (max-width: 620px) {
  .premia-hero {
    background-position: 45% center;
  }

  .henan-hero {
    background-position: 58% center;
  }

  .gallery-meta {
    justify-content: space-between;
    margin-top: 18px;
  }

  .gallery-meta > span {
    max-width: 190px;
    line-height: 1.4;
  }

  .real-gallery {
    gap: 10px;
    margin-right: -20px;
    padding-right: 20px;
  }

  .photo-real {
    height: min(72vw, 330px);
  }

  .photo-real figcaption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    font-size: 0.72rem;
  }
}
