.elementor-kit-12{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Noto Serif TC";--e-global-typography-primary-font-weight:900;--e-global-typography-secondary-font-family:"Noto Serif TC";--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Noto Sans TC";--e-global-typography-text-font-weight:500;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-12 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* 只在單篇文章頁面內的 H2 套用 */
.single-post .entry-content h2 {
    position: relative;    /* 建立定位基準 */
    padding-left: 20px;    /* 留出空間給左側垂直線 */
    line-height: 1.5;      /* 建議稍微增加行高，閱讀較舒適 */
}

/* 使用偽元素製作「只在第一行」的垂直線 */
.single-post .entry-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;            /* 調整線條頂部與第一行對齊的高度 */
    width: 8px;            /* 線條粗細 */
    height: 1.1em;         /* 關鍵：設定線條高度約等於第一行文字高度 */
    background-color: #FFD700; /* 黃色 */
}


.single-post .entry-content h3 {
    position: relative;    /* 建立定位基準 */
    padding-left: 45px;    /* 留出左側空間給橫線，數值需大於橫線長度 */
    text-align: justify;   /* 標題也可以左右對齊 */
}

/* 建立橫線 */
.single-post .entry-content h3::before {
    content: "";
    position: absolute;
    left: 0;               /* 固定在最左邊 */
    top: 0.8em;            /* 關鍵：使用 em 單位讓它跟隨第一行文字高度 */
    width: 30px;           /* 橫線長度 */
    height: 1.5px;           /* 橫線粗細 */
    background-color: #000000;
}

.single-post .entry-content p {
    text-align: justify;
    text-justify: distribute; /* 針對中文字優化，讓字距均勻分佈 */
    word-break: break-all;         /* 避免長英文單字或連結造成排版斷裂 */
}/* End custom CSS */