/* Gallery Lightbox */
.gallery_lightbox_grid{display:grid;grid-template-columns:repeat(var(--gl-cols,3),1fr);gap:10px;}
.gallery_lightbox_item{display:block;position:relative;overflow:hidden;aspect-ratio:4/3;background:var(--secondary);}
.gallery_lightbox_item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease;}
.gallery_lightbox_item:hover img{transform:scale(1.06);}
@media(max-width:991px){.gallery_lightbox_grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:575px){.gallery_lightbox_grid{grid-template-columns:repeat(2,1fr);}}
/* Galerie: wenn das Galerie-Modul die erste Sektion einer Seite ist, das fixe Logo oben freistellen (Logo sichtbar >=768px; mobil ausgeblendet) */
@media (min-width:768px){
  .site-main > .gallery_lightbox_section:first-child{padding-top:220px;}
}
