.tlm-wrap {
  width: 100%;
  overflow: hidden;
}

.tlm-row {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.tlm-row.tlm-dragging {
  cursor: grabbing;
}
.tlm-row + .tlm-row {
  margin-top: 40px;
}

.tlm-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  will-change: transform;
}

.tlm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
}

.tlm-item img {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
  pointer-events: none;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.tlm-item-label {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.3;
  color: #666666;
  white-space: nowrap;
}

/* Optional grayscale-until-hover effect */
.tlm-grayscale .tlm-item img {
  filter: grayscale(100%);
  opacity: 0.7;
}
.tlm-grayscale .tlm-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 600px) {
  .tlm-track {
    gap: 40px;
  }
  .tlm-row + .tlm-row {
    margin-top: 26px;
  }
}
