.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    font-size: 14px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    color: #030035;
    margin: 0 8px;
    font-weight: bold;
}

.hero:not(:first-child) .breadcrumbs {
    display: none;
}

.breadcrumbs li a {
    color: #030035;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.breadcrumbs li a:hover {
    text-decoration: underline;
}

.breadcrumbs li.active {
    color: #ed4b00;
    font-weight: bold;
    cursor: default;
}

.breadcrumbs li.disabled {
    color: #666;
    cursor: default;
}
