/* Round Carousel Base Styles */
.round-carousel {
    z-index: 1;
    position: relative;
}

.swiper {
    width: 100%;
}

.round-carousel .swiper-wrapper {
    height: 65vh;
}

.round-carousel .swiper-slide {
    height: 100%;
    width: fit-content;
}

.round-carousel .swiper-slide img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

/* Swiper Pagination Container - Enhanced from featured module */
.round-carousel .swiper-pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    height: auto;
    position: relative;
}

/* Navigation Buttons - Enhanced from featured module */
.round-carousel .swiper-button-prev,
.round-carousel .swiper-button-next {
    position: relative;
    margin: 0;
    width: 25px;
    height: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

.round-carousel .swiper-button-prev:hover svg path,
.round-carousel .swiper-button-next:hover svg path {
    stroke: var(--wp--preset--color--olive);
}

.round-carousel .swiper-button-prev::after,
.round-carousel .swiper-button-next::after {
    display: none;
}

.round-carousel .swiper-button-prev svg,
.round-carousel .swiper-button-next svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Pagination Counter - Enhanced from featured module */
.round-carousel .swiper-pagination {
    position: relative;
    width: auto;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
}

.round-carousel .swiper-pagination .current-slide,
.round-carousel .swiper-pagination .total-slides {
    font-weight: 400;
}

.round-carousel .swiper-pagination .slide-count-separator {
    margin: 0 5px;
}

/* Responsive Styles */
@media screen and (min-width: 768px) {
    .round-carousel .swiper-pagination-container {
        margin-top: 40px;
    }
}

@media screen and (max-width: 576px) {
    .round-carousel .swiper-slide {
        width: 100%;
    }
}