/* @font-face rules */
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
	font-weight: 600;
	font-display: swap;
}

/* Minimal reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Body typography */
body {
	font-family: var(--mk-font-body);
	color: var(--mk-ink);
	background: var(--mk-white);
	line-height: 1.6;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--mk-font-heading);
	font-weight: 700;
	line-height: 1.15;
	color: var(--mk-brand);
}

/* Images */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Container */
.mk-container {
	max-width: var(--mk-container);
	margin-inline: auto;
	padding-inline: var(--mk-space-4);
}

/* Section */
.mk-section {
	padding-block: var(--mk-space-20);
}

/* Screen reader only / visually hidden utility */
.mk-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
