.trusted-logos-section {
  padding: 80px 0;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
}

.trusted-logos-card {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .trusted-logos-card {
    flex-direction: row;
    padding: 40px 60px;
  }
}

.trusted-content {
  flex: 1;
}

.trusted-badge {
  color: var(--avnet-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  margin-bottom: 12px;
}

.trusted-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--avnet-dark);
  line-height: 1.3;
  margin: 0;
  max-width: 450px;
}

@media (max-width: 768px) {
  .trusted-title {
    font-size: 20px;
  }
}

.logos-container {
  flex: 2;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  width: max-content;
}

.logos-list {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
}

.logo-item {
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Infinite Scroll Animation */
.is-carousel .logos-track {
  animation: scroll 30s linear infinite;
}

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

.logos-container::before,
.logos-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), transparent);
}

.logos-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.5), transparent);
}
