Imagine having a structure like this:
<div class="bigWrap">
<div class="element">
...
<div class="HoverThisElement"></div>
...
</div>
<div class="element">
...
<div class="HoverThisElement"></div>
...
</div>
<div class="element">
...
<div class="HoverThisElement"></div>
...
</div>
</div>
If I want to style the .element when its child .HoverThisElement is hovered, how can I achieve that? Please provide an example using SASS if possible.