.gallery-page .section{
  padding-top:56px;
}

.gallery-page .section-head{
  margin-bottom:34px;
}

.gallery-page .gallery-grid{
  display:grid !important;
  grid-template-columns:repeat(3, 300px) !important;
  justify-content:center !important;
  gap:16px !important;
  max-width:900px;
  margin:0 auto;
}

}
.gallery-page .gallery-grid img{
  width:300px !important;
  height:300px !important;
  max-width:none !important;
  object-fit:cover !important;
  border-radius:14px;
  border:1px solid #e5e7eb;
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.gallery-page .gallery-grid img:hover{
  transform:translateY(-2px);
  transition:transform .2s ease;
}

@media (max-width: 900px){
  .gallery-page .gallery-grid{
    grid-template-columns:repeat(2, 260px) !important;
    max-width:540px;
  }

  .gallery-page .gallery-grid img{
    width:260px !important;
    height:260px !important;
  }
}

@media (max-width: 560px){
  .gallery-page .gallery-grid{
    grid-template-columns:260px !important;
    max-width:260px;
  }
}
