/* Hand-written replacements for the Webflow interaction engine.
   Each block notes the Webflow interaction it supersedes so the two can be
   compared while js/webflow.js is still loaded. */

/* Ledger row hover — replaces i-b4e685a9 (mouseenter) and i-0aeed22c
   (mouseleave), which tweened .row-cta by 16px over 0.3s. Webflow drove this
   from JS; as a :hover rule it needs none. The duration and easing match the
   padding transition already on .ledger-row so the two move together. */
.ledger-row .row-cta {
  transition: transform .3s ease-in-out;
}

.ledger-row:hover .row-cta,
.ledger-row:focus-visible .row-cta {
  transform: translateX(-16px);
}

@media (prefers-reduced-motion: reduce) {
  .ledger-row .row-cta {
    transition: none;
  }
}
