@layer utilities {
  .link {
    @apply text-primary-light cursor-pointer;

    &:hover {
      @apply underline;
    }

    &-invert {
      @apply text-grey-50 underline;
    }

    &-secondary {
      @apply text-grey-600 underline;

      &-invert {
        @apply text-grey-300 underline;
      }
    }
  }
}