/**
 * Fundraiser Breadcrumb — block styles.
 *
 * @package AmbassadorHub\Fundraisers\Blocks\FundraiserBreadcrumb
 */

/* ── Editor canvas preview ─────────────────────────────────────────────── */

.ambh-breadcrumb-wrap.ambh-block-preview {
	padding: 2rem;
	background: #f0f0f1;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-align: center;
}

/* ── Breadcrumb container ───────────────────────────────────────────────── */

.ambh-breadcrumb-wrap {
	margin-bottom: 0.5rem;
}

/* ── Ordered list ───────────────────────────────────────────────────────── */

.ambh-breadcrumb {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	font-size: var(--ambh-font-xs, 0.75rem);
	color: var(--ambh-text-muted, #646970);
}

/* ── Items ──────────────────────────────────────────────────────────────── */

.ambh-breadcrumb__item {
	display: inline-flex;
	align-items: center;
}

.ambh-breadcrumb__link {
	color: var(--ambh-text-muted, #646970);
	text-decoration: none;
	transition: color 0.1s;
}

.ambh-breadcrumb__link:hover,
.ambh-breadcrumb__link:focus {
	color: var(--ambh-text-color, #1e1e1e);
	text-decoration: underline;
}

.ambh-breadcrumb__current {
	color: var(--ambh-text-color, #1e1e1e);
	font-weight: 600;
}

.ambh-breadcrumb__sep {
	padding: 0 0.4rem;
	color: var(--ambh-text-muted, #646970);
	user-select: none;
}
