.auto-toc {
	padding: 16px;
	border-radius: 12px;
	background: #f7f7f9;
}

.auto-toc__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	margin: 0;
	font-weight: 600;
}
.auto-toc__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.auto-toc__toggle svg {
	transform: scale(0.6);
	transition: transform 0.25s ease;
}

.auto-toc._open .auto-toc__toggle svg {
	transform: rotate(180deg) scale(0.6);
}

/* контент */
.auto-toc__content {
	display: none;
	padding-top: 16px;
}

.auto-toc._open .auto-toc__content {
	display: block;
}
.auto-toc__content ul {
	list-style: none;
	padding: 0;
	margin: 0;

	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 20px;
}
.auto-toc__content li a {
	display: block;
	padding: 6px 8px;
	border-radius: 8px;

	text-decoration: none !important;
	color: #2b2b2b;

	transition: background 0.2s ease, color 0.2s ease;
}

.auto-toc__content li a:hover {
	background: #e9e9ee;
	color: #000;
}