.pointyLink {
	@include link--pointy();

	&--primary {
		@include link--pointy('primary');
	}

	&--secondary {
		// default is secondary :)
	}

	&--tertiary {
		@include link--pointy('tertiary');
	}

	&.link--plain {
		&:hover,
		&:focus {
			color: $text-color;
		}
	}
}