/**
 * File: assets/css/global/reset.css
 * Description: Lightweight reset styles for consistent rendering.
 *
 * MAGIDA FOUNDATION PASS 1:
 * - Normalizes box sizing, media, form elements, and base spacing.
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	min-height: 100%;
	margin: 0;
}

img,
picture,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote {
	margin: 0;
}

table {
	border-collapse: collapse;
	width: 100%;
}
