.gallery-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:18px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}