@charset "UTF-8";

/* 第77期 page91-92 樣式 */
/**
 * 生成時間：2025-12-24 12:52:00
 * 功能描述：第77期雙月刊 page91-92 頁面樣式
 * 包含頁面：page91（我的命盤 - 二）、page92（圖片頁）
 */

/* ============ 主容器 ============ */
.bundle-91-92 .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-91-92 .content {
    max-width: 600px;
    margin: 0 auto;
}

/* ============ 小節標題樣式 ============ */
.bundle-91-92 .section-title {
    text-align: left;
    color: #6850a1;
    margin: 25px 0 20px 0;
    font-size: 1.25rem;
    font-weight: bold;
}

/* ============ 段落樣式 ============ */
.bundle-91-92 .content-paragraph {
    text-align: justify;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    /* 12.0pt */
    color: #231f20;
    text-indent: 2em;
}

/* 首段不縮排 */
.bundle-91-92 .content-paragraph:first-of-type {
    text-indent: 0;
}

/* 首段縮排 */
.bundle-91-92 .content-paragraph.indent {
    text-indent: 2em;
}

/* ============ 粗體文字樣式 ============ */
.bundle-91-92 .fw-bold {
    font-weight: bold;
}

/* ============ Page 92 全圖片頁面樣式 ============ */
.bundle-91-92 .page-92.full-page-image {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.bundle-91-92 .page-92.full-page-image .content {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.bundle-91-92 .page-92.full-page-image figure {
    margin: 0;
    padding: 0;
}

.bundle-91-92 .page-92.full-page-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.bundle-91-92 .page-92.full-page-image figcaption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #806856;
}

/* ============ 頁碼樣式 ============ */
.bundle-91-92 .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-91-92 .page-number .page-text {
    color: #666;
}

.bundle-91-92 .page-number .page-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #6850a1;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

/* ============ RWD 響應式設計 ============ */

/* 平板尺寸 */
@media (max-width: 992px) {
    .bundle-91-92 .container {
        padding: 20px 60px;
    }

    .bundle-91-92 .section-title {
        font-size: 1.15rem;
    }
}

/* 手機尺寸 */

/* ============ 固定垂直標籤（Fixed Vertical Label）============ */
.bundle-91-92-active .fixed-vertical-label {
    position: fixed;
    top: 30px;
    left: 30px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background-color: #823D5B;
    color: white;
    padding: 10px 8px;
    font-size: 1rem;
    white-space: nowrap;
    border-radius: 5px;
    z-index: 1000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .bundle-91-92 .container {
        padding: 15px 30px;
    }

    .bundle-91-92 .section-title {
        font-size: 1.1rem;
    }

    .bundle-91-92 .content-paragraph {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .bundle-91-92 .page-92.full-page-image img {
        max-width: 100%;
    }

    /* 固定垂直標籤 RWD */
    .bundle-91-92-active .fixed-vertical-label {
        font-size: 11px;
        padding: 2px 0;
        left: 0;
        line-height: 1.2;
    }
}

/* 小手機尺寸 */
@media (max-width: 576px) {
    .bundle-91-92 .container {
        padding: 10px 20px;
    }

    .bundle-91-92 .section-title {
        font-size: 1rem;
    }

    .bundle-91-92 .content-paragraph {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}