.p-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.p-lightbox.is-active {
  display: block;
}

.p-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.p-lightbox__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 1000px);
  max-height: 90vh;
}

.p-lightbox__content img {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.p-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.p-access__map img {
  cursor: pointer;
}