← Back to catalog
Social Proof Live

sa-trust-badges-grid v2026-06-10

3×2 grid of firm-credential badges (Forbes, Super Lawyers, ABOTA, NTL Top 100, Multi-Million, MVTLA). Header "Recognized Amongst Kentucky's Best Injury Lawyers."

Source skill: sa-trust-badges-grid · Updated 2026-06-10 16:47:46

Edit

Live preview

Open ↗

When to use

Mid-page on location pages and homepage. Coexists with horizontal trust bar (3.2).

Rules & constraints

Live reference

https://aguiarinjurylawyers.com/locations/lexington/

Deployment notes

Image heights normalized via max-height. Lazy-load below the fold.

HTML

<section class="sa-badges">
  <div class="sa-badges-inner">
    <h2>Recognized Amongst Kentucky&rsquo;s Best Injury Lawyers</h2>
    <div class="sa-badges-grid">
      <div class="sa-badge"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/bsg-images/forbes-badge.png" alt="Forbes best-in-state top lawyer" loading="lazy" width="2048" height="819"></div>
      <div class="sa-badge"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/bsg-images/super-lawyers-badge.png" alt="Super lawyers" loading="lazy" width="180" height="150"></div>
      <div class="sa-badge"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/2026/03/Abota-Badge.webp" alt="Abota american board of trial advocates" loading="lazy" width="616" height="428"></div>
      <div class="sa-badge"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/bsg-images/ntl-top100-badge.webp" alt="National trial lawyers top 100" loading="lazy" width="1200" height="1200"></div>
      <div class="sa-badge"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/bsg-images/multi-million-badge.png" alt="Multi-million dollar advocates forum" loading="lazy" width="350" height="350"></div>
      <div class="sa-badge"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/bsg-images/mvtla-badge.webp" alt="Motor vehicle trial lawyers association top 25" loading="lazy" width="512" height="512"></div>
    </div>
  </div>
</section>

CSS

/* ============== sa-trust-badges-grid - 3×2 badge grid ============== */
.sa-badges{
  padding:56px 24px;
  background:#fff;
}
.sa-badges-inner{
  max-width:1180px;
  margin:0 auto;
  text-align:center;
}
.sa-badges-inner h2{
  font-family:Poppins,sans-serif;
  font-weight:700;
  font-size:clamp(24px,3.2vw,32px);
  color:#0B212D;
  text-align:center;
  margin:0 0 36px;
  letter-spacing:.3px;
}
.sa-badges-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:24px;
  align-items:center;
  justify-items:center;
}
.sa-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:120px;
}
.sa-badge img{
  max-width:100%;
  max-height:120px;
  width:auto;
  height:auto;
  object-fit:contain;
}

@media (max-width:980px){
  .sa-badges-grid{ grid-template-columns:repeat(3, 1fr); gap:20px; }
  .sa-badge{ min-height:100px; }
  .sa-badge img{ max-height:100px; }
}
@media (max-width:480px){
  .sa-badges{ padding:40px 16px; }
  .sa-badge img{ max-height:80px; }
}

/* === ALL-CAPS + CENTERED (sa-copywriting §2, SCOPED 2026-06-10) === */
.sa-badges h1,.sa-badges h2,.sa-badges h3{text-transform:uppercase !important;text-align:center !important;}
.sa-badges .cva-btn,.sa-badges .cva-btn--primary,.sa-badges .cva-btn--ghost,.sa-badges .sa-cta-banner-btn,.sa-badges .sa-sidebar-btn,.sa-badges .sa-side-btn,.sa-badges .sa-submit-btn,.sa-badges .sa-bsg-cta,.sa-badges .sa-hero-cta,.sa-badges .sa-partner-btn,.sa-badges .sa-btn,.sa-badges .sa-cta,.sa-badges .sa-cta-btn,.sa-badges .btn{text-transform:uppercase !important;text-align:center !important;}