On this page:
I’m using the following custom CSS to hide the large ‘featured image’ that is automatically appearing at the top of the page (this is my main blog page).
.page .entry-featured.mtn {
display: none !important;
}
The issue is that the area at the top where I’m removing the featured image from now has a lot of extra padding:

How can I eliminate this padding?
Perhaps there is a better way to remove the featured image from this page (my posts page) rather than the code i’m using above?
Thank you