/* ==========================================================================
   BPoint Home — Manufacturer brands
   ========================================================================== */

.bp-home .eyebrow--center { justify-content: center; }
/* .brands-title kept for markup compatibility; sizing comes from the
   shared eyebrow + h2 rule in home.css. */
.bp-home .brands-copy { max-width: 660px; margin: 16px auto 0; text-align: center; display: grid; gap: 10px; }
.bp-home .brands-copy p { margin: 0; font-size: 14.5px; line-height: 1.62; color: var(--slate); }
.bp-home .brands-copy a { color: var(--blue); text-decoration: underline; }

.bp-home .brands-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 38px; align-items: center; }
.bp-home .brand-logo {
  height: 62px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  background: #fff;
  transition: .2s;
  padding: 14px 16px;
}
.bp-home .brand-logo:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.bp-home .brand-logo span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--slate);
  text-align: center;
}
.bp-home .brand-logo img { max-height: 32px; max-width: 82%; object-fit: contain; filter: grayscale(1); opacity: .78; transition: .2s; }
.bp-home .brand-logo:hover img { filter: none; opacity: 1; }

@media (max-width: 980px) { .bp-home .brands-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .bp-home .brands-row { grid-template-columns: repeat(2, 1fr); } }
