/* ── Breadcrumb ──────────────────────────────────────────────────────────── */

.keto-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: 0;
}

@media (max-width: 768px) {
    .keto-breadcrumb {
        gap: 4px;
    }

    .keto-breadcrumb__current,
    .keto-breadcrumb__sep:has(+ .keto-breadcrumb__current) {
        display: none;
    }
}

.keto-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.3px;
    white-space: nowrap;
    color: var(--e-global-color-accent);
}

.keto-breadcrumb__item a {
    color: inherit !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

.keto-breadcrumb__item a:hover {
    text-decoration: underline !important;
}

.keto-breadcrumb__current {
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.3px;
    color: var(--e-global-color-accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex-shrink: 1;
}

.keto-breadcrumb__sep {
    display: flex;
    align-items: center;
    padding-top: 1px;
    color: var(--e-global-color-accent);
    flex-shrink: 0;
}
