.vtk-tmw,
.vtk-tmw * {
  box-sizing: border-box;
}

.vtk-tmw {
  width: 100%;
  min-height: 151px;
  padding: 34px 0;
  background: #1d2366;
  overflow: hidden;
  --vtk-tmw-speed: 20s;
}

.vtk-tmw__viewport {
  width: 100%;
  overflow: hidden;
}

.vtk-tmw__track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation-name: vtk-tmw-scroll-left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--vtk-tmw-speed);
  transform: translate3d(0,0,0);
}

.vtk-tmw[data-direction="right"] .vtk-tmw__track {
  animation-name: vtk-tmw-scroll-right;
}

.vtk-tmw[data-auto-loop="no"] .vtk-tmw__track {
  animation-play-state: paused;
}

.vtk-tmw[data-pause-hover="yes"]:hover .vtk-tmw__track {
  animation-play-state: paused;
}

.vtk-tmw__item-text,
.vtk-tmw__separator {
  margin: 0;
  flex: 0 0 auto;
  line-height: 1;
}

.vtk-tmw__item-text {
  color: #e3e6e9;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.vtk-tmw__separator {
  color: #e3e6e9;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1;
  transform: translateY(-2px);
}

@keyframes vtk-tmw-scroll-left {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@keyframes vtk-tmw-scroll-right {
  from { transform: translate3d(-50%,0,0); }
  to { transform: translate3d(0,0,0); }
}

@media (max-width: 1024px) {
  .vtk-tmw {
    min-height: 120px;
    padding: 24px 0;
  }
}

@media (max-width: 767px) {
  .vtk-tmw {
    min-height: 88px;
    padding: 18px 0;
  }

  .vtk-tmw__track {
    gap: 24px;
  }
}
