/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GLightBox */

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery a {
    flex: 1;
    margin: 10px;
    min-width: calc(33.33% - 20px);
    /*
    min-width: 25vw;
    min-height: 18vw;
    */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}


.gallery a::before {
    content: "";
    display: block;
    padding-top: 66.7%; /* Співвідношення сторін 3:2 */
}

.gallery a > img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Змінено з "contain" */
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s, filter 0.3s;
}

.gallery a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}


.gslide-image img {
    object-fit: contain !important;
}

/* GLightBox <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
