/* ── Marquee Logos ── */
.marquee-section {
  background: #f5f5f5;
  padding: 22px 0;
  /* break out of .container to go edge-to-edge */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  /* vertical breathing room */
  margin-bottom: 36px;
  position: relative
}

/* Fog/fade masks on left and right edges */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none
}

.marquee-section::before {
  left: 80px;
  background: linear-gradient(to right, #f5f5f5 0%, transparent 100%)
}

.marquee-section::after {
  right: 80px;
  background: linear-gradient(to left, #f5f5f5 0%, transparent 100%)
}

.marquee-track-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite
}

.marquee-track:hover {
  animation-play-state: paused
}

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

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px
}

.marquee-item img {
  height: 32px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  opacity: 0.5;
}

.marquee-item img:hover {
  opacity: 0.8
}

/* ProvenExpert is a square icon — show it larger so it's readable */
.marquee-item--square {
  height: 52px
}

/* .marquee-item--square img {
  height: 48px;
  max-width: 48px
} */
/* ── End Marquee Logos ── */
