.emg-masonry-gallery {

    column-count: 4;
    column-gap: 15px;
}

.emg-item {

    break-inside: avoid;
    margin-bottom: 15px;
}

.emg-item img {

    width: 100%;
    display: block;
    border-radius: 10px;
    transition: all .3s ease;
}

.emg-item img:hover {

    transform: scale(1.03);
}

@media(max-width:1024px){

    .emg-masonry-gallery{
        column-count:3;
    }
}

@media(max-width:768px){

    .emg-masonry-gallery{
        column-count:2;
    }
}

@media(max-width:480px){

    .emg-masonry-gallery{
        column-count:1;
    }
}