.gallery{
    padding:80px 0;
    background:#F7F8FA;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
    background:#fff;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.3s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}