Change A.link Css For Product Details & User Created Pages

I am trying to change the CSS for the a.link... only the text that appears in:

  • User create static pages
  • product description/features/reviews (any tab on the product detail page)

I want this CSS applied to only those links:

a.link {
text-decoration: none;
border-bottom: 1px solid #d5d5d5;
color: #4169e1;
}

I tried adding the following to the Custom CSS in the Theme Editor and I don't even see that CSS being loaded.

a.link.content-description {
text-decoration: none;
border-bottom: 1px solid #d5d5d5;
color: #4169e1;
}

Please try

.ty-product-block .ty-tabs__content a, .ty-product-bigpicture .ty-tabs__content a {
    text-decoration: none;
    border-bottom: 1px solid #d5d5d5;
    color: #4169e1;
}

(!) Not tested