.dsg-toc {
	font-size: 0.95rem;
	position: relative;
}
.dsg-toc__title {
	font-weight: 700;
	margin-bottom: 0.75rem;
}
.dsg-toc__list {
	list-style: none !important;
	padding: 0 !important;
	line-height: 1.6em !important;
}
.dsg-toc__link {
	position: relative;
	display: inline-block;
	padding: 0.1rem;
	text-decoration: none;
	color: var(--dark-blue-10) !important;
	transition: color .2s ease;
}
.dsg-toc__level-3 > li {
	padding-left: 1rem;
}
.dsg-toc__link::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 4px;
	background: rgba(var(--medium-blue-rgb), 0.1);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .25s ease-out, background .25s ease-out;
	z-index: -1;
}
.dsg-toc__link.is-active {
	font-weight: 700;
}
.dsg-toc__link.is-active::before {
	transform: scaleX(1);
	background: rgba(var(--medium-blue-rgb), 0.1);
}
.dsg-toc__link:hover::before {
	transform: scaleX(1);
}