/* SOUNDINGS — minimal horizontal carousel (Swiper), fixed-height slides */

.soundings {
  height: 100vh;
  /* Full-bleed: break out of the centered, max-width:1800px .container so
     each slide is the full viewport width. Otherwise wide slides (esp. the
     side-by-side pairs) overflow the capped slide and bleed into neighbors. */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
}

.soundings-carousel {
  height: 100vh;
  width: 100%;
}

/* One slide fills the view; the image is centered within it at a fixed height.
   overflow:hidden clips content to its own slide so neighbors never peek in. */
.soundings-carousel .swiper-slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.soundings-item {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soundings-item img {
  display: block;
  width: auto;
  height: auto;
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

/* Paired images — side by side, comparable height */
.soundings-pair {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.soundings-pair .soundings-item img {
  max-width: 44vw;
}

/* Directional cursor hints the click-to-advance zones */
.soundings-carousel.cursor-prev { cursor: w-resize; }
.soundings-carousel.cursor-next { cursor: e-resize; }

/* Caption (bottom-left) + counter (bottom-right), inverted like the chrome */
.soundings-meta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
  color: #405A6B;
}

.soundings-caption,
.soundings-counter {
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.soundings-counter {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .soundings-meta {
    bottom: 1.25rem;
    padding: 0 1rem;
  }

  .soundings-item img {
    max-height: 68vh;
    max-width: 88vw;
  }

  .soundings-pair {
    gap: clamp(0.5rem, 2vw, 1rem);
  }

  .soundings-pair .soundings-item img {
    max-width: 43vw;
  }
}
