Help changing padding above Featured Collection on homepage - Narrative Theme

In my shopify website with the Narrative theme I am looking to remove some whitespace from above the featured collections section on the homepage. I have scoured the Shopify DIscussions page along with a google search with several copy and paste code snippets without luck. I was wondering whether you could guide us on how to adjust so that the Featured Collection is closer to the text above it.

monstr-surfboards.myshopify.com is the shopify profile. Thank you for any help you can provide.

Hi @experimental ,

Go to Assets > theme.scss.liquid and paste this at the bottom of the file:

#shopify-section-16492832721243a789 .rich-text {
    padding-bottom: 0px !important;
}
#shopify-section-1648701162ef074211 .featured-collection {
    padding-top: 0px !important;
}

Hope it helps!