/* 第79期 page11-14 樣式 */
/**
 * 功能描述：第79期雙月刊 page11-14 頁面樣式
 */

/* 主容器 */
.bundle-11-14 .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;
}

/* ============ 標題樣式 ============ */

.bundle-11-14 .title {
    text-align: center;
    color: #806856;
    margin: 10px 0 15px 0;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.3;
}

/* ============ 作者樣式 ============ */
.bundle-11-14 .author {
    text-align: center;
    margin: 15px 0 35px 0;
    font-size: 1rem;
    color: #231f20;
    text-indent: 0;
}

/* ============ 圓形點點的虛線 ============ */
.bundle-11-14 .dotted-line {
    height: 8px;
    width: 100%;
    margin: 25px 0;
    background-image: radial-gradient(circle, #aaa 1px, transparent 1px);
    background-size: 8px 8px;
    background-position: center;
}

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

/* ============ 小標題樣式 ============ */
.bundle-11-14 .content-title {
    text-align: left;
    color: #86633a;
    margin: 30px 0 20px;
    font-size: 1.333rem;
    /* 16.0pt / 12pt */
    font-weight: bold;
}

/* ============ 段落樣式 ============ */
.bundle-11-14 .content-paragraph {
    text-indent: 2em;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem;
    /* 12.0pt / 12pt = 1rem */
    color: #231f20;
}

/* 粗體文字 */
.bundle-11-14 .content-paragraph .fw-bold {
    font-weight: 700;
    color: #231f20;
}

/* ============ 頁碼樣式 ============ */
.bundle-11-14 .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-14 .page-number .page-text {
    color: #666;
}

.bundle-11-14 .page-number .page-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #806856;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.bundle-11-14 figcaption {
    color: #806856;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ============ 上方圖片排版 ============ */
.bundle-11-14 .page-image-top {
    margin-bottom: 25px;
    text-align: center;
}

.bundle-11-14 .page-image-top img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.bundle-11-14 .page-image-top figcaption {
    color: #806856;
    font-size: 0.85em;
    text-align: center;
    margin-top: 8px;
}

/* ============ 文章結束符號 ============ */
.bundle-11-14 .end-icon::before {
    content: "■";
    color: #806856;
    margin-left: 0.3em;
    font-size: 0.8em;
    vertical-align: middle;
}

/* ============ 響應式設計 ============ */
@media (max-width: 768px) {
    .bundle-11-14 .container {
        padding: 15px 30px;
    }

    .bundle-11-14 .title {
        font-size: 1.8rem;
    }

    .bundle-11-14 .content-title {
        font-size: 1.1rem;
    }
}