.site-lightbox-trigger {
  cursor: zoom-in;
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(3, 9, 20, 0.92);
}

.site-lightbox.is-open {
  display: flex;
}

.site-lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.site-lightbox__frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(96vw, 1800px);
  height: min(92vh, 1200px);
}

.site-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.35rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: #101820;
}

.site-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.site-lightbox__close:hover,
.site-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
}

body.site-lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .site-lightbox {
    padding: 1rem;
  }

  .site-lightbox__frame {
    width: 100%;
    height: min(88vh, 900px);
  }

  .site-lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }
}
