.testimonials-swiper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-item {
    flex: 0 0 auto;
    width: 360px; /* Increased from 320px */
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.1); /* From border_color control */
    backdrop-filter: blur(8px);
    transition: background 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Match Recent Posts */
}

.testimonial-inner {
    padding: 35px 45px; /* Increased from 24px */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 5px; /* Increased from 4px */
    margin-bottom: 20px; /* Increased from 16px */
}

.testimonial-star {
    width: 18px; /* Increased from 16px */
    height: 18px;
}

.testimonial-quote {
    font-size: 15px; /* Increased from 14px */
    line-height: 1.5;
    margin-bottom: 20px; /* Increased from 16px */
    font-style: italic;
    overflow: hidden;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    margin-top: auto; /* Push to bottom */
}

.testimonial-author {
    font-size: 15px; /* Increased from 14px */
    font-weight: 500;
}

.testimonial-source {
    font-size: 13px; /* Increased from 12px */
    color: rgba(0, 0, 0, 0.5);
}

/* Swiper Navigation */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    color: var(--e-global-color-text);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 10;
}

.testimonials-swiper .swiper-button-prev {
    left: 5px;
}
.testimonials-swiper .swiper-button-next {
    right: 5px;
}

.testimonials-swiper .swiper-button-prev:after,
.testimonials-swiper .swiper-button-next:after {
    font-size: 10px;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: #BDBBB5 !important;
    opacity: 1;
    width: 6px;
    height: 6px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--e-global-color-text) !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--e-global-color-primary) !important;
}

.swiper-pagination-progressbar {
    background: #042b6f40 !important;
}

/* Responsive */
@media (max-width: 767px) {
    .testimonial-item {
        width: 300px; /* Increased from 280px */
    }
    .testimonial-author {
        font-size: 14px;
    }

    .testimonial-source {
        font-size: 12px;
    }
}