For example, if you have: ```html <div class="article article--featured"> <h1 class="article__title"></h1> </div> ``` Now I want to have a bigger `h1` for the variant `article--featured`. 1. Should I add the class `article__title--featured` to `h1` if I want to apply some styles to that element for the variation? 2. Or should I add a class `article--featured__title`? 3. Or should I keep only the class `article__title` and style it in CSS using a descendant selector `.article--featured .article__title`? This is not clear from the spec.
For example, if you have:
Now I want to have a bigger
h1for the variantarticle--featured.article__title--featuredtoh1if I want to apply some styles to that element for the variation?article--featured__title?article__titleand style it in CSS using a descendant selector.article--featured .article__title?This is not clear from the spec.