/* BREADCRUB STYLING ############################################# */
.breadcrumb {
    font-family: sans-serif;
    font-size: 0.9rem;
    padding: 2em 2em 1em 2em;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5em;
    padding: 0;
    margin: 0;
}

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

.breadcrumb li + li::before {
    content: "›";
    margin: 0 0.5em;
    color: #999;
}

.breadcrumb a {
    text-decoration: none;
    color: #1f8fff;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: #333;
    font-weight: 600;
}
