/* Our alert animations are functional (safety-critical), not decorative. */
@media (prefers-reduced-motion: reduce) {
	.alert-marker.threat-high {
		animation-duration: 1.5s !important;
		animation-iteration-count: infinite !important;
	}
}

@keyframes marker-pulse {
	0%,
	100% {
		box-shadow:
			0 0 10px var(--app-color-danger),
			0 0 20px var(--app-red-glow);
	}
	50% {
		box-shadow:
			0 0 20px var(--app-color-danger),
			0 0 40px var(--app-red-glow-strong);
	}
}
