/* ============================================================
   Site fixes layered on top of the Webflow export.
   Kept separate so the original Webflow CSS stays untouched.
   ============================================================ */

/* Hero title centering:
   Webflow applies letter-spacing:10px to .heading1-2. On a centered line that
   trailing 10px sits on the right, making the Chinese title look shifted left.
   Adding equal left padding re-centers the glyphs. The English title resets
   letter-spacing to 0, and html:lang(zh) scopes this to the Chinese pages only. */
html:lang(zh) .heading1-2 { padding-left: 10px; }
