@keyframes lr-heading-gradient-shift {
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}

.entry-title,
.entry-title a,
.page-title,
h1.entry-title {
	background: linear-gradient(90deg, #E8A0B4, #F5EDE9, #C9A66B, #E8A0B4);
	background-size: 300% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: lr-heading-gradient-shift 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.entry-title,
	.entry-title a,
	.page-title,
	h1.entry-title {
		animation: none;
		background: none;
		-webkit-text-fill-color: currentColor;
		color: #E8A0B4;
	}
}
