I am currently working on creating a print CSS file. My goal is to hide the header image div located at the top of the page while still keeping the text inside it visible. I want to ensure that there is no empty space left for the div on the page. This CSS file is specifically for printing purposes.
Below is the HTML code for the module_hero:
<div class="module_hero">
<div class="image hero">
<div class="gradient">
</div>
</div>
<div class="text">
<h1>Title</h1>
<p class="blurb">Blurb</p>
</div>
</div>