/* ============================================================
   Breadcrumb Widget
   ============================================================ */

.bc-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 15px;
	line-height: 1.4;
}

.bc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #1f2937;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.bc-link:hover {
	color: #24469b;
}

.bc-home-icon {
	display: inline-flex;
	align-items: center;
	font-size: 18px;
	color: #24469b;
}

.bc-home-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	display: block;
}

.bc-sep {
	color: #9ca3af;
	user-select: none;
}

.bc-current {
	color: #6b7280;
	font-weight: 400;
}
