/*
 * Click screenshots to view larger (see scripts/feat-image-lightbox.js).
 * For crisp UI captures on Retina, use a higher-resolution file: set
 * data-full-src on the thumbnail <img> to a 2x PNG or lightly compressed JPEG.
 */
.feat-detail__gallery img,
.feat-list__media img,
.feat-detail__split-aside img,
.seat-detail-grid__img img {
  cursor: zoom-in;
}

.feat-image-lightbox {
  padding: 0;
  border: none;
  margin: 0;
  width: 100%;
  max-width: none;
  max-height: none;
  background: transparent;
}

.feat-image-lightbox::backdrop {
  background: rgba(18, 16, 15, 0.88);
}

.feat-image-lightbox__scrim {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(0.75rem, 3vw, 1.5rem);
  box-sizing: border-box;
}

.feat-image-lightbox__inner {
  position: relative;
  max-width: min(96vw, 100%);
  max-height: min(92vh, 100%);
}

.feat-image-lightbox__close {
  position: fixed;
  top: clamp(0.5rem, 2vw, 1rem);
  right: clamp(0.5rem, 2vw, 1rem);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(26, 24, 22, 0.82);
  color: #f5f1ea;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.feat-image-lightbox__close:hover {
  background: rgba(26, 24, 22, 0.95);
}

.feat-image-lightbox__close:focus-visible {
  outline: 2px solid #f5f1ea;
  outline-offset: 2px;
}

.feat-image-lightbox__img {
  display: block;
  max-width: min(96vw, 100%);
  max-height: min(88vh, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0.5rem 2.25rem rgba(0, 0, 0, 0.4);
  cursor: default;
}
