How add custom link in blog post

I have create and undercolor (yellow) for link, in SETTING > THEME STYLE > LINK I make the change i want

Then i add this code using snipped because i want this undercolor setting is visible only in text (page and blog) but i can’t reach my goal in blog post (this is visible only in pages), any suggestion?

add_filter( 'bricks/link_css_selectors', function( $link_css_selectors ) {
    // Add/Extend default CSS link styles to .my-custom-element a
    //$link_css_selectors[] = '.my-custom-element a';
    
    // OR return new list of CSS link selectors - the link styles apply only to these selectors
    $link_css_selectors = ['.brxe-text a', 'a.brxe-text-link', '.brxe-text-basic a', 'a.brxe-text-basic-link',];
    return $link_css_selectors;
} );

Unfortunatelly the site show me the undercolor in list too. How fix this?

solved adding:

'.brxe-post-content a',

so the correct code is:

add_filter( 'bricks/link_css_selectors', function( $link_css_selectors ) {
    // Add/Extend default CSS link styles to .my-custom-element a
    //$link_css_selectors[] = '.my-custom-element a';
    
    // OR return new list of CSS link selectors - the link styles apply only to these selectors
    $link_css_selectors = ['.brxe-text a', '.brxe-post-content a', 'a.brxe-text-link', '.brxe-text-basic a', 'a.brxe-text-basic-link',];
    return $link_css_selectors;
} );