.main-text-no-break-words {
    /* white-space: nowrap; */
    hyphens: none;
  
    /* This ensures words only break at allowed points (like spaces) */
    overflow-wrap: normal;
    
    /* This prevents the browser from breaking a word anywhere to fit the container */
    word-break: normal;
}