.oi-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 9, 11, 0.94);
}

.oi-gallery-lightbox.is-open {
  display: flex;
}

.oi-gallery-lightbox__figure {
  width: min(1100px, 100%);
  max-height: 90vh;
  margin: 0;
  text-align: center;
}

.oi-gallery-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(90vh - 48px);
  margin: 0 auto;
  border-radius: 16px;
  object-fit: contain;
}

.oi-gallery-lightbox__caption {
  margin-top: 12px;
  color: #d4d4d8;
  font: 500 14px/1.4 Geist, sans-serif;
}

.oi-gallery-lightbox__button {
  position: absolute;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(24, 24, 27, 0.82);
  color: #fff;
  cursor: pointer;
  font: 400 30px/1 Arial, sans-serif;
}

.oi-gallery-lightbox__button:hover,
.oi-gallery-lightbox__button:focus-visible {
  background: #fff;
  color: #18181b;
}

.oi-gallery-lightbox__close {
  top: 20px;
  right: 20px;
}

.oi-gallery-lightbox__previous {
  left: 20px;
}

.oi-gallery-lightbox__next {
  right: 20px;
}

@media (max-width: 640px) {
  .oi-gallery-lightbox { padding: 16px; }
  .oi-gallery-lightbox__button { width: 40px; height: 40px; }
  .oi-gallery-lightbox__previous { left: 12px; }
  .oi-gallery-lightbox__next { right: 12px; }
  .oi-gallery-lightbox__close { top: 12px; right: 12px; }
}
