.gallery {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    padding: 0 25px;
}

@media (max-width: 820px) {
    .gallery {
        height: 250px;
    }
}
@media (max-width: 400px) {
    .gallery {
        height: 175px;
    }
}

.picture-list {
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 0;
}

.gallery .picture {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    will-change: transform, opacity, scale;
    max-width: none;
}

.gallery .picture img {
    max-width: none;
    width: auto;
}

.gallery .picture {
    z-index: 8;
}

.gallery .center {
    z-index: 9;
}

figcaption {
    visibility: hidden;
}


.gallery .arrow-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 10;
    margin: 0;
    width: 40px;
    height: auto;
}

.gallery .arrow-button.left {
    left: 10px;
}

.gallery .arrow-button.right {
    right: 10px;
}

.gallery .arrow-button:hover {
    color: var(--wp--preset--color--custom-color-1);
}

.gallery .icon-container {
    width: auto!important;
}