/**
 * Public page-level layout stabilization.
 *
 * Older Elementor sections marked as stretched receive an inline width only
 * after its frontend JavaScript starts. Establish the same full-viewport
 * geometry in the first render so the homepage hero never flashes boxed.
 */
body.home .elementor > .elementor-section.elementor-section-stretched,
body.home .elementor-section-wrap > .elementor-section.elementor-section-stretched {
	left: calc(50% - 50vw) !important;
	width: 100vw !important;
	max-width: 100vw !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	box-sizing: border-box;
}
