.breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
}

.breadcrumb .b-item {
    margin-right: 8px;
    position: relative;
}

.breadcrumb .b-item a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb .b-item a:hover {
    color: #005177;
}

.breadcrumb .b-item::after {
    content: "›";
    margin-left: 8px;
    color: #999;
}

.breadcrumb .b-item:last-child::after {
    content: "";
}

.breadcrumb .b-item:last-child a {
    color: inherit;
    pointer-events: none;
    cursor: default;
}