/* Small helpers on top of Tailwind */
html { scroll-behavior: smooth; }

/* Make WP editor content look like the design */
.shifty-prose h2 { margin-top: 2.5rem; }
.shifty-prose p, .shifty-prose li { color: rgb(75 85 99); }

/* Simple fade-in animation (replaces Framer Motion for WP output) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
