.photos img,
.report-photos img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(8, 12, 11, .94);
  touch-action: none;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100vw;
  max-height: 100dvh;
  border: 0;
  border-radius: 0;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.lightbox-button {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close { top: max(10px, env(safe-area-inset-top)); right: 10px; }
.lightbox-prev { left: 8px; top: 50%; margin-top: -22px; }
.lightbox-next { right: 8px; top: 50%; margin-top: -22px; }
.lightbox-counter {
  position: absolute;
  top: max(20px, env(safe-area-inset-top));
  left: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
body.lightbox-open { overflow: hidden; }
