.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;
	padding: 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 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.auto-toc__content a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
	line-height: 1.4;
	padding: 6px 8px;
	border-radius: 6px;
	display: block;
	transition: background 0.2s ease, color 0.2s ease;
}

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