
.legal-grid-strong{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.legal-card-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:22px;
  box-shadow:0 18px 50px rgba(15,23,42,.08);
  padding:26px;
}
.legal-badge{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#eff6ff;
  color:#2563eb;
  font-weight:800;
  font-size:1rem;
}
.legal-content h3{
  margin-bottom:10px;
}
.legal-content p{
  color:#374151;
  margin-bottom:0;
}
@media (max-width:900px){
  .legal-grid-strong{
    grid-template-columns:1fr;
  }
}
