/*
 * Dokterin Widgets - Table of Contents (Daftar Isi).
 */

.dps-toc {
	--dps-toc-accent: #1a75bb;
	--dps-toc-text: #3d3d3d;
	--dps-toc-title: #1f1f1f;

	margin: 0 0 28px;
	padding: 18px 22px 20px;
	background: #f8f9fb;
	border: 1px solid #d9dee6;
	border-radius: 8px;
	letter-spacing: 0;
}

.dps-toc a,
.dps-toc a:hover {
	text-decoration: none !important;
}

.dps-toc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.dps-toc .dps-toc-title {
	margin: 0;
	color: var( --dps-toc-title );
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.dps-toc .dps-toc-toggle {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
	margin-left: auto;
	padding: 8px 8px 8px 10px;
	background: #fff;
	border: 1px solid #c9cfd8;
	border-radius: 8px;
	color: #6b7280;
	cursor: pointer;
	line-height: 0;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.dps-toc .dps-toc-toggle:hover,
.dps-toc .dps-toc-toggle:focus-visible {
	border-color: var( --dps-toc-accent );
	color: var( --dps-toc-accent );
}

.dps-toc-chevron {
	transition: transform 0.2s ease;
}

.dps-toc.is-collapsed .dps-toc-chevron {
	transform: rotate( -90deg );
}

.dps-toc-body {
	margin-top: 10px;
}

.dps-toc-body[hidden] {
	display: none;
}

.dps-toc .dps-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dps-toc .dps-toc-list .dps-toc-list {
	margin: 2px 0 4px;
	padding-left: 34px;
}

.dps-toc .dps-toc-item {
	margin: 0;
	padding: 0;
	font-size: 17px;
	line-height: 1.55;
}

.dps-toc .dps-toc-list .dps-toc-list .dps-toc-item {
	font-size: 16px;
}

.dps-toc .dps-toc-item > a {
	display: inline-block;
	padding: 3px 0;
	color: var( --dps-toc-text );
	transition: color 0.2s ease;
}

.dps-toc .dps-toc-item > a:hover,
.dps-toc .dps-toc-item > a.is-active {
	color: var( --dps-toc-accent );
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

/* Penomoran 1. / 1.1. / 1.1.1. */
.dps-toc--numbered .dps-toc-list {
	counter-reset: dps-toc;
}

.dps-toc--numbered .dps-toc-item {
	counter-increment: dps-toc;
}

.dps-toc--numbered .dps-toc-item > a::before {
	content: counters( dps-toc, "." ) ". ";
}

/* Editor Elementor: pengganti saat halaman tidak punya heading. */
.dps-toc--placeholder p:last-child {
	margin: 8px 0 0;
	color: #6b7280;
	font-size: 14px;
}

/* Heading tujuan tidak tertutup header sticky saat diklik dari daftar isi. */
.dokterin-single-content :is( h2, h3, h4, h5, h6 )[id],
.entry-content :is( h2, h3, h4, h5, h6 )[id],
.elementor-widget-theme-post-content :is( h2, h3, h4, h5, h6 )[id] {
	scroll-margin-top: 130px;
}

@media ( max-width: 767px ) {

	.dps-toc {
		padding: 14px 16px 16px;
	}

	.dps-toc .dps-toc-title {
		font-size: 20px;
	}

	.dps-toc .dps-toc-item {
		font-size: 15px;
	}

	.dps-toc .dps-toc-list .dps-toc-item {
		font-size: 15px;
	}

	.dps-toc .dps-toc-list .dps-toc-list {
		padding-left: 22px;
	}
}
