/* Prevent horizontal scrolling - using clip instead of hidden to preserve sticky positioning */
html, body {
	overflow-x: clip;
	max-width: 100vw;
}

/* Ensure padding is included in element widths */
*, *::before, *::after {
	box-sizing: border-box;
}