/* =============================================
   ORBES NODE — BREADCRUMB (base/breadcrumb.css)
   ============================================= */

.breadcrumb-bar {
    /* Reserves space for the fixed navbar.
       --navbar-h is computed in the inline script in header.php
       right after the navbar renders, so it always has the
       correct value before this element paints. */
    padding: calc(var(--navbar-h, 160px) + 16px) 0 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--muted);
}

.breadcrumb-bar a            { color: var(--muted); transition: color .15s; }
.breadcrumb-bar a:hover      { color: var(--cyan); }
.breadcrumb-bar .current     { color: var(--text); font-weight: 600; }
.breadcrumb-bar i            { font-size: .65rem; opacity: .6; }
