@charset "UTF-8";
/* CSS Document */

.testimonial-container {
    width: 100%;  
    max-width: 860px;
    height: auto; 
    min-height: 400px; 
    margin: auto;
    padding: 20px;
    box-sizing: border-box; 
    text-align: center;
    color: #383c6d;
}

.testimonial {
    display: none;
    animation: fade 1s ease-in-out;
}

.testimonial.active {
    display: block;
}

.testimonial-text {
    font-size: 120%;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-logo img {
    margin-top: 10px;
    width: auto;
    height: 50px;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}