/* =============================================
   Theme: Testimonials Section
   ============================================= */

.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--color-primary-start, #ff8c4d);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-weight: 700;
    color: #343a40;
    margin: 0;
}

.testimonial-author-info p {
    color: #6c757d;
    margin: 0;
}

.testimonial-rating {
    color: #FFD700; /* Jaune doré pour les étoiles */
    margin-bottom: 15px;
}
