/* Mobile / tablet (<1024px): breadcrumb oculto; desktop ≥1024px abaixo. */
@media (max-width: 1023px) {
	.lubmix-breadcrumb-wrapper {
		display: none !important;
	}
}

.lubmix-breadcrumb-wrapper {
	padding: 16px 0;
	background: #fff;
}

@media (min-width: 1024px) {
	#breadcrumbs {
		font-size: 12px;
	}
}

#breadcrumbs {
	font-weight: 400;
	line-height: 1.4;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	color: #002d56;
	list-style: none;
	margin: 0;
	padding: 0;
}

#breadcrumbs a {
	color: #747474;
	text-decoration: none;
	transition: color 0.2s ease;
}

#breadcrumbs a.lubmix-breadcrumb-home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

#breadcrumbs a:hover {
	color: var(--lubmix-secondary);
	text-decoration: underline;
}

#breadcrumbs span:not(:first-child) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	color: #002d56;
	margin-inline: 5px;
}

#breadcrumbs span:not(:first-child):is(:first-child) {
	margin-right: 5px;
}

#breadcrumbs .lubmix-breadcrumb-home-icon {
	display: block;
	width: 18px;
	height: 18px;
	position: relative;
	top: 1px;
	flex-shrink: 0;
}

#breadcrumbs .breadcrumb_last {
	font-weight: 700;
	color: var(--lubmix-text);
	margin-left: 6px;
	text-transform: uppercase;
}

