.testimonials__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;

    &.bg_img {
        background-size: cover;
        background-position: center;
        padding: 40px;
        position: relative;
        text-align: left;
        justify-content: end;
        padding: 35px;
        border-radius: var(--border-radius);

        @media (min-width: 992px) {
            padding: 100px;
        }

        &:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            border-radius: var(--border-radius);
            background: linear-gradient(90deg, rgba(154, 92, 255, 0.35) 0%, rgba(72, 41, 155, 1) 100%);

            @media (min-width: 992px) {
                background: linear-gradient(90deg, rgba(154, 92, 255, 0) 0%, rgba(72, 41, 155, 1) 100%);
                padding: 100px;
            }
        }

        .testimonials__quote,
        .testimonials__author span {
            color: var(--white);
        }

        .testimonials__content {
            position: relative;
            z-index: 1;

            @media (min-width: 992px) {
                max-width: 400px;
            }

            .testimonials__quote {
                font-size: 28px;
                font-style: normal;
                line-height: 32px;
                font-weight: 700;
                border-bottom: 1px solid var(--purple);
                padding-bottom: 15px;
            }

            .testimonials__author {
                color: var(--white);

                .testimonials__nom {
                    font-weight: 700;
                }

                .testimonials__poste {
                    opacity: 0.5;
                }
            }
        }
    }
}