
@mixin a-link( $text-color: #000000 ) {
  cursor: pointer;
  color: $text-color;
  font-weight: 600;
  text-decoration: inherit;
  text-transform: uppercase;

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