BEM with nested elements

How would you name clasess in nested elements following BEM?

<div class="review">
    <div class="review__author">
        <img src="./img/image-colton.jpg" alt="Review author foto" class="review__author__img">
        <p class="review__author__data">Colton Smith<span class="isVerified">Verified Buyer</span></p>
    </div>
    <p class="review__opinion">
        "We needed the same printed design as the one we had ordered a week prior.
        Not only did they find the original order, but we also received it in time.
        Excellent!"
    </p>
</div>

How to avoid xxx__yyy_zzz_www... snakes?
Was this page helpful?