.ws-images-with-gallery {
    max-width:100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    gap: 1rem;
}
.block-images-link {
    display: block;
    position: relative;
    aspect-ratio:.75;
}
.block-images-link img {
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ws-images-with-gallery.images_2 .block-images-link {
    width: calc(50% - .5rem);
}
.ws-images-with-gallery.images_3 .block-images-link {
    width: calc(33.333% - .68rem);
}
.ws-images-with-gallery.images_4 .block-images-link {
    width: calc(25% - .75rem);
}
.ws-images-with-gallery.images_5 .block-images-link {
    width: calc(20% - .8rem);
}
@media only screen and (max-width: 991px) {
    .ws-images-with-gallery.images_5 .block-images-link {
        width: calc(33.333% - .68rem);
    }
}

@media only screen and (max-width: 575px) {
    .ws-images-with-gallery .block-images-link {
        width: calc(50% - .5rem)!important;
    }
}
