:root {
	color-scheme: light;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	color: #1d2327;
	background: #f6f7f7;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
}

a {
	color: #135e96;
}

.layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	min-height: 100vh;
}

.sidebar {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: auto;
	padding: 28px 22px;
	background: #17212b;
	color: #fff;
}

.sidebar h1 {
	margin: 0 0 4px;
	font-size: 22px;
	letter-spacing: .02em;
}

.sidebar p {
	margin: 0 0 20px;
	color: #c3cbd3;
}

.sidebar a {
	display: block;
	padding: 6px 0;
	color: #eef2f6;
	text-decoration: none;
}

.sidebar a:hover,
.sidebar a:focus {
	text-decoration: underline;
}

.content {
	width: min(1040px, 100%);
	padding: 48px clamp(24px, 5vw, 72px) 80px;
}

.hero,
.section {
	margin-bottom: 28px;
	padding: 30px;
	border: 1px solid #dcdcde;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.hero h2 {
	margin: 0 0 8px;
	font-size: clamp(30px, 5vw, 48px);
	line-height: 1.15;
}

.section h2 {
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #e2e4e7;
}

.section h3 {
	margin-top: 28px;
}

.badge {
	display: inline-block;
	margin-right: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #e8f1f8;
	font-size: 13px;
	font-weight: 700;
}

.note,
.warning {
	margin: 18px 0;
	padding: 14px 16px;
	border-left: 4px solid #2271b1;
	background: #f0f6fc;
}

.warning {
	border-left-color: #dba617;
	background: #fcf0c8;
}

code,
pre {
	font-family: Consolas, Monaco, "Liberation Mono", monospace;
}

code {
	padding: 2px 5px;
	border-radius: 4px;
	background: #f0f0f1;
}

pre {
	overflow: auto;
	padding: 16px;
	border-radius: 6px;
	background: #1d2327;
	color: #f6f7f7;
	white-space: pre-wrap;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 10px 12px;
	border: 1px solid #dcdcde;
	text-align: left;
	vertical-align: top;
}

th {
	background: #f6f7f7;
}

.checklist li {
	margin-bottom: 7px;
}

@media (max-width: 860px) {
	.layout {
		grid-template-columns: 1fr;
	}

	.sidebar {
		position: static;
		height: auto;
	}
}

.docs-product-link{display:block;padding:10px 20px;background:#0a2558;color:#fff;text-decoration:none;font-weight:700;text-align:center}.docs-product-link:hover,.docs-product-link:focus{background:#1267e8}.sidebar{background:linear-gradient(180deg,#071a3d,#0a285d)}.hero{border-radius:18px}.section{border-radius:16px}.content{margin-inline:auto}.badge{background:#eaf3ff;color:#164f9b}
