html {
  scroll-padding-top: calc(var(--site-header-height, 88px) + 24px);
}

[data-site-motion-rule] {
  position: relative;
}

[data-site-motion-rule]::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 14px;
  background: #e6001a;
  transform: scaleX(var(--site-motion-rule-scale, 1));
  transform-origin: left center;
}

@media (prefers-reduced-motion: reduce) {
  [data-site-motion-rule]::after { transform: none !important; }
}
