/**
 * 第77期 page11-18 樣式
 * 生成時間：2025-12-22 06:35:00
 * 功能描述：第77期雙月刊 page11-18 頁面通用樣式
 * 備註：page11 專屬樣式已移至 style6.css
 */

/* ============================================================
   Page 11-18 通用樣式
   ============================================================ */

/* 主容器樣式 */
.bundle-11-18 .container {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 100px 20px 100px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #fff;
    position: relative;
}

/* ============================================================
   Page 12 專屬樣式 - 標題頁（與 Page 6 相同結構）
   ============================================================ */

/* 文章頭部容器 - 蓮花圖標 + 標題文字 */
.bundle-11-18 .page-12 .article-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* 蓮花圖標 */
.bundle-11-18 .page-12 .header-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}

.bundle-11-18 .page-12 .header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 標題文字區塊 */
.bundle-11-18 .page-12 .header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Page 12: 小標題（分類） - 字級14.0pt, 顏色 #231F20 */
.bundle-11-18 .page-12 .category {
    text-align: left;
    color: #231f20;
    font-size: 1.167rem;
    margin: 0 0 5px 0;
    font-weight: normal;
}

/* Page 12: 大標題 - 字級26.0pt, 顏色 #86633A (棕色) */
.bundle-11-18 .page-12 .title {
    text-align: left;
    color: #86633A;
    margin: 0 0 8px 0;
    font-size: 2.7rem;
    font-weight: bold;
    line-height: 1.3;
}

/* 圓形點點的虛線 */
.bundle-11-18 .page-12 .dotted-line {
    height: 8px;
    width: 100%;
    margin: 25px 0;
    background-image: radial-gradient(circle, #86633A 1px, transparent 1px);
    background-size: 8px 8px;
    background-position: center;
}

/* ============================================================
   Page 12-18 通用內容樣式
   ============================================================ */

/* 章節小標題（一、二、三...） */
.bundle-11-18 .section-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #86633A;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.6;
}

/* 段落文字樣式 */
.bundle-11-18 .content-paragraph {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 0;
    color: #231F20;
}

/* 首行縮排 */
.bundle-11-18 .content-paragraph.indent {
    text-indent: 2em;
}

/* 粗體文字（DFHeiStd-W7） */
.bundle-11-18 .fw-bold {
    font-weight: bold;
}

/* 楷體粗體（DFKaiShuStd-W7）- Page 17 專用 */
.bundle-11-18 .fw-bold-kai {
    font-weight: bold;
}

/* ============================================================
   全圖片頁面樣式（Page 13, 16）
   ============================================================ */

.bundle-11-18 .full-page-image {
    padding: 0;
}

.bundle-11-18 .full-page-image .content {
    padding: 0;
}

.bundle-11-18 .full-page-image .content img {
    width: 100%;
    height: auto;
    display: block;
}

/* 圖片說明文字（Page 16） */
.bundle-11-18 figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #806856;
    margin-top: 10px;
    line-height: 1.6;
}

/* ============================================================
   頁碼樣式
   ============================================================ */

.bundle-11-18 .page-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.bundle-11-18 .page-number .page-text {
    color: #666;
}

.bundle-11-18 .page-number .page-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #86633A;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

/* ============================================================
   RWD 響應式設計
   ============================================================ */

/* 平板尺寸 (max-width: 992px) */
@media (max-width: 992px) {
    .bundle-11-18 .container {
        padding: 20px 60px;
    }

    .bundle-11-18 .page-12 .header-icon {
        width: 80px;
        height: 80px;
    }

    .bundle-11-18 .page-12 .title {
        font-size: 1.8rem;
    }

    .bundle-11-18 .page-12 .category {
        font-size: 1.3rem;
        font-weight: 600;
    }
}

/* 手機尺寸 (max-width: 768px) */
@media (max-width: 768px) {
    .bundle-11-18 .container {
        padding: 15px 30px;
    }

    .bundle-11-18 .page-12 .article-header {
        gap: 15px;
    }

    .bundle-11-18 .page-12 .header-icon {
        width: 80px;
        height: 80px;
    }

    .bundle-11-18 .page-12 .title {
        font-size: 1.4rem;
    }

    .bundle-11-18 .page-12 .category {
        font-size: 1.2rem;
    }

    .bundle-11-18 .page-12 .header-text .author {
        font-size: 0.9rem;
    }

    .bundle-11-18 .section-title {
        font-size: 0.95rem;
    }
}

/* 小手機尺寸 (max-width: 576px) */
@media (max-width: 576px) {
    .bundle-11-18 .container {
        padding: 10px 20px;
    }

    .bundle-11-18 .page-12 .article-header {
        gap: 12px;
    }

    .bundle-11-18 .page-12 .header-icon {
        width: 80px;
        height: 80px;
    }

    .bundle-11-18 .page-12 .title {
        font-size: 1.4rem;
    }

    .bundle-11-18 .page-12 .category {
        font-size: 1.2rem;
    }

    .bundle-11-18 .page-12 .header-text .author {
        font-size: 0.9rem;
    }

    .bundle-11-18 .content-paragraph {
        font-size: 0.9rem;
    }

    .bundle-11-18 .section-title {
        font-size: 0.9rem;
    }
}