.common-breadcrumbs {
	color: var(--gray-light);
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	overflow-x: auto;
}

.common-breadcrumbs span {
	white-space: nowrap;
	max-width: 350px;
	overflow: hidden;
	text-overflow: ellipsis;
	flex-shrink: 0;
}

.common-breadcrumbs-link {
	text-decoration: none;
	transition: color 0.2s ease-in-out;
	white-space: nowrap;
}

.common-breadcrumbs-link:hover {
	color: var(--gray-dark);
}

.common-breadcrumbs-divider {
	color: var(--gray-light);
}

.common-breadcrumbs {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.common-breadcrumbs::-webkit-scrollbar {
	display: none;
}