/* Hide two pieces of Framer chrome that the runtime bundle injects on
   every published page:
   1. `.__framer-badge` — the bottom-right "Made in Framer" attribution
      anchor (rendered alongside Framer-generated atomic classes that vary
      per republish, so we target the canonical hook).
   2. `#__framer-editorbar-container` — the "Edit Content" pill that
      Framer's editor bundle injects when the
      `__framer_force_showing_editorbar_since` localStorage flag is set.
      Hiding the container also hides its `#__framer-editorbar-label` child.
   Using stable Framer-canonical IDs/classes with `!important` keeps the
   rule resilient to republishes. */
.__framer-badge,
#__framer-editorbar-container,
#__framer-editorbar-label {
  display: none !important;
}
