.gallery .gallery-grid{
  display:block;
  columns:3 260px;
  column-gap:14px;
  background:transparent;
}
.gallery .gallery-grid figure{
  display:inline-block;
  width:100%;
  margin:0 0 14px;
  aspect-ratio:auto;
  break-inside:avoid;
  border:1px solid rgba(255,255,255,.08);
  background:#05070b;
}
.gallery .gallery-grid img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:auto;
  object-fit:contain;
}
.gallery .gallery-grid figure:hover img{
  transform:scale(1.015);
}
@media(max-width:900px){.gallery .gallery-grid{columns:2 220px}}
@media(max-width:600px){
  .gallery .gallery-grid{columns:1;column-gap:0;margin-left:-8px;margin-right:-8px}
  .gallery .gallery-grid figure{margin-bottom:12px}
  .gallery .gallery-grid img{max-height:none}
}
