← Back to catalog
Social Proof Live

sa-as-featured-in v2026-05-25

Horizontal strip of full-color press logos (NYT, CNN, Time, Rolling Stone, Washington Post, NPR, Hulu, etc.). Header "As Featured In."

Source skill: sa-as-featured-in · Updated 2026-06-06 16:03:21

Edit

Live preview

Open ↗

When to use

Once per page, LOW on the page, before the final CTA banner.

Rules & constraints

Live reference

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

Deployment notes

Replace any 403-prone URLs with self-hosted copies. Verify list quarterly.

HTML

<section class="sal-asib">
  <div class="sal-asib-inner">
    <p class="sal-asib-heading">As Featured In</p>
    <div class="sal-asib-logos">
      <div class="sal-asib-logo"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/2026/02/New-York-Times-Logo-scaled.webp" alt="The new york times" loading="lazy" width="2560" height="1440"></div>
      <div class="sal-asib-logo"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/2026/02/CNN-Logo-scaled.webp" alt="Cnn" loading="lazy" width="2560" height="1707"></div>
      <div class="sal-asib-logo"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/2026/02/time-magazine-logo.webp" alt="Time magazine" loading="lazy" width="840" height="299"></div>
      <div class="sal-asib-logo"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/2026/02/rolling-stone-logo.webp" alt="Rolling stone" loading="lazy" width="441" height="114"></div>
      <div class="sal-asib-logo"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/2026/02/washington-post-logo.webp" alt="Washington post" loading="lazy" width="504" height="100"></div>
      <div class="sal-asib-logo"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/2026/02/NPR-logo-scaled.webp" alt="Npr" loading="lazy" width="2560" height="1440"></div>
      <div class="sal-asib-logo"><img src="https://aguiarinjurylawyers.com/wp-content/uploads/2026/02/hulu-logo-.webp" alt="Hulu" loading="lazy" width="374" height="135"></div>
    </div>
  </div>
</section>

CSS

/* ============== sa-as-featured-in - press logo strip ============== */
.sal-asib{
  padding:48px 24px;
  background:#fff;
}
.sal-asib-inner{
  max-width:1180px;
  margin:0 auto;
  text-align:center;
}
.sal-asib-heading{
  font-family:Poppins,sans-serif;
  font-weight:700;
  font-size:clamp(18px,2.2vw,22px);
  color:#0B212D;
  text-align:center;
  margin:0 0 28px;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.sal-asib-logos{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:36px 48px;
}
.sal-asib-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.sal-asib-logo img{
  max-height:42px;
  max-width:160px;
  width:auto;
  height:auto;
  object-fit:contain;
  /* Full color - never grayscale */
  filter:none;
  opacity:1;
}

@media (max-width:768px){
  .sal-asib{ padding:36px 16px; }
  .sal-asib-logos{ gap:24px 32px; }
  .sal-asib-logo img{ max-height:32px; max-width:120px; }
  .sal-asib-heading{ text-align:center; }
}