/*
 * FULFIT — base styles.
 * Design tokens (colors, font families, sizes, layout widths) live in theme.json
 * and are exposed as CSS custom properties by WordPress — do not duplicate them here.
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

img,
svg,
video,
picture {
	max-width: 100%;
	height: auto;
	display: block;
}
