/* /gallery/ page — grid + lightbox, uses the site's own CSS variables from front-adaptive.css */
.pubgal-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem;margin-top:1.5rem}
.pubgal-item{border-radius:var(--radius,14px);overflow:hidden;background:var(--card,#1a1a1e);border:1px solid var(--line,rgba(255,255,255,.1));position:relative;padding:0;cursor:pointer}
.pubgal-item img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform .3s}
.pubgal-item:hover img{transform:scale(1.04)}
.pubgal-empty{color:var(--muted,#c4bbb0);text-align:center;padding:3rem 1rem}
.pubgal-lightbox{position:fixed;inset:0;background:rgba(0,0,0,.92);display:none;align-items:center;justify-content:center;z-index:1000;padding:2rem}
.pubgal-lightbox.gal-show{display:flex}
.pubgal-lightbox img{max-width:100%;max-height:100%;border-radius:8px}
.pubgal-lightbox-close{position:fixed;top:1.25rem;right:1.5rem;color:#fff;font-size:2rem;background:none;border:0;cursor:pointer;line-height:1;z-index:1002}
.pubgal-lightbox-nav{position:fixed;top:50%;transform:translateY(-50%);color:#fff;font-size:1.6rem;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.25);width:48px;height:48px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:1002;transition:background .15s}
.pubgal-lightbox-nav:hover{background:rgba(207,164,68,.25);border-color:var(--gold,#cfa444)}
.pubgal-lightbox-prev{left:1.25rem}
.pubgal-lightbox-next{right:1.25rem}
@media(max-width:640px){.pubgal-lightbox-nav{width:40px;height:40px;font-size:1.2rem}.pubgal-lightbox-prev{left:.5rem}.pubgal-lightbox-next{right:.5rem}}
@media(max-width:640px){.pubgal-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr))}}
