src/components/social-proof/LogoGridWithTitle.astro
---
// LogoGridWithTitle, recovered from blurr-components.pages.dev
---
<section class="lgwt__section lgwt__layout-above"> <div class="lgwt__head"> <p class="lgwt__eyebrow">Vertrouwd door</p> <h2 class="lgwt__headline">Meer dan 80 bedrijven groeien met BLURR</h2> <p class="lgwt__sub">Van lokale dienstverleners tot internationale scale-ups.</p> </div> <ul class="lgwt__grid lgwt__cols-4 lgwt--grayscale" role="list"> <li class="lgwt__cell lgwt__item"> <span class="lgwt__link"> <img data-allow-img class="lgwt__logo" src="/img/ext/logo-google.svg" alt="Google" loading="lazy" decoding="async" > </span> </li><li class="lgwt__cell lgwt__item"> <span class="lgwt__link"> <img data-allow-img class="lgwt__logo" src="/img/ext/logo-meta.svg" alt="Meta" loading="lazy" decoding="async" > </span> </li><li class="lgwt__cell lgwt__item"> <span class="lgwt__link"> <img data-allow-img class="lgwt__logo" src="/img/ext/logo-shopify.svg" alt="Shopify" loading="lazy" decoding="async" > </span> </li><li class="lgwt__cell lgwt__item"> <span class="lgwt__link"> <img data-allow-img class="lgwt__logo" src="/img/ext/logo-stripe.svg" alt="Stripe" loading="lazy" decoding="async" > </span> </li><li class="lgwt__cell lgwt__item"> <span class="lgwt__link"> <img data-allow-img class="lgwt__logo" src="/img/ext/logo-slack.svg" alt="Slack" loading="lazy" decoding="async" > </span> </li><li class="lgwt__cell lgwt__item"> <span class="lgwt__link"> <img data-allow-img class="lgwt__logo" src="/img/ext/logo-hubspot.svg" alt="HubSpot" loading="lazy" decoding="async" > </span> </li> </ul> </section>
<style>
.lgwt__section{padding:5rem 1.5rem;max-width:1200px;margin:0 auto}
.lgwt__layout-above{display:flex;flex-direction:column;align-items:center;gap:3rem}
.lgwt__layout-above .lgwt__head{text-align:center;max-width:640px}
.lgwt__layout-split{display:grid;grid-template-columns:2fr 3fr;gap:4rem;align-items:center}
.lgwt__layout-split .lgwt__head{text-align:left}
.lgwt__eyebrow{margin:0 0 .5rem;font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--color-accent)}
.lgwt__headline{margin:0 0 .75rem;font-size:clamp(1.75rem,3vw,2.5rem);font-weight:800;letter-spacing:-.02em;color:var(--color-primary);line-height:1.15}
.lgwt__sub{margin:0;font-size:1.0625rem;line-height:1.7;color:var(--color-muted)}
.lgwt__grid{list-style:none;margin:0;padding:0;display:grid;gap:0;width:100%}
.lgwt__cols-3{grid-template-columns:repeat(3,1fr)}
.lgwt__cols-4{grid-template-columns:repeat(4,1fr)}
.lgwt__cols-5{grid-template-columns:repeat(5,1fr)}
.lgwt__cell{display:flex;align-items:center;justify-content:center;padding:1.25rem 1.5rem;border:1px solid rgba(0,0,0,.06);margin:-.5px;opacity:0;transform:translateY(12px);transition:opacity .4s ease,transform .4s ease,filter .25s ease}
.lgwt__cell.lgwt--item-visible{opacity:1;transform:translateY(0)}
.lgwt__link{display:flex;align-items:center;justify-content:center;text-decoration:none}
.lgwt__logo{max-height:40px;max-width:160px;object-fit:contain;display:block;transition:filter .25s ease}
.lgwt--grayscale .lgwt__logo{filter:grayscale(100%) opacity(.5)}
.lgwt--grayscale .lgwt__cell:hover .lgwt__logo{filter:none}
.lgwt__layout-split{grid-template-columns:1fr}
.lgwt__layout-split .lgwt__head{text-align:center}
.lgwt__cols-5,.lgwt__cols-4{grid-template-columns:repeat(3,1fr)}
.lgwt__grid{grid-template-columns:repeat(2,1fr)!important}
</style>