/* Minimalist breadcrumbs — see templates/elements/Breadcrumbs.php.
 *
 * Design intent: barely-there navigation hint. Light grey, small type,
 * no padding/border/background. Only the hovered link gets a colour
 * change; everything else stays quiet so the breadcrumbs don't compete
 * with the actual page H1. */

.breadcrumbs {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #94a3b8;
}

.breadcrumbs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

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

.breadcrumbs-link {
    color: inherit;
    text-decoration: none;
    transition: color 100ms ease;
}

.breadcrumbs-link:hover {
    color: #1f2937;
    text-decoration: none;
}

.breadcrumbs-link:focus-visible {
    outline: 1px dotted #94a3b8;
    outline-offset: 2px;
    border-radius: 2px;
}

.breadcrumbs-sep {
    margin: 0 0.4rem;
    opacity: 0.45;
}

.breadcrumbs-item--current span {
    color: #475569;
}
