/* GALLERY GRID */
.gallery-wrapper .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

/* FIGURE FIXED HEIGHT */
.gallery-wrapper .gallery-figure {
    width: 100%;
    height: 270px;     /* Change height here */
    overflow: hidden;
    border-radius: 12px;
    margin: 0;
    position: relative;
}

/* IMAGES */
.gallery-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Crop perfect without distortion */
    border-radius: 12px;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

/* HOVER EFFECT */
.gallery-wrapper img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}
