/* ── CHC Breadcrumb – Cleveland Health Center ── */

.chc-bc {
    font-family: inherit;
    font-size: 0.85rem;
    padding: 10px 0 18px;
    margin: 0;
}

.chc-bc ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.chc-bc__item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #555;
    line-height: 1.4;
}

.chc-bc__item a {
    color: #1781b3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.chc-bc__item a:hover,
.chc-bc__item a:focus {
    color: #2087c4;
    text-decoration: underline;
    outline: none;
}

.chc-bc__sep {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1;
    user-select: none;
    margin: 0 2px;
}

.chc-bc__current {
    color: #333;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 600px) {
    .chc-bc {
        font-size: 0.8rem;
    }
}
