/* Local overrides for the verbatim WP chrome (Astro rebuild) — the ONLY
   intentional deviations from the copied theme CSS/JS. */

/* Live WP renders the header sticky (bootstrap sticky-top); pin that so the
   theme's fixed-position fallback can't win in any cascade race. */
.pix-header { position: sticky !important; }

/* Search overlay chrome exists on WP but its markup isn't ported. */
.pix-overlay, .shape-overlays { display: none !important; }

/* Menu-close bug (present on WP too): the plugin ships a 14px transparent
   ::before "hover bridge" above each panel to span the item→panel gap, but
   the panel's overflow:hidden clips it, so crossing the gap fires mouseleave
   and closes the panel instantly. Unclip the open panel so the bridge works. */
.gridintel-top-item.gridintel-open > .gridintel-panel { overflow: visible !important; }

/* GIF screen-recordings were converted to <video>; give them the img
   sizing the theme applies to images. */
main video { max-width: 100%; height: auto; }
