/* Navneleg product USP box v1.
   Two columns on anything wider than a phone, one on a phone. The text carries
   the message and the icon only supports it, so the icons stay small and quiet
   rather than becoming a row of decoration next to the buy button. */

.nls-usp{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 18px;
  margin:22px 0 0;
  padding-top:18px;
  border-top:1px solid rgba(40,36,42,.1);
}

.nls-usp__item{
  display:flex;
  align-items:center;
  gap:9px;
  min-width:0;
}

.nls-usp__icon{
  flex:0 0 18px;
  color:#918d86;
}

.nls-usp__icon svg{
  width:18px;
  height:18px;
  display:block;
}

.nls-usp__label{
  font-size:13.5px;
  font-weight:600;
  line-height:1.35;
  color:inherit;
}

.nls-usp__note{
  margin:14px 0 0;
  font-size:12.5px;
  line-height:1.5;
  color:#6b6862;
}

@media (max-width:600px){
  .nls-usp{
    grid-template-columns:minmax(0,1fr);
    gap:11px;
  }
}
