/* ============================================================
   Edufen Course Widgets – Breadcrumbs
   ============================================================ */

.ecw-breadcrumb-wrap {
	max-width: 100%;
}
.ecw-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ecw-breadcrumb-item {
	font-size: 14px;
	line-height: 1.4;
	color: #6b7280;
}
.ecw-breadcrumb-item a {
	color: #4f46e5;
	text-decoration: none;
}
.ecw-breadcrumb-item a:hover {
	color: #4338ca;
	text-decoration: underline;
}
.ecw-breadcrumb-item--current {
	color: #111827;
	font-weight: 600;
}
.ecw-breadcrumb-sep {
	font-size: 14px;
	color: #9ca3af;
	line-height: 1.4;
}
