:root {
	--ml-bg: #05050d;
	--ml-bg-soft: #090917;
	--ml-surface: #ffffff;
	--ml-text: #161622;
	--ml-text-soft: #5d6070;
	--ml-white: #ffffff;
	--ml-purple: #7a3cff;
	--ml-purple-soft: #9b6cff;
	--ml-cyan: #16b8ff;
	--ml-yellow: #ffe600;
	--ml-border: rgba(255, 255, 255, 0.12);
	--ml-container: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--ml-text);
	background: var(--ml-white);
	text-rendering: optimizeLegibility;
}
p {
	margin: 0 0 0.5em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Shibsted Grotesk", sans-serif;
	font-weight: 600;
	line-height: 1.2;
}
h1 { font-size: 70px; }
h2 { font-size: 52px; }
h3 { font-size: 36px; }
h4 { font-size: 25px; }
h5 { font-size: 20px; }

.ml-section-label {
	margin: 0 0 18px;
	color: var(--ml-purple-soft);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
	font-weight: 800;
}

.ml-heading-gray {
	color: #7e7e81;
}

.ml-heading {
	margin-top: 0;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
.ml-container { width: min(100% - 40px, var(--ml-container)); margin-inline: auto; }
.ml-content-narrow { max-width: 820px; }
.ml-section { padding: 96px 0; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.screen-reader-text:focus {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	background: #fff;
	color: #000;
	clip: auto;
}
.ml-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	background: var(--ml-yellow);
	color: #05050d;
	font-weight: 700;
	text-decoration: none;
}
.ml-post-list { display: grid; gap: 28px; }
.ml-post-card { padding: 28px; border: 1px solid #e7e7ee; border-radius: 20px; }
.ml-post-card__title { margin: 0 0 12px; }
.ml-entry-content { line-height: 1.3; }
.ml-layout-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; }
@media (max-width: 900px) { .ml-layout-sidebar { grid-template-columns: 1fr; } .ml-section { padding: 72px 0; } }
