.gallery-slider {
    padding: 64px 0;
}

.post-single .gallery-slider,
.single-post .gallery-slider {
    padding: 16px 0;
}

.post-single .gallery-slider .container {
    padding-left: 0;
    padding-right: 0;
}

.gallery-slider .gallery-wrapper {
    position: relative;
}

.gallery-slider .gallery-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    aspect-ratio: 760 / 487;
}

.gallery-slider .gallery-arrows {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    top: 20px;
    right: 20px;
}

.gallery-slider .gallery-arrows .swiper-button-prev,
.gallery-slider .gallery-arrows .swiper-button-next {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    margin: 0;
    width: auto;
    height: auto;
    width: 30px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background-color: var(--Color-4);
    border-radius: 50%;
    transition: background .3s ease;
}

.gallery-slider .gallery-arrows .swiper-button-prev:hover,
.gallery-slider .gallery-arrows .swiper-button-next:hover {
    background-color: #fff
}

.gallery-slider .gallery-arrows .swiper-button-prev::after,
.gallery-slider .gallery-arrows .swiper-button-next::after {
    content: none;
    display: none;
}

.gallery-slider .gallery-arrows .swiper-button-prev svg,
.gallery-slider .gallery-arrows .swiper-button-next svg {
    max-width: 6px;
    min-width: 6px;
    width: 100%;
    height: auto;
}

.gallery-slider .gallery-arrows .swiper-button-prev svg path,
.gallery-slider .gallery-arrows .swiper-button-next svg path {
    transition: fill .3s ease;
}

.gallery-slider .gallery-arrows .swiper-button-prev.swiper-button-disabled,
.gallery-slider .gallery-arrows .swiper-button-next.swiper-button-disabled {
    opacity: 1;
}

.gallery-slider .gallery-arrows .swiper-button-prev:hover svg path,
.gallery-slider .gallery-arrows .swiper-button-next:hover svg path {
    fill: var(--Color-1);
}

@media (max-width:991px) {
    .gallery-slider {
        padding: 32px 0;
    }

    .post-single .gallery-slider,
    .single-post .gallery-slider {
        padding: 16px 0;
    }
}