/* Basic styling for peek carousel */
.peek-carousel-wrapper {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 20px 0;
}

/* Use namespaced container */
.peek-carousel-wrapper .peek-swiper-container {
    padding: 20px 0;
}

.peek-carousel-wrapper .peek-swiper-wrapper {
    align-items: center;
}

.peek-carousel-wrapper .peek-swiper-slide {
    width: 60%;
    max-width: 1100px;
    box-sizing: border-box;
    transition: transform 0.45s ease, opacity 0.45s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.peek-slide-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.peek-slide-content {
    padding: 18px 22px;
}

.peek-slide-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.peek-slide-desc {
    margin: 0;
    font-size: 14px;
    color: rgba(0,0,0,0.65);
}

/* Navigation tweaks */
.peek-carousel-wrapper .peek-swiper-button-prev,
.peek-carousel-wrapper .peek-swiper-button-next {
    color: #111;
}

/* Pagination bullets (namespaced by Swiper classes remain same but container is namespaced) */
/* .peek-carousel-wrapper .peek-slider-wrapper .peek-swiper-pagination .swiper-pagination-bullet {
    opacity: 0.5;
    height: 12px;
    width: 12px;
}
.peek-carousel-wrapper .peek-slider-wrapper .peek-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
} */
.peek-carousel-pagination-container .swiper-pagination-bullet {
    background: #888 !important;
}

.peek-carousel-pagination-container .swiper-pagination-bullet-active {
    background: #000 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .peek-carousel-wrapper .peek-swiper-slide {
        width: 85%;
    }
}
@media (max-width: 576px) {
    .peek-carousel-wrapper .peek-swiper-slide {
        width: 95%;
    }
    .peek-slide-image { padding-top: 60%; }
}
