/* Silo & Breadcrumbs — minimal layout reset only.
 *
 * Visual styling (font, color, weight, size) is intentionally left to your
 * theme so breadcrumbs inherit the surrounding design. Add your own look by
 * targeting the easy `.breadcrumbs` wrapper class, or the BEM hooks below:
 *
 *   .breadcrumbs                    the whole breadcrumb <nav>
 *   .sb-breadcrumb__link            each link
 *   .sb-breadcrumb__separator       the separator between items
 *   .sb-breadcrumb__item--current   the current page
 */

.sb-breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25em;
}

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

.sb-breadcrumb__separator {
	margin: 0 0.25em;
}
