@charset "UTF-8";
/**
 * Animation styles for WordPress blocks
 * These will be applied without changing component structure
 */
[class*=has-animation-] {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
[class*=has-animation-].animation-visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.has-animation-fade-up {
  transform: translateY(30px);
}

.has-animation-fade-down {
  transform: translateY(-30px);
}

.has-animation-fade-left {
  transform: translateX(-30px);
}

.has-animation-fade-right {
  transform: translateX(30px);
}

.editor-styles-wrapper [class*=has-animation-] {
  position: relative;
  opacity: 1;
  transform: none;
}
.editor-styles-wrapper [class*=has-animation-]::before {
  content: "🔄";
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  font-size: 14px;
  padding: 2px 4px;
  border-radius: 3px;
  z-index: 10;
}

@media (prefers-reduced-motion: reduce) {
  [class*=has-animation-] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}/*# sourceMappingURL=block-animations.css.map */