@media screen and (max-width: 640px){
      .text_zero {
        text-align: justify;
        text-indent: 20px;
      }
    
      window.onload = function () {
        const items = document.querySelectorAll(".tn-atom");
        items.forEach((el) => {
          if (el.inerHTML.length > 50) {
            el.classList.add("text_zero");
          }
        });
      };
    
}
