/* section temoignage */
    .testimonials {
        width: max-content;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    .card {
        flex: 0 0 350px;
        border: 1px solid var(--light-gray);
        border-radius: 16px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        box-shadow: 0 2px 6px var(--light-black);
    }

    .card_header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .profile {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .profile_info h4 {
        margin: 0 0 2px;
    }

    .profile_info .role {
        display: block;
        font-size: 14px;
        color: var(--light-black);
    }

    .quote_icon {
        color: var(--yellow);
        font-size: 50px;
        line-height: 1;
        font-family: Georgia, serif;
        flex-shrink: 0;
        display: none;
    }

    .rating {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: -5px;
        span{
            color: var(--light-black);
            font-size: 14px;
        }
    }

    .stars {
        color: var(--yellow);
        font-size: 20px;
    }

    .card p.text {
        text-align: justify;
    }
/* section temoignage */

/* responsive */
    /* section temoignage */
        @media screen and (max-width: 450px) {
            .card{
                flex: 0 0 95%;
            }
        }
    /* section temoignage */
/* responsive */