/* Client and business evidence strip. */
.evidence{
  padding:12px 0 72px
}
.evidence-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px
}
.evidence-item{
  display:flex;
  align-items:center;
  min-height:72px;
  padding:15px 17px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px;
  background:rgba(255,255,255,.05);
  font-size:14px;
  font-weight:800
}
.evidence-item::before{
  content:"";
  width:8px;
  height:8px;
  margin-right:11px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 5px rgba(121,242,192,.1)
}

