.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:2rem}.gallery-item{position:relative;overflow:hidden;border-radius:12px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);aspect-ratio:4/3;transition:transform .3s,border-color .3s}.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}.gallery-item:hover{transform:translateY(-5px);border-color:rgba(255,255,255,.3);box-shadow:0 10px 30px rgba(0,255,234,.1)}.gallery-item:hover img{transform:scale(1.05)}