/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 1400px);
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  opacity: 0.75;
}

.lightbox-image {
  cursor: pointer;
}
