/**
 * Post Carousel Widget Styles
 */

.exat-post-carousel {
    padding: 20px 0;
}

.exat-post-carousel .swiper-slide {
    height: auto;
    display: flex;
}

.exat-post-carousel__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Pagination styles - Sync with Elementor controls */
.exat-post-carousel .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 20px;
}

.exat-post-carousel .swiper-pagination-bullet {
    width: var(--exat-pagination-bullet-size, 10px);
    height: var(--exat-pagination-bullet-size, 10px);
    background: var(--exat-pagination-bullet-color, #d1d5db);
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 9999px;
}

.exat-post-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: var(--exat-pagination-bullet-active-width, 24px);
    background: var(--exat-pagination-bullet-active-color, #1d4ed8);
    opacity: 1;
}

/* Ensure images cover properly */
.exat-post-carousel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Clamp title to 3 lines */
.exat-post-carousel__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
