/**
 * 全站设计令牌（纯 CSS，不经 Sass 编译，避免自定义属性被工具链弄丢）
 * - 静态入口：/css/design-tokens.css（nuxt head link）
 * - 构建入口：assets 同名文件 + main.scss @import
 */
:root {
  --hero-banner-height: 75vh;
  --color-site-text-primary: #144f5c;
  --color-site-box-border: #999999;
  --border-site-box: 1px solid #999999;
  --margin-bottom-section: 100px;
  --margin-bottom-section-small: 80px;
}

@media (max-width: 992px) {
  :root {
    --margin-bottom-section: 50px;
    --margin-bottom-section-small: 40px;
  }
}
