/*  =table of contents, =toc */
.block-toc {
	background: var(--wp--preset--color--denary);
	overflow: hidden;
	margin-top: var(--wp--custom--layout--block-gap);
}

.block-toc summary {
	cursor: pointer;
	display: flex;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 800;
	padding: 10px;
	justify-content: flex-start;
	align-items: center;
	list-style-type: none;
	text-transform: uppercase;
}

.block-toc summary::-webkit-details-marker {
	display: none;
}

.block-toc summary svg {
	fill: var(--wp--preset--color--septenary);
	float: right;
}

.block-toc[open] summary svg {
	transform: rotate(180deg);
}

.block-toc summary + ol {
  padding: 0px 20px 20px 20px;
}

.block-toc ol {
	list-style-type: none;
	font-weight: 700;
	font-size: var(--wp--preset--font-size--small);
	margin: 0;
	padding: 0;
}

.block-toc > ol li::before,
.entry-content .block-toc > ol li::before {
	display: none
}
.block-toc > ol li:not(:last-child) {
	padding-bottom: 16px;
}

.block-toc ol li:last-child {
	padding-bottom: 0;
}

.block-toc ol ol {
	padding-bottom: 16px;
}

.block-toc ol ol:last-child {
	padding-bottom: 0;
}

.block-toc li a {
	font-weight: 400;
}

.block-toc li a:hover {
}
