/* De Halm – widen page content so it matches the header/footer width.
   Scoped to the post content only, so the header/footer are untouched.
   The theme exposes the content width via a CSS variable; redefining it
   on the content wrapper cascades to all constrained blocks inside it. */
.wp-block-post-content {
    --wp--style--global--content-size: 1140px;
}

/* Keep long paragraphs comfortably readable while wider than the default. */
.wp-block-post-content > p,
.wp-block-post-content > .wp-block-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
