.editorial-gallery {
  padding: clamp(3rem, 6vw, 5.5rem) 1.25rem;
  background: #080b10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-gallery__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.editorial-gallery__eyebrow {
  margin: 0 0 0.65rem;
  color: #28c9f4;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-gallery h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.editorial-gallery__intro {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #c6cbd3;
  font-size: 1.05rem;
  line-height: 1.65;
}

.editorial-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.editorial-gallery figure {
  grid-column: span 6;
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: #111720;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.editorial-gallery figure:first-child {
  grid-column: span 7;
}

.editorial-gallery figure:nth-child(2) {
  grid-column: span 5;
}

.editorial-gallery__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #05070a;
}

.editorial-gallery figure:nth-child(2) .editorial-gallery__media {
  aspect-ratio: 4 / 5;
}

.editorial-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.editorial-gallery figure:hover img {
  transform: scale(1.025);
}

.editorial-gallery figcaption {
  padding: 0.9rem 1rem 1rem;
  color: #dfe4eb;
  font-size: 0.92rem;
  line-height: 1.45;
}

.editorial-gallery--musicians figure:first-child,
.editorial-gallery--musicians figure:nth-child(2) {
  grid-column: span 6;
}

.editorial-gallery--musicians figure:first-child .editorial-gallery__media,
.editorial-gallery--musicians figure:nth-child(2) .editorial-gallery__media {
  aspect-ratio: 4 / 5;
}

.editorial-gallery--musicians figure:first-child img {
  object-position: center top;
}

.editorial-gallery--musicians figure:nth-child(3) {
  grid-column: 1 / -1;
}

.editorial-gallery--musicians figure:nth-child(3) .editorial-gallery__media {
  aspect-ratio: 16 / 7;
}

.editorial-gallery--musicians figure:nth-child(3) img {
  object-position: center 72%;
}

.editorial-gallery--about figure:first-child,
.editorial-gallery--about figure:nth-child(2) {
  grid-column: span 6;
}

.editorial-gallery--about .editorial-gallery__media,
.editorial-gallery--about figure:nth-child(2) .editorial-gallery__media {
  aspect-ratio: 4 / 3;
}

@media (max-width: 760px) {
  .editorial-gallery {
    padding-inline: 1rem;
  }

  .editorial-gallery figure,
  .editorial-gallery figure:first-child,
  .editorial-gallery figure:nth-child(2) {
    grid-column: 1 / -1;
  }

  .editorial-gallery__media,
  .editorial-gallery figure:nth-child(2) .editorial-gallery__media {
    aspect-ratio: 4 / 3;
  }

  .editorial-gallery--musicians figure:nth-child(3) .editorial-gallery__media {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-gallery img {
    transition: none;
  }
}
