.pulsetcm-toc__header {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	gap: 10px;
	cursor: pointer;
	padding-bottom: 0.35rem;
	margin-bottom: 0.45rem;
	border-bottom: 1px solid currentColor;
	opacity: 0.92;
}

.pulsetcm-toc__header--static {
	cursor: default;
}

.pulsetcm-toc__title {
	display: inline-block;
	margin: 0;
	font-size: 1.65rem !important;
}

.pulsetcm-toc__toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.88em;
	font-weight: 600;
	cursor: pointer;
	opacity: 0.95;
	letter-spacing: 0.01em;
}

.pulsetcm-toc__toggle-label--show {
	display: none;
}

.pulsetcm-toc__toggle-state {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.pulsetcm-toc__header[aria-expanded="false"] .pulsetcm-toc__toggle-label--show {
	display: inline;
}

.pulsetcm-toc__header[aria-expanded="false"] .pulsetcm-toc__toggle-label--hide {
	display: none;
}

.pulsetcm-toc__panel {
	overflow: hidden;
	max-height: none;
	opacity: 1;
	transition: max-height 0.32s ease, opacity 0.22s ease;
}

.pulsetcm-toc__list {
	list-style: none;
	counter-reset: pulsetcm-toc-item;
	margin: 0;
	padding-left: 0;
}

.pulsetcm-toc__item {
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: 0.65rem;
	align-items: start;
	margin: 0.28rem 0;
}

.pulsetcm-toc__list--child {
	list-style: none;
	counter-reset: pulsetcm-toc-item;
	margin-top: 0.24rem;
	padding-left: 0;
}

.pulsetcm-toc__list--child .pulsetcm-toc__item {
	margin: 0.22rem 0;
}

.pulsetcm-toc__link {
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: 0.65rem;
	align-items: start;
	grid-column: 1 / -1;
	padding: 0.18rem 0;
	line-height: 1.45;
	font-weight: 700 !important;
	transition: color 0.18s ease;
}

.pulsetcm-toc__link::before {
	content: counters(pulsetcm-toc-item, ".") " ";
	counter-increment: pulsetcm-toc-item;
	font-weight: 400;
	opacity: 0.75;
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.pulsetcm-toc__item > .pulsetcm-toc__list--child {
	grid-column: 2;
}

.pulsetcm-toc__link:hover,
.pulsetcm-toc__link:focus-visible {
	color: #145ea8;
}
