/* ============================================
   TESTIMONIALS VIDEO SECTION
   ============================================ */

.testimonials-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.15);
}

.testimonial-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Masquer la durée affichée sur les vidéos */
.testimonial-video::-webkit-media-controls-current-time-display,
.testimonial-video::-webkit-media-controls-time-remaining-display {
    display: none;
}

.testimonial-video-caption {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: linear-gradient(135deg, #fef3f2 0%, #fff 100%);
}

@media (max-width: 768px) {
    .testimonials-video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
