.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  max-width:1200px;
  margin:0 auto;
  padding:20px 0 40px;
}

.gallery-item{
  display:block;
  overflow:hidden;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  transition:transform .25s ease, box-shadow .25s ease;
}

.gallery-item:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 50px rgba(0,0,0,.25);
}

.gallery-item img{
  width:100% !important;
  height:220px !important;
  object-fit:cover !important;
  display:block !important;
  transition:transform .35s ease;
}

.gallery-item:hover img{
  transform:scale(1.06);
}
