.swiper-recensioni {
    width: 90%;
    max-width: 750px;
    min-height: 300px;
    margin: 0 auto;
}

.testimonial-card {
    display: flex;
    align-items: center;
    background-color: #f3f3f3;
    border-radius: 12px;
    padding: 40px 50px;
    text-align: left;
    position: relative;
}

/* Left side (avatar + info) */
.testimonial-left {
    width: 22%;
    text-align: center;
}

.avatar img,
.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ccc;
    display: block;
    margin: 0 auto 15px auto;
}

.author-info h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.author-info .role {
    font-size: 14px;
    color: #777;
    margin: 5px 0 0;
}

/* Divider */
.divider {
    width: 1px;
    background: #ddd;
    margin: 0 30px;
    align-self: stretch;
}

/* Right side (review) */
.testimonial-right {
    flex: 1;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.quote-icon {
    width: 26px;  
    height: 22px;
    background: url(/wp-content/uploads/2025/09/quote-ico.svg) no-repeat center center;
    background-size: contain;  
    display: inline-block;
    margin-bottom: 12px;
}

.review-text {
	font-size: 19px;
}
/* Swiper pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d3d3d3;
    opacity: 0.5;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background-color: #999;
    opacity: 1;
}

/* Responsive */
@media only screen and (max-width: 767px) {
    .testimonial-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .testimonial-left {
        width: 100%;
        margin-bottom: 15px;
    }

    .divider {
        display: none;
    }

    .testimonial-right {
        text-align: center;
    }
}
