/* Mobile overflow fix for .article body prose (BROWSER-MOBILE-OVERFLOW-001)
   Allows long unbreakable tokens (URLs, hashes, package names) inside
   article prose to wrap inside <a> / <code> so 320px viewports don't
   overflow. Targets <p>/<li> directly under .article (not the nested
   .article-body variant). The .bap-fact .v a rule already covers the
   fact-strip; this fix covers the inline <p><a>https://...</a></p>
   pattern in section copy. */
.article p, .article li{ overflow-wrap:anywhere; word-break:break-word; min-width:0 }
.article p a, .article li a, .article p code, .article li code{ overflow-wrap:anywhere; word-break:break-all; min-width:0; max-width:100%; display:inline-block }