I've developed an add-on for Elementor that includes a card with the following HTML markup:
<div class="card">
<div class="header">
<img src="img.jpg">
</div>
<div class="content">
<p>some content</p>
</div>
</div>
To display an overlay on the image when hovered, I used Elementor's overlay background type control with the selector {{wrapper .header img:hover:before}}. Now, I want the image overlay to also appear when the div with the class "card" is hovered over, using CSS.