.static-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  background: rgba(0, 0, 0, .88);
}

.static-lightbox--open { display: flex; }
.static-lightbox__image { max-width: 100%; max-height: calc(100vh - 7rem); object-fit: contain; }
.static-lightbox__caption { margin: .75rem 0 0; color: #fff; text-align: center; }
.static-lightbox__close { position: absolute; top: .75rem; right: 1.25rem; border: 0; background: transparent; color: #fff; font-size: 3rem; line-height: 1; cursor: pointer; }
