@use 'responsive';
@use 'colours';

a {
  font-weight: normal;
  color: colours.$colour-link;
  text-decoration: underline;

  &.small {
    font-size: 16px;
    @include responsive.not-desktop {
      font-size: 14px;
      line-height: 22px;
    }
  }

  nav & {
    font-weight: normal;
  }
}

