.bs-oem-strip {
  background: #f4f6f8;
  padding: 56px 24px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.bs-oem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bs-oem-strip .bs-section-eyebrow {
  text-align: center;
  color: #e8552a;
}
.bs-oem-strip .bs-section-title {
  text-align: center;
  margin-bottom: 12px;
  color: #1a2740;
}
.bs-oem-strip .bs-section-title em {
  color: #e8552a;
  font-style: normal;
}
.bs-oem-strip p {
  text-align: center;
  font-size: .88rem;
  color: #6b7a99;
  margin: 0 0 28px;
}
.bs-oem-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.bs-oem-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 14px 10px;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s, box-shadow .15s;
  width: 86px;
}
.bs-oem-logo-item:hover {
  background: #fff5f2;
  border-color: #e8552a;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(232,85,42,.12);
}
.bs-oem-logo-item img {
  width: 48px;
  height: 30px;
  object-fit: contain;
  opacity: .7;
  transition: opacity .15s;
}
.bs-oem-logo-item:hover img {
  opacity: 1;
}
.bs-oem-logo-item span {
  font-family: 'Barlow', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  color: #9aa5b4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: color .15s;
}
.bs-oem-logo-item:hover span {
  color: #e8552a;
}
@media (max-width: 640px) {
  .bs-oem-strip { padding: 36px 16px; }
  .bs-oem-logos { gap: 8px; }
  .bs-oem-logo-item { width: 70px; padding: 10px 8px; }
  .bs-oem-logo-item img { width: 36px; height: 24px; }
  .bs-oem-logo-item span { font-size: .58rem; }
}