.cvr_gallery__grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.cvr_gallery__grid_s {
    flex-basis: calc(15% - 25px);
    aspect-ratio: 1/1;
    background-color: #fff;
    overflow: hidden;
}

.cvr_gallery__grid_s > div {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
}

.cvr_gallery__grid_s img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media screen and (max-width: 600px) {
    .cvr_gallery__grid {
        gap: 10px;
    }
    
    .cvr_gallery__grid_s {
        flex-basis: calc(50% - 10px);
        aspect-ratio: 1/1;
        background-color: #fff;
    }
}