/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
    padding: 16px 0;

    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}


/* ==========================================================================
   Breadcrumb List
   ========================================================================== */

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;

    font-size: 0.9rem;
    line-height: 1.5;
}


/* ==========================================================================
   Breadcrumb Item
   ========================================================================== */

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;

    color: var(--color-text-muted);
}


/* ==========================================================================
   Separator
   ========================================================================== */

.breadcrumb-item:not(:last-child)::after {
    content: "›";

    color: var(--color-text-muted);
    opacity: 0.55;
}


/* ==========================================================================
   Links
   ========================================================================== */

.breadcrumb-item a {
    color: var(--color-text-muted);
    text-decoration: none;

    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-link);
}


/* ==========================================================================
   Current Item
   ========================================================================== */

.breadcrumb-item[aria-current="page"] {
    color: var(--color-text);
    font-weight: 500;
}