// source --> https://www.alzheimers-brace.org/wp-content/themes/bb-theme-child/script.js?ver=1.2 

jQuery(document).ready(function() {
    jQuery('.fl-post p').each(function() {
        var p = jQuery(this);
        if(p.css('font-weight') > 400) {
            p.css('-webkit-text-stroke', '0.4px')
        }
    });
});