/* ==========================================================================
   Yoast Breadcrumbs (.sentio-yb)
   ==========================================================================
   Extracted from frontend.css during the Batch 8 mechanical extraction
   (2026-04-18). Behavior-preserving. NO JS handler.
   ========================================================================== */


.sentio-yb {
	width: 100%;
}

.sentio-yb--placeholder {
	padding: 20px;
	text-align: center;
	color: #94a3b8;
	background: #f8fafc;
	border: 2px dashed #e2e8f0;
	border-radius: 8px;
	font-size: 13px;
}

/* List */
.sentio-yb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

/* Item */
.sentio-yb__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 1.5;
}

/* Link */
.sentio-yb__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	transition: color 0.2s, background-color 0.2s;
}

.sentio-yb__link:hover {
	color: #6366f1;
}

/* ── Diff #3 — Chip / Pill Style ── */
.sentio-yb--chip .sentio-yb__link {
	background: #f1f5f9;
	padding: 4px 12px;
	border-radius: 6px;
}

.sentio-yb--chip .sentio-yb__link:hover {
	background: #e2e8f0;
}

.sentio-yb--chip .sentio-yb__current {
	padding: 4px 12px;
	border-radius: 6px;
}

/* ── Diff #1 — Separator ── */
.sentio-yb__sep {
	display: inline-flex;
	align-items: center;
	color: #94a3b8;
	font-size: 14px;
	opacity: 0.5;
	flex-shrink: 0;
	user-select: none;
}

.sentio-yb__sep--svg {
	line-height: 0;
}

.sentio-yb__sep svg {
	width: 1em;
	height: 1em;
}

/* ── Diff #2 — Home Icon ── */
.sentio-yb__home-icon {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
}

.sentio-yb__home-icon svg {
	width: 16px;
	height: 16px;
}

/* Screen reader only */
.sentio-yb .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── Diff #4 — Current Page Highlight ── */
.sentio-yb__current {
	font-weight: 600;
	color: #1e293b;
	position: relative;
}

/* Indicator: Underline */
.sentio-yb--current-underline .sentio-yb__current::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #6366f1;
	border-radius: 1px;
}

/* Indicator: Dot Before */
.sentio-yb--current-dot .sentio-yb__current::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: #6366f1;
	border-radius: 50%;
	margin-right: 6px;
	flex-shrink: 0;
}

/* Indicator: Left Bar */
.sentio-yb--current-bar .sentio-yb__current {
	padding-left: 10px;
}

.sentio-yb--current-bar .sentio-yb__current::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 70%;
	background-color: #6366f1;
	border-radius: 2px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.sentio-yb__list {
		gap: 6px;
	}

	.sentio-yb__item {
		gap: 6px;
	}
}
