/* Shell */
.bb-scale-results-quote{ background: var(--bb-bg); color: var(--bb-text); }
.bb-wrap{ width: 100%; max-width: 1160px; margin: 0 auto; padding: 36px 16px; box-sizing: border-box; }

/* Numbers (centered 3-up) */
.bb-results{
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-items: center;
  gap: 28px;
  width: 100%;
  max-width: min(100%, var(--bb-auxw));
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bb-result{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}

.bb-result__img{ width: 48px; height: 48px; object-fit: contain; }
.bb-result__text{ display: grid; grid-template-rows: auto auto; }
.bb-result__text h4{ margin: 0; font-size: 22px; }
.bb-result__text p{ margin: 0; color: var(--bb-muted); line-height: 1.3; }
.bb-line{ display: inline; }

/* Testimonial */
.bb-quote{
  margin-top: 28px; border: none; border-radius: var(--bb-radius);
  background: #F8FAFF; padding: 22px;
  width: 100%; max-width: min(100%, var(--bb-auxw));
  margin-left: auto; margin-right: auto;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px;
}
.bb-quote__brandline{ display: grid; grid-template-rows: auto auto; gap: 10px; }
.bb-logo{ height: 22px; width: auto; }
.bb-quote__meta{ display: grid; grid-template-columns: 40px 1fr; gap: 10px; align-items: center; justify-self: end; }
.bb-avatar{ width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.bb-byline span{ display: block; color: var(--bb-muted); font-size: 12px; }

/* Tablet */
@media (max-width: 1020px){
  .bb-results{ gap: 18px; }
}

/* Mobile */
@media (max-width: 720px){
  .bb-wrap{ padding: 24px 16px; }

  /* Keep the three blocks centere*
