.tbb-banner {
  padding: 18px 0;
  background: #fff;
}

.tbb-title {
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--primary-color, #002B6D);
}

.tbb-marquee {
  overflow: hidden;
  position: relative;
}

.tbb-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: tbb-scroll 30s linear infinite;
  will-change: transform;
}

.tbb-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.tbb-item img {
  height: 72px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

@keyframes tbb-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 768px) {
  .tbb-banner {
    padding: 10px 0;
  }

  .tbb-title {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .tbb-track {
    gap: 18px;
    animation-duration: 22s;
  }

  .tbb-item img {
    height: 40px;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .tbb-banner {
    padding: 8px 0;
  }

  .tbb-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .tbb-track {
    gap: 14px;
    animation-duration: 20s;
  }

  .tbb-item img {
    height: 34px;
    max-width: 100px;
  }
}
