/* Breadcrumb for articles and category archives. */

.kbc { margin: 0 0 20px; }

.kbc-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.4;
    color: #6b7b8c;
}

.kbc-step { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.kbc-step a { color: #094e96; text-decoration: none; }
.kbc-step a:hover { text-decoration: underline; }
.kbc-step a:focus-visible { outline: 2px solid #094e96; outline-offset: 2px; border-radius: 4px; }

.kbc-sep { color: #b9c6d2; }

/* The trailing title can be long; let it truncate rather than push the row. */
.kbc-step [aria-current] {
    color: #5b6b7c;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 52ch;
}

@media (max-width: 600px) {
    .kbc-list { font-size: 13px; }
    .kbc-step [aria-current] { max-width: 24ch; }
}
