.hover-lift {
	transition: transform 0.2s ease-in-out;
}

.hover-lift:hover {
	transform: translateY(-2px);
}

.link-underline {
	position: relative;
}

.link-underline::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 0;
	background-color: theme("colors.primary");
	transition: width 0.3s ease;
}

.link-underline:hover::after {
	width: 100%;
}