.verified-reviews {
    margin-block: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    
    @media (width > 768px) {
        margin-block: 48px;
        gap: 24px;
    }

    .avis {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        border: 1px solid #bbb;
        border-radius: 8px;
        padding: 8px;
        width: 150px;
        
        @media (width > 768px) {
            padding: 16px;
            width: 180px;
        }

        &.text {
            display: grid;
            place-content: center;
            gap: 0;
            text-align: center;
            color: #0D1A22;
        }

        p {
            margin: 0;
            font-family: 'Roboto';
        }

        img {
            display: block;
        }
    }
}