/*
 * Static-site overrides for the Astro replica of instacobro.com.
 * The original theme (Beaver Builder) hides animated elements with
 * `.fl-animation { opacity: 0 }` and reveals them via JavaScript on scroll.
 * Since this is a script-free static build, force them visible so all content
 * renders (and stays crawlable) without JS.
 */
.fl-animation {
  opacity: 1 !important;
  transform: none !important;
}

/* Neutralize any remaining JS-reveal hooks that hide content at rest. */
.fl-node-content [data-animation] {
  opacity: 1 !important;
}
