/* JJ Stone v3 — animation support only, no visual rules */

/* Selectors corrected 2026-07-09 to the rendered DOM — the originals
   (.jj-card, .topic-item, .field-post-card) matched zero elements on
   every page. */

/* Stagger batch: GPU layer promotion, prevents flash on entry.
   No pointer gate — mobile animates as of the 2026-07-09 retune. */
.entry-card,
.field-posts-section .post-card,
[data-stagger-item] {
  transform: translateZ(0);
}

/* Reduced motion: disable v3 animations (belt — the JS early-returns
   under prefers-reduced-motion as well) */
@media (prefers-reduced-motion: reduce) {
  .entry-card,
  .field-posts-section .post-card,
  [data-stagger-item] {
    transform: none !important;
    opacity: 1 !important;
  }
}
