/* ═══════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════ */
.gallery-cats{display:flex;gap:0.8rem;margin-bottom:2.5rem;flex-wrap:wrap}
.gallery-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:3px;border:1px solid var(--border);border-radius:3px;overflow:hidden;
}
.gallery-item{
  aspect-ratio:4/3;
  background:linear-gradient(135deg,rgba(7,18,40,0.95),rgba(26,106,255,0.08));
  border:none;display:flex;align-items:center;justify-content:center;
  cursor:pointer;position:relative;overflow:hidden;transition:all 0.3s;
}
.gallery-item:hover{background:linear-gradient(135deg,rgba(26,106,255,0.15),rgba(0,212,255,0.08))}
.gallery-item-label{
  position:absolute;bottom:0;left:0;right:0;
  padding:0.8rem;
  background:linear-gradient(0,rgba(2,8,19,0.9),transparent);
  font-family:'Space Mono',monospace;font-size:0.56rem;
  letter-spacing:0.2em;text-transform:uppercase;color:var(--pale);
  transform:translateY(100%);transition:transform 0.3s;
}
.gallery-item:hover .gallery-item-label{transform:none}
.gallery-placeholder-icon{opacity:0.15}
.gallery-placeholder-icon svg{width:40px;height:40px;color:var(--cyan)}

@media(max-width:960px){
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .gallery-grid{grid-template-columns:1fr}
}
