/* [agwp_breadcrumbs] – SEOPress-Breadcrumbs im AgenturWP-Stil
   Erster Eintrag wird zum Home-Icon (Text bleibt fuer Screenreader und Schema erhalten).
   Einstellungen in SEOPress: Trennzeichen "/", Uebersetzung fuer Homepage "Startseite". */

#top .agwp-breadcrumbs {
	margin: 0 0 22px;
	font: 500 .8125rem/1.4 var(--agwp-font-mono);
	color: var(--agwp-ink2);
}
#top .agwp-breadcrumbs :is(ol, ul) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
#top .agwp-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	background: none;
	border: 0;
	color: var(--agwp-ink2);
}
#top .agwp-breadcrumbs a {
	color: var(--agwp-ink2);
	text-decoration: none;
	transition: color .2s;
}
#top .agwp-breadcrumbs a:hover { color: var(--agwp-accink); }

/* Aktuelle Seite */
#top .agwp-breadcrumbs li:last-child,
#top .agwp-breadcrumbs [aria-current] {
	color: var(--agwp-ink);
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Home-Icon statt "Startseite" */
#top .agwp-breadcrumbs li:first-child a {
	position: relative;
	display: inline-flex;
	width: 16px;
	height: 16px;
	overflow: hidden;
	font-size: 0;
	line-height: 0;
	color: var(--agwp-ink2);
}
#top .agwp-breadcrumbs li:first-child a::before {
	content: "";
	width: 16px;
	height: 16px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5 12 3l9 7.5'/%3E%3Cpath d='M5 9.5V21h14V9.5'/%3E%3Cpath d='M10 21v-6h4v6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5 12 3l9 7.5'/%3E%3Cpath d='M5 9.5V21h14V9.5'/%3E%3Cpath d='M10 21v-6h4v6'/%3E%3C/svg%3E") center / contain no-repeat;
}
#top .agwp-breadcrumbs li:first-child a:hover { color: var(--agwp-accink); }
