/* ── Blog Categories Sidebar Widget ───────────────────── */

.bs-bcat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bs-bcat-item {
    margin: 0;
}

.bs-bcat-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.15s ease;
    border-bottom: 1px solid #f0f0f0;
}

.bs-bcat-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #888;
}

.bs-bcat-icon svg {
    width: 16px;
    height: 16px;
}

.bs-bcat-item--active .bs-bcat-icon {
    color: #1DB0E1;
}

.bs-bcat-name {
    flex: 1;
    min-width: 0;
}

.bs-bcat-item:last-child .bs-bcat-link {
    border-bottom: none;
}

.bs-bcat-link:hover {
    color: #1DB0E1;
}

.bs-bcat-item--active .bs-bcat-link {
    color: #1DB0E1;
    font-weight: 600;
}

.bs-bcat-item--child .bs-bcat-link {
    padding-left: 16px;
    font-size: 13px;
}

.bs-bcat-count {
    font-size: 12px;
    color: #999;
    background: #f5f5f5;
    padding: 1px 8px;
    border-radius: 10px;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.bs-bcat-item--active .bs-bcat-count {
    background: #e8f7fc;
    color: #1DB0E1;
}
