/* BRI-540 genie-gate fix — Landscape (rev6, post ID 14).
   The page's sticky mobile quote bar (.bnl-sticky-cta, ~102px tall at
   <=767px) postdates the site-wide genie dock install (2026-08-15) by
   two weeks, so rev6 never set --bnl-genie-clearance and the dock
   overlapped the CTA by ~90px. Additive only — rev6 files untouched.
   Measured via Playwright at 480px: sticky-cta top=797.8, dock
   bottom=888 (viewport 900) -> 100px clears it with an 8px gap.

   Scoped to body.postid-14, NOT .bnl-page--products-landscape: the
   genie dock (.lg-dock) is injected by wp_footer as a sibling of the
   page's content div, not a descendant, so a custom property set on
   the page wrapper never inherits down to it. body carries a
   per-post ID class and is a real ancestor of both. */
@media (max-width: 767px) {
  body.postid-14 { --bnl-genie-clearance: 100px; }
}
