.bo-breadcrumb-shell {
    padding-block: var(--bo-space-3, 12px);
}

.bo-breadcrumb {
    margin: 0;
    color: var(--bo-text-muted, #6c757d);
    font-size: 0.875rem;
}

.bo-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--bo-space-2, 8px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.bo-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.bo-breadcrumb__item + .bo-breadcrumb__item::before {
    margin-inline-end: var(--bo-space-2, 8px);
    color: var(--bo-border-color, #ced4da);
    content: "/";
}

.bo-breadcrumb__link {
    color: inherit;
    text-decoration: none;
}

.bo-breadcrumb__link:hover,
.bo-breadcrumb__link:focus-visible {
    color: var(--bo-link-color, currentColor);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.bo-breadcrumb__current {
    overflow: hidden;
    color: var(--bo-text-color, inherit);
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}
