/* =========================================================
   Home — As Seen In Section
   ========================================================= */

.home-seenin {
  background-color: var(--base-bon-jour-20);
  padding: 32px 0;
  overflow: hidden;
}

.home-seenin__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--base-cod-gray-80);
  margin-bottom: 24px;
}

.home-seenin__marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.home-seenin__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: home-seenin-scroll 28s linear infinite;
}

.home-seenin__track:hover {
  animation-play-state: paused;
}

.home-seenin__item {
  flex: 0 0 auto;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
}

.home-seenin__item img {
  display: block;
  width: 100%;
  height: 42px;
  object-fit: contain;
}

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

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .home-seenin {
    padding: 24px 0;
  }

  .home-seenin__title {
    font-size: 18px;
  }

  .home-seenin__track {
    gap: 24px;
    animation-duration: 18s;
  }

  .home-seenin__item {
    width: 110px;
    height: 22px;
  }

  .home-seenin__item img {
    height: 22px;
  }
}
