.cuco-fancy-gallery {
    display: grid;
    grid-template-columns: 1fr .3fr .4fr;
    grid-template-rows: 200px 200px;
    gap: 25px;
}

.cuco-fancy-gallery img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    cursor: pointer;
    border-radius: 15px;
}

.cuco-fancy-gallery div:nth-of-type(1) {
    grid-area: 1 / 1 / 3 / 2;
}

.cuco-fancy-gallery div:nth-of-type(2) {
    grid-area: 1 / 2 / 3 / 3;
}

.cuco-fancy-gallery div:nth-of-type(3) {
    grid-area: 1 / 3 / 2 / 4;
}

.cuco-fancy-gallery div:nth-of-type(4) {
    grid-area: 2 / 3 / 3 / 4;
}

.cuco-fancy-gallery div.open {
    position: relative;
}

.cuco-fancy-gallery div.open .galleryOverlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.68);
    top: 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 25px;
}

.cuco-fancy-gallery .count {
    color: white;
}

@media only screen and (max-width: 1000px) {
    .cuco-fancy-gallery {
        grid-template-columns: 1fr;
    }

    .cuco-fancy-gallery div:nth-of-type(2) {
        display: none;
    }

    .cuco-fancy-gallery div:nth-of-type(3) {
        display: none;
    }

    .cuco-fancy-gallery div:nth-of-type(4) {
        display: none;
    }
}