.testimonials-section {
    border-radius: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    gap: 64px;
    padding: 32px 96px 96px;
}

.testimonials-container {
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /*flex-wrap: wrap;*/
    gap: 32px;
    padding: 0;
    width: 100%;
}

.testimonial-card {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    width: 100%;
    border-radius: 16px;
    padding: 32px;
    background-color: #fff;
}

.testimonial-container-left,
.testimonial-container-center,
.testimonial-container-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-wrap: wrap;
    width: 100%;
}

.testimonial-card.purple {
    box-shadow: 0 6px 12px rgba(155, 102, 255, 0.15);
}
.testimonial-card.blue {
    box-shadow: 0 6px 12px rgba(95, 142, 186, 0.15);
}

.testimonial-card.pink {
    box-shadow: 0 6px 12px rgba(191, 115, 155, 0.15);
}

.testimonial-card.mint {
    box-shadow: 0 6px 12px rgba(74, 154, 146, 0.15);
}

.testimonial-card.orange {
    box-shadow: 0 6px 12px rgba(193, 126, 78, 0.15);
}

.testimonial-card.green {
    box-shadow: 0 6px 12px rgba(112, 149, 74, 0.15);
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    align-items: center;
    gap: 16px;
}

.testimonial-author p {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    white-space: pre-wrap;
}

.testimonial-quote {
    display: flex;
    flex-direction: column;
    color: var(--color-secondary);
    font-family: "Outfit", sans-serif;
    word-break: break-word;
    font-weight: var(--font-weight-mixed);
    font-size: var(--font-size-lg);
    letter-spacing: 0;
    gap: 16px;
}

.testimonial-author p {
    color: var(--color-secondary);
} 

.testimonial-quote.purple span,
.testimonial-author.purple p {
    color: #9B66FF;
}

.testimonial-quote.blue span,
.testimonial-author.blue p {
    color: #5F8EBA;
}

.testimonial-quote.pink span,
.testimonial-author.pink p {
    color: #BF739B;
}

.testimonial-quote.mint span,
.testimonial-author.mint p {
    color: #4A9A92;
}

.testimonial-quote.orange span,
.testimonial-author.orange p {
    color: #C17E4E;
}

.testimonial-quote.green span,
.testimonial-author.green p {
    color: #70954A;
}

.testimonial-actions {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.testimonial-see-more {
    background: none;
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    color: var(--color-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.testimonial-card.is-hidden {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 10px;
    border-radius: 8px;
    border: 2px solid var(--color-secondary);
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* Responsive Design */

/* Tablettes */
@media (max-width: 1024px) {
    .testimonials-container {
        display: grid;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 32px 24px 96px;
        gap: 48px;
    }

    .testimonials-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card {
        padding: 24px;
        gap: 24px;
    }

    .testimonial-quote {
        font-size: var(--font-size-lg);
        gap: 12px;
    }

    .testimonial-author p {
        font-size: var(--font-size-lg);
    }
    
}