/* WordPress flow-layout block-gap reset.

   WP injects `:root :where(.is-layout-flow) > * { margin-block-start: 24px }`
   between every top-level block. The original design never uses that gap — each
   section controls its own spacing via its Webflow margins/padding.

   This file is enqueued so it loads AFTER WordPress's global styles but BEFORE the
   Webflow stylesheet (cch-webflow-shared depends on it). All three rules share the
   same (0,1,0) specificity, so source order decides:
     • WP's 24px (earlier)  -> loses to this reset            -> gap removed
     • this reset (0)        -> loses to Webflow section rules -> real margins kept
   Hence: NO `!important`. Adding it would clobber the section margins this exists to
   preserve (that was the old bug — the gallery's 5rem top/bottom margin vanished). */
.wp-block-post-content > *,
.wp-site-blocks > * {
  margin-block-start: 0;
  margin-block-end: 0;
}
