a,
.link {
  color: returnColorCSSVar('brand-primary');
  cursor: pointer;
  transition: text-decoration $transition-duration--fast;
  @include link-color-map;
}

a {
  text-decoration: underline solid transparent;
  &:hover {
    text-decoration: underline solid currentColor;
  }
}

.link {
  text-decoration: underline solid currentColor;

  &:hover {
    text-decoration: underline solid transparent;
  }
}
