.wp-gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.wp-gallery-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease-in-out;
}

.wp-gallery-carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.wp-gallery-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    pointer-events: none;
}

.wp-gallery-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 34px;
    line-height: 1 !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}

.wp-gallery-carousel-arrow.prev {
    left: 15px;
}

.wp-gallery-carousel-arrow.next {
    right: 15px;
}

.wp-gallery-carousel-arrow:hover {
    background: rgba(0,0,0,0.85);
}

@media (max-width: 768px) {
    .wp-gallery-carousel-arrow {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        font-size: 28px;
    }

    .wp-gallery-carousel-arrow.prev {
        left: 8px;
    }

    .wp-gallery-carousel-arrow.next {
        right: 8px;
    }
}