/* Breadcrumb strip — Rajdhani uppercase, chevron separators, home icon.
   No container: just the text. Colours locked against theme bleed. */

.tsd.tsd-crumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	font-family: var(--tsd-font-d);
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: 12.5px;
	line-height: 1.4;
	background: none;
	border: none;
	padding: 0;
	margin: 0 0 16px;
}

.tsd .tsd-crumb__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--tsd-muted-2, #B6C0CC) !important;
	text-decoration: none !important;
	padding: 4px 2px;
	font-weight: 600;
	transition: color .15s ease;
}

.tsd a.tsd-crumb__item:hover {
	color: var(--tsd-green-600, #3a90ff) !important;
}

.tsd .tsd-crumb__current {
	color: #fff !important;
	font-weight: 700;
}

.tsd .tsd-crumb__sep {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	color: var(--tsd-muted-2, #B6C0CC);
	opacity: .55;
}
/* Chevron drawn with borders — no SVG, so the theme can't restyle it on load. */
.tsd .tsd-crumb__sep::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: -2px;
}
