/*
 * Hamo Breadcrumbs - Nav — trilha de navegação / breadcrumb hierárquico.
 * Valores visuais vêm dos controles do Elementor ({{WRAPPER}} vence por
 * especificidade); aqui só a estrutura + defaults neutros.
 */

.hamo-bc__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hamo-bc__item {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.hamo-bc__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
}

.hamo-bc__link:hover {
	text-decoration: none;
}

.hamo-bc__current {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
}

.hamo-bc__label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 40ch;
}

/* Ícone da Home (biblioteca ou SVG). */
.hamo-bc__icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.hamo-bc__icon svg {
	width: var(--hamo-bc-home-size, 1em);
	height: auto;
	fill: currentColor;
}

.hamo-bc__icon i {
	font-size: var(--hamo-bc-home-size, 1em);
}

/* Separador. */
.hamo-bc__sep {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	user-select: none;
}

.hamo-bc__sep svg {
	width: var(--hamo-bc-sep-size, 1em);
	height: auto;
	fill: currentColor;
}

.hamo-bc__ellipsis {
	pointer-events: none;
}

/* Templates de reconstrução da trilha nunca são exibidos. */
.hamo-bc template {
	display: none;
}
