/* ===== typography.css (REPLACE ALL) ===== */

/* 全站行高 */
html { line-height: 1.5; }

/* 现代浏览器进一步裁掉文字盒子上下空隙（有则用，没也不影响） */
@supports (text-box-trim: trim-both) {
  html {
    /* 简写也可：text-box: trim-both cap alphabetic; */
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

/* 你原来的文字等级，统一行高为 1.5（示例保留） */
@layer base {
  .text-hero    { font-family:'Calibre',sans-serif; font-size:48px; font-weight:700; line-height:1.5; }
  .text-title   { font-family:'Calibre',sans-serif; font-size:32px; font-weight:500; line-height:1.5; }
  .text-heading { font-family:'Calibre',sans-serif; font-size:22px; font-weight:500; line-height:1.5; }
  .text-subhead { font-family:'Calibre',sans-serif; font-size:18px; font-weight:500; line-height:1.5; }
  .text-body    { font-family:'Calibre',sans-serif; font-size:15px; font-weight:400; line-height:1.5; }
  .text-strong  { font-family:'Calibre',sans-serif; font-size:15px; font-weight:500; line-height:1.5; }
  .text-caption { font-family:'Calibre',sans-serif; font-size:13px; font-weight:400; line-height:1.5; }
  .text-tag     { font-family:'Calibre',sans-serif; font-size:11px; font-weight:500; line-height:1.5; text-transform:uppercase; letter-spacing:.05em; }
}