/* ============================================ */
/* BREADCRUMBS */
/* ============================================ */
.site-breadcrumbs {
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.site-breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.site-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.site-breadcrumbs li + li::before {
    content: "/";
    margin: 0 8px;
    color: #94a3b8;
}

.site-breadcrumbs a {
    color: var(--brand-primary);
    text-decoration: none;
}

.site-breadcrumbs a:hover {
    text-decoration: underline;
}

.site-breadcrumbs [aria-current="page"] {
    color: var(--text-dark);
    font-weight: 600;
}

/* Match subpage header behavior to homepage */
.subpage #masthead .home-page,
.blogpage #masthead .home-page,
.bloghome #masthead .home-page {
    display: block !important;
}

.subpage #masthead .default,
.blogpage #masthead .default,
.bloghome #masthead .default {
    display: none !important;
}

@media (max-width: 768px) {
    .site-breadcrumbs li {
        font-size: 12px;
    }

    .site-breadcrumbs li + li::before {
        margin: 0 6px;
    }
}

