@charset "UTF-8";
/* ============================================================
   手机端显示优化 — 小坚的产融之旅 (asiawang.com)
   由小坚助手注入，仅在小屏 (≤768px) 生效，桌面端不受影响
   ============================================================ */
@media (max-width: 768px) {

  /* 1. 导航栏英文 Logo 太长 → 手机上换成简洁中文站名 */
  nav a.font-serif {
    font-size: 0 !important;
    line-height: 1 !important;
  }
  nav a.font-serif::after {
    content: "小坚的产融之旅";
    font-size: 1rem !important;
    line-height: 1.2 !important;
    font-weight: 600;
    white-space: nowrap;
  }

  /* 2. 文章页主标题：36px → 24px */
  main h1.text-4xl {
    font-size: 1.5rem !important;
    line-height: 1.35 !important;
  }

  /* 3. 文章页封面图：384px → 192px */
  main img.h-96 {
    height: 12rem !important;
  }

  /* 4. 首页数据统计区：缩小间距与字号，避免三列文字挤压 */
  .grid.grid-cols-3.gap-8 {
    gap: 0.6rem !important;
  }
  .grid.grid-cols-3.gap-8 .text-3xl {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
  }
  .grid.grid-cols-3.gap-8 .text-sm {
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
  }

  /* 5. 文章正文：略微收窄行距，手机阅读更舒适 */
  main article p {
    line-height: 1.8 !important;
  }
}
