/**
 * HrefSEO — public breadcrumbs styling.
 * Minimal by default; override via your theme or Elementor controls.
 */

.oseo-breadcrumbs {
	margin: 8px 0 16px;
	font-size: 14px;
}

.oseo-bc-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.oseo-bc-item a {
	color: #6b7280;
	text-decoration: none;
	transition: color .15s ease;
}
.oseo-bc-item a:hover,
.oseo-bc-item a:focus {
	color: #0e9f6e;
	text-decoration: underline;
}

.oseo-bc-item.is-current span {
	color: #111827;
	font-weight: 600;
}

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