/* JW 2026/07/30 header model 5 專屬樣式，由 common.jsp 在 settings.header_model==5 時才載入。
   原本這組規則寫在 main_v15.css 的 .page_title.title_modal_5 h1，而 title_modal_5 這個 class
   是 header.js 在 $(document).ready 之後才 addClass 上去的；首屏會先用 .page_title h1 的 28px
   畫一次，JS 跑完才縮到 20px，整頁內容上移約 38px，使用者看到「閃一下」。
   header model 在 server 端已知，故拆成條件載入的 CSS，first paint 就是最終字級。
   main_v15.css 的 .page_title.title_modal_5 h1 保留不動，讓 header.js 的 addClass 仍是等價行為。 */
.page_title h1 {
    font-size: 20px !important;
    margin-bottom: 0 !important;
    line-height: 1em !important;
}
