/* ============================================
 * FILE: build/style.css
 * ============================================ */

 .wp-block-table-of-contents .active-heading {
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(138deg, #f2c993 6.61%, #d19c55 58.26%);
    color: #13191e;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
}

.wp-block-table-of-contents>ul {
    list-style: none;
    margin: 0;
    padding: unset;
}
.wp-block-table-of-contents>ul li{
	margin-top:0;
	margin-block-start:0;
	margin-bottom: 10px;
}
.wp-block-table-of-contents>ul li ul {
    /*border-left: 1px solid var(--wp--custom--border--1);*/
    list-style: none;
    padding-left: 15px !important;
	margin-bottom: 10px;
	margin-top: 5px;
}

/* Scroll spy active state styles */
.wp-block-table-of-contents .js-toc-dropdown-item {
	background: none;
	border: none;
	color: #13191e;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	text-align: left;
	width: 100%;
	transition: color 0.2s ease, text-decoration 0.2s ease;
}

.wp-block-table-of-contents .js-toc-dropdown-item:hover , .wp-block-table-of-contents .js-toc-dropdown-item.is-active {
	text-decoration: underline;
	font-weight: 600;
}
.wp-block-table-of-contents .js-toc-dropdown-item:focus{
	outline: none;
}

@media (min-width: 768px) {
	.wp-block-table-of-contents .toggle-icon {
		display: none;
	}
}

/* Sticky */
div.is-position-sticky:has(.wp-block-table-of-contents) {
	top: calc(100px + var(--wp-admin--admin-bar--position-offset, 0px));
	z-index: 1;
}