.susu_breadcrumbs {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.3rem;
    padding: 12px 0;
    margin-bottom: 20px;
	margin-top: 10px;
    line-height: 1.4;
}

.susu_breadcrumbs a {
    color: var(--color-main-4);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 0 5px;
}

.susu_breadcrumbs a:hover {
    color: #e74c3c;
}

.kb_sep {
    color: #999;
    margin: 0 5px;
    font-weight: 300;
}

.kb_title {
    color: #333;
    font-weight: 500;
    padding-left: 5px;
}

.kb_sep {
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
    color: transparent;
    font-size: 0;
}

.kb_sep:before {
    content: '›';
    color: #999;
    font-size: 16px;
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 768px) {
    .susu_breadcrumbs {
        font-size: 12px;
        padding: 8px 0;
        /* white-space: nowrap; */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .susu_breadcrumbs::-webkit-scrollbar {
        display: none;
    }
}