.scroller[data-astro-cid-j7pv25f6][data-animated='true'] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  }
  
  .scroller[data-astro-cid-j7pv25f6][data-animated='true'] .scroller__inner[data-astro-cid-j7pv25f6] {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
  }
  
  .scroller[data-astro-cid-j7pv25f6][data-direction='right'] {
    --_animation-direction: reverse;
  }
  
  .scroller[data-astro-cid-j7pv25f6][data-direction='left'] {
    --_animation-direction: forwards;
  }
  
  .scroller[data-astro-cid-j7pv25f6][data-speed='fast'] {
    --_animation-duration: 20s;
  }
  
  .scroller[data-astro-cid-j7pv25f6][data-speed='slow'] {
    --_animation-duration: 60s;
  }
  
  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }