@mixin gradient-text($startColor, $endColor) {
	/* stylelint-disable */
	-webkit-background-clip: text;
	/* stylelint-enable */
	background-clip: text;
	background-color: $startColor;
	background-image: linear-gradient(90deg, $startColor, $endColor);
	color: transparent;
	-webkit-text-fill-color: transparent;
	line-height: 1.4; // required because of background clip, avoid "g" and "y" getting cut off
}
