.gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:.75rem;grid-auto-flow:dense;width:100%}.gallery-item{position:relative;overflow:hidden;background:#f1f5f9;display:flex;align-items:center;justify-content:center}.gallery-item.wide{grid-column:span 2}.gallery-item.tall{grid-row:span 2}.gallery img{width:100%;height:100%;object-fit:cover;display:block}@media (max-width:1024px){.gallery{grid-template-columns:repeat(auto-fill,minmax(200px,1fr))}}@media (max-width:768px){.gallery{grid-template-columns:repeat(auto-fill,minmax(160px,1fr))}}