/**
 * Undo KIM demo app-shell on Croopie public pages.
 * kim.theme.css locks html/body scroll (position:fixed + overflow:hidden) for full-height admin-style layouts;
 * blog/pages use normal document flow — without this, the page cannot scroll.
 */
html[data-kim-stack="1"] {
	height: auto !important;
	overflow-x: hidden;
	overflow-y: auto !important;
}

html[data-kim-stack="1"] body {
	position: static !important;
	width: auto !important;
	top: auto !important;
	left: auto !important;
	height: auto !important;
	min-height: 100vh;
	overflow-x: hidden;
	overflow-y: visible !important;
}
