Would it be considered acceptable to apply CSS styles directly to semantic elements such as
<article style="font-size:1.2em; color:#ccc>text text </article>
or is it recommended to avoid this practice and instead use
<div style="font-size:1.2em; color:#ccc>
<article>text text </article>
</div>