@@ -2319,7 +2322,24 @@ export function IssueDetail({ issueId, onDelete, onDone, defaultSidebarOpen = tr
data-tab-scroll-root
className="relative flex-1 overflow-y-auto [scrollbar-gutter:stable_both-edges]"
>
-
+ {/* Reading measure. max-w-xl (576px) - px-8 both sides = 512px of text.
+ At the prose body size (14px Inter, see editor/styles/prose.css) that
+ is ~75 characters per line for Latin and ~36 for CJK — the top of the
+ 45-75 comfortable range, and the CJK sweet spot. The previous
+ max-w-4xl gave 832px = ~122 Latin / ~59 CJK characters, long enough
+ that the eye loses the return sweep on multi-paragraph descriptions
+ (MUL-5450). Comment bodies are inset a further 72px by the card's
+ px-4 + the pl-10 avatar gutter, landing them at ~64 characters.
+
+ Deliberately px, not `ch`: `ch` is the advance of "0", which in Inter
+ is 0.63em against an average prose character of 0.47em, so a `Nch`
+ cap holds ~1.33N characters — and on this container `ch` would
+ resolve against the inherited 16px root, not the prose's 14px.
+ `max-w-[68ch]` here would be 686px, not the intended measure.
+
+ Keep in sync with the loading skeleton's column above, or the page
+ jumps sideways when real content replaces it. */}
+