.scroller {
  max-width: 98%;
  overflow: hidden;
  margin: auto;
  color: #2b3170;
  font-weight: bold;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.5
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list li {
  position: relative; 
  padding: 2rem;
  background: #efefef;
}

.tag-list li::after {
  content: '';
  position: absolute;
  top: 10%; 
  right: 0; 
  height: 80%;
  width: 1px;
  background-color: #2b3170; 
  opacity: 30%;
}

#fsEl_94392 {
  margin-bottom: 0;
}

#fsEl_68215 > div > div > div > div > article {
  padding-top: 0;
}

.scroller__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: solid 3px #2b3170;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    rgb(68, 67, 67) 5%,
    rgb(68, 67, 67) 95%,
    transparent
  );
  mask: linear-gradient(
    90deg,
    transparent,
    rgb(68, 67, 67) 5%,
    rgb(68, 67, 67) 95%,
    transparent
  );
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 38s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.scroller:hover {
  animation-play-state: paused; 
}



