How Do I Remove "Subheading" From News Page In Turbo Theme

Our store currently uses the Turbo theme. On the News page under the heading “NEWS” the page has “Subheading”. How do I add a subheading? How do I remove “Subheading” from the page completely? Here is the page: https://shop.precisionscale.com/blogs/news

@DArmella , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > styles.scss.css and paste this at the bottom of the file:
.blog .blog-header .subtitle{
    display: none !important;
}

Kind regards,
Diego

This works perfectly. Thank you!