** Bem official website says **
Create a block If a section of code might be reused and it doesn't depend on other page components being implemented.
Create an element If a section of code can't be used separately without the parent entity (the block).
I have a "about section" block. its elements depend on parent and not reusable in website . how to structure according to bem this code ? this code breaking bem rule because its BEM not BEEM.
<section class="about">
<div class="about__container">
<div class="about__header">
<h2 class="about__title">about title</h2>
<p class="about__sub-title">about sub title </p>
</div>
<div class="about__stats">
<div class="about__stats__item">
<div class="about__stats__title">stats title</div>
<div class="about__stats__sub-title">stats sub title</div>
</div>
</div>
<div class="about__features">
<div class="about__features__item">
<div class="about__features__icon">features icon </div>
<div class="about__features__title">features title </div>
</div>
</div>
</div>
</section>