.custom-testimonials-widget {
    position: relative;
    padding: 20px 0;
}

.testimonial-item {
    background: #FFFCED;
    padding: 30px;
    height: auto;
    /* margin: 10px; */
    transition: transform 0.3s ease;
}

.custom-testimonials-swiper {
    overflow: visible;
}
.swiper-slide {
    height: auto;
}

.swiper-wrapper {
    align-items: flex-start; /* чтобы слайды не растягивались */
}

.custom-testimonials-widget {
    overflow: visible;
}
.swiper-slide .testimonial-item,
.swiper-autoheight .swiper-slide{
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .star {
    color: #ddd;
    font-size: 20px;
    margin-right: 5px;
}

.testimonial-rating .star.filled {
    color: #FFD700;
}

.testimonial-content {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    font-family: 'Inter';
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.author-position,
.author-company {
    font-size: 14px;
    color: #666;
    margin: 2px 0;
}

/* Стили Swiper */
.elementor-widget-custom_testimonials .swiper-button-next,
.elementor-widget-custom_testimonials .swiper-button-prev {
    color: #333;
    background: #232e4c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    top: unset;
    bottom: 20%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}
swiper-button-next
.elementor-widget-custom_testimonials .swiper-button-next{
    width: 50px;
    height: 50px;
}
.elementor-widget-custom_testimonials .swiper-button-prev{
    display: none;
}
.elementor-widget-custom_testimonials .swiper-button-next:after, 
.elementor-widget-custom_testimonials .swiper-button-prev:after{
    content: '';
    background-image: url(/wp-content/plugins/custom-testimonials/assets/image/Arrow-1.svg);
    background-repeat: no-repeat;
    height: 15px;
    width: 30px;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #333;
}

/* Адаптивность */
@media (max-width: 767px) {
    .testimonial-item {
        padding: 20px;
        /* margin: 5px; */
    }
    
    .custom-testimonials-widget .swiper-button-next,
    .custom-testimonials-widget .swiper-button-prev {
        display: none;
    }
}