/* Three quick specs: equal columns, safe wrapping and aligned labels. */
.feature-row{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:18px!important;
  width:100%;
}
.feature-row>span{
  min-width:0!important;
  display:block;
  line-height:1.5;
}
.feature-row>span>b{
  display:flex!important;
  align-items:flex-start;
  margin:0 0 7px!important;
  font-size:clamp(14px,1.05vw,18px)!important;
  line-height:1.25!important;
  min-height:2.5em;
  white-space:normal!important;
  overflow-wrap:anywhere;
  word-break:normal;
  letter-spacing:-.025em;
}
@media(max-width:560px){
  .feature-row{gap:8px!important}
  .feature-row>span>b{font-size:12px!important;min-height:3em}
}
