Some long text entries in the list will have a blank line at the beginning.
Google Gemini told me that adding word-break: break-all here would eliminate the blank lines. I tried it, and it worked.
After adding it, it looks like this.
ul li {
text-indent: -2ch;
word-break: break-all;
}
