﻿/* source: Animotion MCP / CDN keyframes.css v1.0.0
 * class: .animotion-blur-reveal
 * https://cdn.jsdelivr.net/gh/animotion-mcp/animotion-mcp.github.io@v1.0.0/css/keyframes.css
 * license: check Animotion repo; recipe recreated under rsp-am-* namespace
 */
.rsp-am-blur-reveal {
  animation: rsp-am-blur-reveal var(--rsp-am-duration, 0.6s) var(--rsp-am-ease, ease-out) both;
}
@media (prefers-reduced-motion: reduce) {
  .rsp-am-blur-reveal { animation: none; }
}
@keyframes rsp-am-blur-reveal {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
