/*
 * CCDC site photo lightbox — sizing override
 * GLightbox already fits images within the viewport by default; this just
 * makes the "fill most of the window, constrained by whichever of
 * max-width/max-height binds first" behavior explicit and a bit larger
 * than the library default. Adjust the vw/vh numbers to taste.
 */
.glightbox-container .gslide-image img {
  max-width: 92vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
