/* v1.4.4 — page title bar hidden site-wide, not per page type.

   v1.4.1/v1.4.2 scoped this to `body.account` (Login/Create Account/
   Forgot Password) and `body.cms-page-view` (genuine Magento CMS
   content pages) respectively. Those left visible white gaps on
   Contact Us, the Help Desk ticket form, and the Blog listing page —
   because none of those carry either body class: Contact Us is
   Magento's separate core Contact module (its own controller/handle,
   not a CMS page), Help Desk is this site's own custom module
   (Yaalini_HelpDesk) with its own controller, and Blog is a
   third-party blog module — each with a distinct layout handle.
   Chasing every module's handle individually doesn't scale.

   Fix: stop scoping by page type. Hooked via view/frontend/layout/
   default.xml, the one layout handle Magento merges on every page
   load regardless of module/controller, and dropped the body-class
   qualifiers — just hide the element itself wherever it renders.
   Superseded and replaced the body.account rule that lived in
   account-theme.css and the standalone cms-page-title.css file (both
   removed).

   Category/product pages already have their own native MGS Claue
   theme setting to hide this bar (per user, confirmed working there
   already) — this rule is a no-op on those pages if the element
   isn't rendered there in the first place, so no conflict. */
#page-title-wrapper.page-title-wrapper {
    display: none !important;
}
