.testimonials-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: var(--bg-dark);
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
}

.testimonial-item {
    min-width: 350px;
    margin: 0 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial-content {
    flex: 1;
}

.testimonial-content h4 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.testimonial-content p {
    margin: 0 0 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause l'animation au survol */
.testimonials-container:hover .testimonials-scroll {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-item {
        min-width: 300px;
    }
} 