.testimonial-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.testimonial-row {
    display: flex;
    justify-content: center;
    gap: var(--space-m);
    width: 100%;
}

.carousel-card {
    width: 45%;
    max-width: 600px;
    flex: 0 0 auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 32px;
    border-radius: 12px;
}

.carousel-item-top img {
    width: 60px;
    height: 60px;
    border-radius: 500px;
}

.carousel-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-item-bottom img {
    height: 30px;
    width: 80px;
}

/* Responsive per schermi più piccoli */
@media (max-width: 768px) {
    .testimonial-row {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-card {
        width: 100%;
        max-width: 500px;
        margin-bottom: var(--space-m);
    }
}