.gallery {
    margin: 0 -2px;
}

.gallery__arrow {
    z-index: 1;
    position: absolute;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 15px;
    border-width: 0;
    background: rgba(255, 255, 255, .8);
    cursor: pointer;
}

.gallery__next {
    right: 0;
    border-radius: 0 4px 4px 0;
}

.gallery__prev {
    left: 0;
    border-radius: 4px 0 0 4px;
}

.gallery__block {
    height: 440px;
    padding: 0 2px;
}

.gallery__block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__block--combine {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: -4px -2px;
    padding: 0 2px;
    height: 446px;
}

.gallery__block--combine a {
    width: calc(100% / 2);
    height: calc(100% / 2);
    border: 2px solid transparent;
}


@media (max-width: 1023px) {
    .gallery__block {
        height: 235px;
    }

    .gallery__block--combine {
        height: 241px;
    }
}

@media (max-width: 767px) {
    .gallery {
        padding: 0 15px;
    }

    .gallery__next {
        right: 15px;
    }

    .gallery__prev {
        left: 15px;
    }
}
