/**
 * 字體大小修正 - 確保所有詳細頁面的 p 和 li 字體大小一致
 * 此文件需要在所有其他CSS之後載入
 * 注意：此檔案已被 unified-typography.css 取代，保留僅為向後相容
 */

/* 全域字體大小設定 - 統一為 14px */
p {
    font-size: 14px !important;  /* 統一為 14px */
    line-height: 1.5 !important;  /* 統一行距為 1.5 */
}

li {
    font-size: 14px !important;  /* 統一為 14px - 與 p 標籤一致 */
    line-height: 1.5 !important;  /* 統一行距為 1.5 */
}

ul, ol {
    font-size: 14px !important;  /* 統一為 14px - 與 p 標籤一致 */
    line-height: 1.5 !important;  /* 統一行距為 1.5 */
}

/* 詳細頁面內文統一字體大小 - 統一為 14px */
.article-content p,
.article-content li,
.article-content ul,
.article-content ol,
.tab-content p,
.tab-content li,
.tab-content ul,
.tab-content ol,
.portfolio-description-section .tab-content p,
.portfolio-description-section .tab-content li,
.portfolio-description-section .tab-content ul,
.portfolio-description-section .tab-content ol,
.brand-description-text p,
.brand-description-text li,
.brand-description-text ul,
.brand-description-text ol,
.brand-story-text p,
.brand-story-text li,
.brand-story-text ul,
.brand-story-text ol,
.product-chars-content p,
.product-chars-content li,
.product-chars-content ul,
.product-chars-content ol,
.product-specs-content p,
.product-specs-content li,
.product-specs-content ul,
.product-specs-content ol {
    font-size: 14px !important;  /* 統一為 14px */
    line-height: 1.5 !important;  /* 統一行距為 1.5 */
}

/* 小螢幕響應式 - 保持 14px（與桌面版一致） */
@media (max-width: 768px) {
    /* 手機版字體大小與桌面版一致 - 統一為 14px */
    p {
        font-size: 14px !important;  /* 統一為 14px */
        line-height: 1.5 !important;  /* 統一行距為 1.5 */
    }

    li {
        font-size: 14px !important;  /* 統一為 14px - 與 p 標籤一致 */
        line-height: 1.5 !important;  /* 統一行距為 1.5 */
    }

    ul, ol {
        font-size: 14px !important;  /* 統一為 14px - 與 p 標籤一致 */
        line-height: 1.5 !important;  /* 統一行距為 1.5 */
    }

    .article-content p,
    .article-content li,
    .article-content ul,
    .article-content ol,
    .tab-content p,
    .tab-content li,
    .tab-content ul,
    .tab-content ol,
    .portfolio-description-section .tab-content p,
    .portfolio-description-section .tab-content li,
    .portfolio-description-section .tab-content ul,
    .portfolio-description-section .tab-content ol,
    .brand-description-text p,
    .brand-description-text li,
    .brand-description-text ul,
    .brand-description-text ol,
    .brand-story-text p,
    .brand-story-text li,
    .brand-story-text ul,
    .brand-story-text ol,
    .product-chars-content p,
    .product-chars-content li,
    .product-chars-content ul,
    .product-chars-content ol,
    .product-specs-content p,
    .product-specs-content li,
    .product-specs-content ul,
    .product-specs-content ol {
        font-size: 14px !important;  /* 統一為 14px */
    }
}
