/* Shared breadcrumb — default for dark pages (redirects hub, bulk tool); .article-wrapper overrides for light guides */
.article-breadcrumb {
    font-size: 0.8125rem;
    line-height: 1.45;
    margin-bottom: 1.75rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.55);
}

.article-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem;
    row-gap: 0.35rem;
}

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

.article-breadcrumb li + li::before {
    content: "/";
    color: rgba(255, 255, 255, 0.28);
    font-weight: 500;
    margin: 0 0.5rem 0 0.35rem;
    user-select: none;
    pointer-events: none;
}

.article-breadcrumb a {
    color: #39FF12;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    padding: 0.15rem 0.25rem;
    margin: -0.15rem -0.25rem;
    transition: color 0.15s ease, filter 0.15s ease;
}

.article-breadcrumb a:hover {
    color: #5dff3a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-breadcrumb a:focus-visible {
    outline: 2px solid #39FF12;
    outline-offset: 2px;
}

.article-breadcrumb li:last-child span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: 0.15rem 0.25rem;
}

/* Long-form articles on white background — match .article-header h1 / .article-content h2 (#001327) */
.article-wrapper .article-breadcrumb {
    color: #64748b;
}

.article-wrapper .article-breadcrumb li + li::before {
    color: #94a3b8;
}

.article-wrapper .article-breadcrumb a {
    color: #001327;
}

.article-wrapper .article-breadcrumb a:hover {
    color: #001327;
    text-decoration: underline;
    text-underline-offset: 2px;
    filter: none;
}

.article-wrapper .article-breadcrumb a:focus-visible {
    outline: 2px solid #001327;
    outline-offset: 2px;
}

.article-wrapper .article-breadcrumb li:last-child span {
    color: #001327;
}
