/* ==========================================================================
   Privacy Policy — page-scoped fixes (loaded only on this page via functions.php)
   ==========================================================================

   The theme's global root padding is a fixed 72px gutter (theme.json), applied via
   --wp--style--root--padding-left/right. On narrow screens that leaves too little room
   for this plain-content page, clipping long single-word headings (e.g. "Confidentiality").

   Global styles are intentionally NOT changed. This overrides the root-padding custom
   properties for this page only: padding becomes fluid down to a 24px token floor (so it
   still matches the gutter on desktop), and long heading words are allowed to wrap rather
   than overflow their column. Depends on 'global-styles' so it wins the cascade.
   ========================================================================== */

body {
	--wp--style--root--padding-left: clamp(var(--wp--preset--spacing--6), 6vw, var(--wp--preset--spacing--gutter));
	--wp--style--root--padding-right: clamp(var(--wp--preset--spacing--6), 6vw, var(--wp--preset--spacing--gutter));
}

/* Safety net: never let a long single-word heading overflow (and get clipped) on very
   narrow viewports — break it instead. */
.entry-content .wp-block-heading {
	overflow-wrap: break-word;
}
