/**
 * 1805 SEO Pro — Public Styles
 * Breadcrumb display only; everything else is <head> meta (no visible UI).
 */

.seo1805-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	font-size: 14px;
	color: #666;
	padding: 8px 0;
}

.seo1805-bc-item a {
	color: inherit;
	text-decoration: none;
	transition: color .15s;
}

.seo1805-bc-item a:hover {
	color: #c0392b;
	text-decoration: underline;
}

.seo1805-bc-sep {
	color: #bbb;
	font-style: normal;
	user-select: none;
}

.seo1805-bc-current {
	color: #333;
	font-weight: 500;
}

/* Dark-mode awareness */
@media ( prefers-color-scheme: dark ) {
	.seo1805-breadcrumbs { color: #aaa; }
	.seo1805-bc-current  { color: #eee; }
	.seo1805-bc-sep      { color: #555; }
	.seo1805-bc-item a:hover { color: #e05a4b; }
}
