/* width-presets.css — de breedte-instelling per blok (zijbalkpaneel "Breedte").
   De maat is een BREAKOUT: het blok rekent tegen de PAGINABREEDTE (100cqw; de
   body draagt container-type:inline-size uit de huisstijl, dus cqw sluit de
   scrollbalk uit) en centreert zichzelf. Zo groeit een verbreed blok ook
   voorbij een smallere container (bv. een formulier in een tekstkolom), hoe
   diep het genest zit, zonder dat de buurblokken verschuiven. */

body .is-w-wide {
	width: min(1440px, 100cqw);
	max-width: none;
	margin-inline: calc((100% - min(1440px, 100cqw)) / 2);
}

body .is-w-full {
	width: 100cqw;
	max-width: none;
	margin-inline: calc((100% - 100cqw) / 2);
}
