/* v1.4.2 tried recoloring the title text to the brand maroon after the
   background admin field was set to white — same reasoning as the
   account-page version of this fix in account-theme.css.

   v1.4.3: on reflection this still left an unwanted plain white gap
   (the wrapper's own padding/height persisted even with visible
   text). Simpler to just remove the whole bar rather than recolor it.

   Scoped to `body.cms-page-view`, the generic body class Magento's CMS
   controller (Cms\Controller\Page\View::addPageLayoutHandles) adds to
   EVERY CMS page — confirmed via the real <body> class list on the
   About Us page (`cms-about-us cms-page-7 ... cms-page-view ...`).
   This one rule therefore covers About Us, Privacy Policy, Terms &
   Conditions, Shipping Policy, and any other CMS content page without
   needing a rule per page. Included via view/frontend/layout/
   cms_page_view.xml, which hooks the same generic `cms_page_view`
   layout handle Magento applies to every CMS page. */
body.cms-page-view #page-title-wrapper.page-title-wrapper {
    display: none !important;
}

