/**
 * DSI Breadcrumbs
 * wp-content/themes/hello-elementor-child/css/dsi-breadcrumbs.css
 *
 * Structural only. Colors, typography, gap, alignment, separator size and
 * opacity all come from the Elementor Style tab, so nothing here should
 * fight those controls.
 */

 .dsi-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dsi-breadcrumbs__list > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dsi-breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.dsi-breadcrumbs__link {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.dsi-breadcrumbs__link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
	border-radius: 2px;
}

.dsi-breadcrumbs__separator {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	opacity: 0.6;
	user-select: none;
}

.dsi-breadcrumbs__separator svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Stop a long post title from wrapping awkwardly on phones. */
@media (max-width: 767px) {
	.dsi-breadcrumbs__item--current .dsi-breadcrumbs__current {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}