.running-text {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.running-text__inner {
  display: inline-block;
  padding: 14px 0;
  animation: marquee 20s linear infinite;
}

.running-text span {
  display: inline-block;
  margin-right: 60px;
  font-weight: 600;
  color: #111827;
  font-family: "Poppins", sans-serif;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
