/* initials */
.gallery{
padding-bottom: 43px;
background:#ECDAC6;

}

/* main layout */
.gallery-layout{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* full width images */
.g-item.full img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:12px;
}

/* middle row */
.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.row img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
}

/* optional hover effect */
.gallery-layout img{
    transition:0.3s ease;
}

.gallery-layout img:hover{
    transform:scale(1.02);
}