/**
 * D2G Table of Contents Widget Styles
 * Scoped styles for the Table of Contents widget.
 */

.d2g-toc-card {
	background-color: #ffffff;
	border-radius: 12px;
	border: 1px solid #EADCC8;
	padding: 24px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.d2g-toc-accent-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background-color: #C89B5B;
	transition: background-color 0.3s ease;
}

.d2g-toc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #EADCC8;
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.d2g-toc-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 20px;
	color: #0B3D36;
	margin: 0;
	padding: 0;
	line-height: 1.3;
}

.d2g-toc-scroll {
	max-height: 50vh;
	overflow-y: auto;
	padding-right: 8px;
}

/* Custom scrollbar matching Desert To Global branding */
.d2g-toc-scroll::-webkit-scrollbar {
	width: 4px;
}

.d2g-toc-scroll::-webkit-scrollbar-track {
	background: #F8F7F4;
}

.d2g-toc-scroll::-webkit-scrollbar-thumb {
	background: #EADCC8;
	border-radius: 4px;
}

.d2g-toc-scroll::-webkit-scrollbar-thumb:hover {
	background: #C89B5B;
}

/* Firefox scrollbar support */
.d2g-toc-scroll {
	scrollbar-width: thin;
	scrollbar-color: #EADCC8 #F8F7F4;
}

.d2g-toc-list,
.d2g-toc-sublist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.d2g-toc-list > .d2g-toc-item + .d2g-toc-item {
	margin-top: 16px;
}

.d2g-toc-link {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #5F7F6E;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
	line-height: 1.4;
}

.d2g-toc-link:hover,
.d2g-toc-link:focus {
	color: #C89B5B;
	text-decoration: none;
}

.d2g-toc-link.d2g-active {
	color: #C89B5B;
	font-weight: 600;
}

/* Sub-items hierarchy (H3, H4) */
.d2g-toc-sublist {
	padding-left: 16px;
	margin-top: 8px;
	border-left: 2px solid #EADCC8;
	margin-left: 4px;
}

.d2g-toc-sublist .d2g-toc-item + .d2g-toc-item {
	margin-top: 8px;
}

.d2g-toc-sublist .d2g-toc-link {
	font-size: 12px;
}

/* Numbers list style */
.d2g-toc-list-numbers {
	list-style-type: decimal;
	padding-left: 20px;
}

.d2g-toc-list-bullets {
	list-style-type: disc;
	padding-left: 20px;
}
