/**
 * Table of Contents block styles
 * Matches blog single TOC appearance (components.css .toc-content / .toc-list)
 */

.toc-block.toc-content {
	background-color: #F1F5F8;
	border-radius: 24px;
	padding: 25px 30px;
	border: 1px solid #555555;
	position: sticky;
	top: 130px;
}

.toc-block .toc-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.toc-block .toc-list {
	list-style: number;
	padding: 25px 0 0 24px;
	display: none;
}

.toc-block.toc-content.active .toc-list {
	display: block;
}

.toc-block .toc-list a {
	font-size: 16px;
}

.toc-block .toc-list a:hover,
.toc-block .toc-list li:hover {
	color: #114870;
}
