:host a {
  font-family: Frutiger-Light, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  background: none;
  border: 0;
  color: #727272;
  cursor: pointer;
  outline: 0;
  text-decoration: underline;
  transition: color 500ms ease;
}
:host a:hover {
  color: #131313;
}
:host a:hover .ux-icon[name=arrow-small-right] {
  transform: translateX(5px);
}

:host([variant=primary]) a {
  color: var(--ux-color-primary);
  text-decoration: none;
}

:host([variant=current]) a {
  color: currentColor;
  text-decoration: underline;
}

:host([strong]) a {
  font-family: Frutiger-Bold, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
}

.ux-icon {
  margin: 0 0.3em;
  transition: transform 250ms;
}

.ux-icon__svg {
  fill: currentcolor;
}