/* 第69期雙月刊 p41-44 樣式檔案 */
/* 生成時間：2025-11-16 06:59:11 */
/* 功能描述：page41-44 的樣式規則，包含基本容器、標題、內容段落等樣式 */

/* 基本容器樣式 */
.bundle-41-44 .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;
}

/* 標題樣式 */
.bundle-41-44 .title {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #4b8044;
}

/* 作者樣式 */
.bundle-41-44 .author {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #231F20;
}

/* 分隔線樣式 */
.bundle-41-44 .dotted-line {
    height: 8px;
    width: 100%;
    margin: 25px 0;
    background-image: radial-gradient(circle, #767E77 2px, transparent 2px);
    background-size: 8px 8px;
    background-position: center;
}

/* 內容樣式 */
.bundle-41-44 .content {
    max-width: 600px;
    margin: 0 auto;
}

/* 內容段落樣式 */
.bundle-41-44 .content-paragraph {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-indent: 2em;
    font-size: 1rem;
    color: #231F20;
}

/* 特殊字體粗體樣式 (DFKaiShuStd-W7) */
.bundle-41-44 .fw-bold {
    font-weight: bold;
    color: #231F20;
}

/* 小標題樣式 */
.bundle-41-44 .subtitle {
    text-align: left;
    color: #4b8044;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    font-weight: bold;
}

/* 頁碼樣式 */
.bundle-41-44 .page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.bundle-41-44 .page-text {
    font-size: 0.9rem;
    color: #666;
}

.bundle-41-44 .page-circle {
    background-color: #767E77;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Add End Icon Style */
.bundle-41-44 .end-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-left: 5px;
    vertical-align: middle;
    background-image: url('../common/logo-notext.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 圖片樣式 */
.bundle-41-44 .image-figure {
    float: right;
    width: 30%;
    margin: 0 0 1rem 1.5rem;
    text-align: center;
}

.bundle-41-44 .image-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.bundle-41-44 .image-caption {
    font-size: 0.9rem;
    color: #806856;
    text-align: center;
    margin-top: 10px;
    line-height: 1.6;
}

/* ========================================
   Page 43 專屬樣式：粗體和顏色校正
   ======================================== */

/* Page 43: DFHeiStd-W7 字體，顏色 #4b8044，需要粗體 */
.bundle-41-44 .page-43 .subtitle {
    font-weight: bold;
    color: #4b8044;
}

/* Page 43: DFHeiStd-W7 字體，顏色 #231f20，需要粗體 */
.bundle-41-44 .page-43 .content-paragraph.bold-text {
    font-weight: bold;
    color: #231F20;
}

/* ========================================
   Page 44 專屬樣式：粗體和顏色校正
   ======================================== */

/* Page 44: DFHeiStd-W7 字體，顏色 #4b8044，需要粗體 */
.bundle-41-44 .page-44 .subtitle {
    font-weight: bold;
    color: #4b8044;
}

/* ========================================
   響應式設計
   ======================================== */

/* 中等螢幕 (768px 以下) */
@media (max-width: 768px) {
    .bundle-41-44 .container {
        margin: 0 auto 2rem auto;
        padding: 15px;
    }

    .bundle-41-44 .title {
        font-size: 2.2rem;
    }

    .bundle-41-44 .content-paragraph {
        text-indent: 1.5em;
        font-size: 0.95rem;
    }

    /* 圖片在中等螢幕改為50%寬度 */
    .bundle-41-44 .image-figure {
        width: 50%;
        margin: 0 0 1rem 1rem;
    }
}

/* 小螢幕 (480px 以下) */
@media (max-width: 480px) {
    .bundle-41-44 .title {
        font-size: 1.8rem;
    }

    .bundle-41-44 .content-paragraph {
        text-indent: 1em;
        font-size: 0.9rem;
    }

    /* 圖片在小螢幕改為100%寬度，不浮動 */
    .bundle-41-44 .image-figure {
        float: none;
        width: 100%;
        margin: 1.5rem 0;
    }
}

