/**
 * Table of Contents
 */

.toc-container {
	margin: 0 0 2rem;
	padding: 1rem 1.25rem;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #f6f7f7;
	display: inline-block;
}

.toc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.toc-title {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.toc-toggle {
	cursor: pointer;
	font-size: .875rem;
	font-weight: 500;
	user-select: none;
}

.toc-list {
	margin: 0;
	padding-left: 1.5rem;
	overflow: hidden;
	max-height: 3000px;
	width: auto;
	opacity: 1;
	transition:
		max-height .35s ease,
		opacity .25s ease;
}

.toc-list.is-collapsed {
	max-height: 0;
	opacity: 0;
	width: 0;
	padding: 0;
	margin: 0;
}

.toc-list li {
	margin: .4rem 0;
}

.toc-list ul,
.toc-list ol {
	margin-top: .35rem;
	padding-left: 1.5rem;
}

.toc-list a {
	text-decoration: none;
}

.toc-list a:hover {
	text-decoration: underline;
}