ul {
  list-style-image: url("https://static.tildacdn.com/tild3935-3938-4131-b034-623261346565/lemon.svg");
  margin: 0;
  padding: 0;
}

ul li {
    padding-left: 8px; 
}

@media (max-width: 480px) {
    
   body ul { padding-left:0 !important; margin-left:0 !important; }
   
  .t-text ul,
  .t-descr ul,
  .t-rec ul,
  ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  
 ul {
    list-style: none;
  }

  ul li {
    position: relative;
    padding-left: 18px; /* ← это контролирует расстояние от лимона до текста */
    margin-left: 0;
  }

  ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em; /* чуть опускаем, чтобы по вертикали не плясало */
    width: 9px;
    height: 9px;
    background-image: url("https://static.tildacdn.com/tild3935-3938-4131-b034-623261346565/lemon.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}