Hi, I'm experimenting with using this theme for a resume-style personal site. I have several published papers I'm modeling as posts, but some have quite long titles and it seems to cause the dates in the list to be misaligned at certain window widths.
Describe the bug
Long post titles cause dates to appear in the wrong spot.
Expected behavior
Perhaps the maximum width of the titles could be limited, and the date could line up horizontally with the first line of the post title.
Screenshots

Desktop (please complete the following information):
Hugo Static Site Generator v0.80.0-792EF0F4/extended linux/amd64 BuildDate: 2020-12-31T13:46:18ZAdditional context
Add any other context about the problem here.
@cwpearson Thanks for the in-depth description. I'll need to reproduce this locally and will report back. I am sure this problem can be solved with a bit of CSS.
I did a quick fix with custom css
.list-with-title .listing .listing-post a {
max-width:90%;
display: inline-block;
}
But this is literally the most CSS I have ever written :D so there may be a better way
@cwpearson I just came up with the same solution, additionally we could specify the width for post-time to let say 10 % and make it allign right. I am currently testing if that would cause any new bugs.
@cwpearson Thanks very much. Highly appreciated. Few people realise the amount of time, learning and effort it takes to maintain this. theme 馃憤
Back to your issue. I will push an update tonight. There is still an edge case I want to resolve for the mobile view.