A fix for J.K. for PageLines DMS third-party Single Bits section's link color inherit
// Fix .section-elsue-single-bits a { color: inherit; } making links the same color as regular text
#site .section-elsue-single-bits a {
color: #1C5E91; // or the LESS Variable @pl-link if that's the same
&:hover {
color: #40BBBF; // could use another LESS variable like @linkColorHover
}
&:visited {
color: #647875; // could use LESS variable if set -- or even something like darken( @pl-link, 10% );
}
}