.docs {
	display: grid;
	grid-template-columns: 314px 1fr;
	gap: 24px;
	margin: 32px 0;
}

.docs-nav__btn {
	display: none;
	height: 48px;
	width: 100%;
	text-align: left;
	padding: 12px 16px;
	background-color: transparent;
	border: solid 1px var(--border-basic);
	border-radius: 8px;
	gap: 12px;
	justify-content: space-between;
}

.docs-nav__btn p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.docs-nav__btn span {
	flex-shrink: 0;
	display: block;
	width: 24px;
	height: 24px;
	background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%238B8C94" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.docs-nav__list {
	list-style: none;
	padding: 0 12px 0;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	position: sticky;
	top: 102px;
}

.docs-nav__item-btn {
	background-color: transparent;
	border-color: transparent;
	padding: 8px;
	width: 100%;
	text-align: left;
}

.docs-nav__item-btn.active {
	color: var(--text-accent);
}

.docs-nav__item-title {
	display: none;
	justify-content: space-between;
	margin-bottom: 6px;
}

.docs-nav__item-title p {
	font-size: 20px;
}

.docs-nav__list-cross {
	display: block;
	width: 24px;
	height: 24px;
	background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18M6 6L18 18" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

@media (max-width: 1024px) {
	.docs {
		grid-template-columns: 1fr;
		margin-top: 96px;
	}
	.docs-nav__btn {
		display: flex;
	}

	.docs-nav {
		position: fixed;
		top: 56px;
		left: 0;
		background-color: var(--bg-basic);
		width: 100%;
		padding: 12px 16px;
		z-index: 1;
	}

	.docs-nav__list {
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		bottom: 0;
		background-color: var(--bg-basic);
		padding: 16px;
		border-top-left-radius: 12px;
		border-top-right-radius: 12px;
		gap: 6px;
	}

	.docs-nav__item-btn {
		padding: 8px 0;
	}

	.docs-nav.active .docs-nav__list {
		display: block;
		z-index: 27;
	}

	.docs-nav.active::after {
		content: "";
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: 100dvh;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 3;
	}

	.docs-nav__item-title {
		display: flex;
	}
}

.docs-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: justify;
}

.docs-content h1 {
	font-family: Lora;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.1em;
}

.docs-content h2 {
	font-family: Lora;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.1em;
	/* margin-bottom: 10px; */
}

.docs-content h3 {
	font-family: Montserrat;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.375em;
	letter-spacing: -3%;
	text-transform: uppercase;
}

.docs-content p + h2,
.docs-content ul + h2,
.docs-content h3 + h2,
.docs-content h1 + h2 {
	margin-top: 30px;
}

.docs-content p + h3,
.docs-content ul + h3,
.docs-content h2 + h3 {
	margin-top: 14px;
}

.docs-content ul {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.docs-content ol {
	padding-left: 25px;
}