.yibo_company_marquee {
  overflow: hidden;
  background: var(--color-primary);
}

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

.yibo_company_marquee-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  flex-wrap: nowrap;
  will-change: transform;
}

.yibo_company_marquee-item {
  position: relative;
  flex: none;
  height: clamp(160px, 12.03vw, 230px);
  overflow: hidden;
  width: auto;
}

.yibo_company_marquee-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(181, 81, 0, 0.5);
  pointer-events: none;
}

.yibo_company_marquee-item img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

