
/* Package / user layout pages (tighter offset under site header) */
.nav-breadcrumb {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
	font-family: "DM Sans", Inter, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
.nav-breadcrumb-item {
	display: inline-flex;
	align-items: center;
	color: #606060;
}
.nav-breadcrumb-item:not(:last-child)::after {
	content: ">";
	margin-left: 8px;
	color: #606060;
	font-weight: 400;
}
.nav-breadcrumb-item a {
	color: #FF5C00;
	text-decoration: none;
}
.nav-breadcrumb-item a:hover {
	text-decoration: underline;
	color: #FF5C00 !important;
}
.nav-breadcrumb-current {
	color: #0A0D12;
	font-weight: 600;
}
.active-dark-mode .nav-breadcrumb-item {
	color: rgba(255, 255, 255, 0.75);
}
.active-dark-mode .nav-breadcrumb-item:not(:last-child)::after {
	color: rgba(255, 255, 255, 0.5);
}
.active-dark-mode .nav-breadcrumb-item a {
	color: #c4a8ff;
}
.active-dark-mode .nav-breadcrumb-current {
	color: #fff;
}
@media (max-width: 377px){
	.nav-breadcrumb{
		font-size: 12px;
		gap: 4px;
	}
	.nav-breadcrumb-item:not(:last-child)::after{
		margin-left: 4px;
	}
}
