/* Clean, crisp thumbnails — no overlays, no blur */
.gallery-head { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1rem; }
.gallery-empty { color:var(--muted, #9aa4b2); text-align:center; padding:2rem 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
@media (min-width:720px){
  .gallery-grid { gap: 14px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0e1116;
  border: 1px solid rgba(255,255,255,.06);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  box-shadow: 0 10px 30px rgba(2,8,23,.25);
}

/* IMPORTANT: no filters/opacity/overlays */
.gallery-item::before { display: none !important; }
.gallery-item img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
}

/* Lightbox */
.gallery-lightbox{
  position:fixed; inset:0; display:none; align-items:center; justify-content:center;
  background:rgba(0,0,0,.85); z-index:1000; padding:20px;
}
.gallery-lightbox[aria-hidden="false"]{ display:flex; }
.gallery-lightbox img{
  max-width:96vw; max-height:86vh; border-radius:16px;
  border:1px solid rgba(255,255,255,.18); box-shadow:0 30px 120px rgba(0,0,0,.6);
}
.lb-close{
  position:fixed; top:18px; right:18px; background:rgba(255,255,255,.08);
  color:#fff; border:1px solid rgba(255,255,255,.18); border-radius:999px;
  padding:.5rem .7rem; cursor:pointer; font-weight:700;
}
.lb-nav{
  position:fixed; bottom:18px; background:rgba(255,255,255,.08);
  color:#fff; border:1px solid rgba(255,255,255,.18); border-radius:999px;
  padding:.6rem .9rem; cursor:pointer; font-weight:600;
}
.lb-prev{ left:18px; }
.lb-next{ right:18px; }
