/* breadcrumbs.css — хлебные крошки */

.tz-crumbs { margin: 0 0 12px; }
.tz-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .82rem;
}
.tz-crumbs li { display: flex; align-items: center; gap: 6px; }
.tz-crumbs li + li::before {
    content: '›';
    color: var(--t-text-faint, #9aa0a6);
    opacity: .7;
}
.tz-crumbs a {
    color: var(--t-text-muted, #6c757d);
    text-decoration: none;
    transition: color .15s;
}
.tz-crumbs a:hover { color: #0a58ca; text-decoration: underline; }
.tz-crumbs span[aria-current] {
    color: var(--t-text, #212529);
    font-weight: 600;
    /* длинное название не должно ломать строку */
    max-width: 60vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* на тёмном hero страницы релиза */
.unified-release-wrapper .tz-crumbs a { color: rgba(255,255,255,.6); }
.unified-release-wrapper .tz-crumbs a:hover { color: #ff9900; }
.unified-release-wrapper .tz-crumbs li + li::before { color: rgba(255,255,255,.35); }
.unified-release-wrapper .tz-crumbs span[aria-current] { color: rgba(255,255,255,.9); }

@media (max-width: 576px) {
    .tz-crumbs ol { font-size: .75rem; gap: 4px; }
    .tz-crumbs span[aria-current] { max-width: 45vw; }
}
