.gallery-section{

    padding:150px 0;

}

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:20px;

    margin-top:70px;

}

.gallery-item{

    overflow:hidden;

    border-radius:24px;

    background:#10231C;

}

.gallery-item.large{

    grid-row:span 2;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .45s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}