How can I eliminate excessive white space in my Narrative Theme?

Hello @artypods

Add the following code at the end of your theme.scss file:

@media screen and (max-width: 425px) {
    .section-header {
        margin-bottom: 0;
    }
    
    body:not(.template-index) .main-content {
        padding-top: 0;
    }
    
    .section-header {
        display: none;
    }
}