/* ── Collaboration / Brand Marquee ───────────────────────────── */
.collaboration {
  padding: 58px 0 64px;
  background: #ffffff;
}
.collaboration-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0d3d20;
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: -0.03em;
}

.wrappero {
  padding: 28px 0;
  overflow: hidden;
  background: #f5faf6;
  border-top: 1px solid #e1ebe4;
  border-bottom: 1px solid #e1ebe4;
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scroll 30s linear infinite;
  flex-shrink: 0;
  padding-right: 48px;
}

.marquee:hover .marquee__group {
  animation-play-state: paused;
}

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

.marquee__group img {
  height: 56px;
  width: auto;
  object-fit: contain;
  padding: 10px 18px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 64, 34, 0.07);
}
