To make all elements with the class "important" inside a <section> yellow, which CSS property would you apply?
<section>
section, .important { color: yellow; }
section .important { color: yellow; }
.important section { color: yellow; }
section #important { color: yellow; }