/* Homepage-only resource strip and brand marquee styles. */

.brand-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 30px 22px;
  animation: brand-marquee 26s linear infinite;
}

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

.brand-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  color: var(--ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(24, 32, 42, 0.05);
}

.brand-logo-card__img {
  display: block;
  max-width: 78%;
  max-height: 54px;
  object-fit: contain;
}

.brand-logo-card:hover {
  border-color: #ffc176;
  background: #fff7ef;
}

.product-resource-heading {
  align-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.product-resource-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 2.55vw, 42px);
  line-height: 1.22;
}

.product-resource-heading > p:last-child {
  margin: 0;
  color: var(--orange);
  font-size: 17px;
  font-weight: 900;
}

.product-resource-heading a {
  color: inherit;
  white-space: nowrap;
}

.brand-logo-card--te {
  background: #f28c00;
  color: #fff;
}

.brand-logo-card--molex {
  color: #df123a;
  font-size: 34px;
}

.brand-logo-card--phoenix {
  color: #1a1d22;
  font-size: 20px;
}

.brand-logo-card--lapp {
  color: #103b79;
}

.brand-logo-card--3m {
  color: #e31b23;
  font-size: 40px;
}

.brand-logo-card--amphenol {
  color: #194f90;
  font-size: 28px;
}

.brand-logo-card--belden {
  color: #111827;
}

.brand-logo-card--binder {
  color: #0073bc;
  font-size: 34px;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .brand-marquee::before,
  .brand-marquee::after {
    width: 32px;
  }

  .brand-marquee__track {
    gap: 12px;
    padding: 20px 14px;
  }

  .brand-logo-card {
    width: 150px;
    height: 74px;
    font-size: 24px;
  }

  .product-resource-heading {
    margin-bottom: 14px;
  }

  .product-resource-heading h2 {
    margin-bottom: 8px;
    font-size: 25px;
    line-height: 1.2;
  }

  .product-resource-heading > p:last-child {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee__track {
    animation: none !important;
  }
}
