.latest-gallery {
    column-count: 3;
    column-gap: 8px;
}

.latest-gallery-item {
    width: 100%;
    height: auto;
    aspect-ratio: 0.75;
    min-height: 0%;

    flex-grow: 1;
    flex-shrink: 1;
    overflow: hidden;

    display: block;
    padding: 0px 0px;
}

.latest-gallery-item-img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;

    border-radius: 0px;
    object-position: center;
    
    display: block;
}

.latest-gallery-item:first-child {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* MOBILE LAYOUT : 528px WIDE */
@media only screen and (max-width: 1050px) and (min-width: 864px), (max-width: 650px) {
    .latest-gallery {
        column-count: 2;
    }

    .latest-gallery-item:last-child {
        display: none;
    }
}