/**
 * 第77期 page164-166 樣式
 * 生成時間：2025-12-27 12:30:00
 * 功能描述：第77期雙月刊 page164-166 頁面樣式
 */

/* ============================================================
   1. 通用樣式（Page 164-166）
   ============================================================ */

.bundle-164-166 .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-164-166 .sub-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #6850A1;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.6;
    text-indent: 0;
}

.bundle-164-166 .content p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 0;
    color: #231F20;
    text-indent: 2em;
}

.bundle-164-166 .fw-bold {
    font-weight: bold;
}

/* ============================================================
   2. Page 165 專屬樣式 - 純圖片頁
   ============================================================ */

.bundle-164-166 .page-165 .content figure {
    max-width: 600px;
    margin: 0 auto 1rem;
    text-align: center;
}

.bundle-164-166 .page-165 .content figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Page 166 圖片 */
.bundle-164-166 .page-166 .content figure {
    max-width: 300px;
    margin: 1rem auto;
    text-align: center;
}

.bundle-164-166 .page-166 .content figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* ============================================================
   3. 頁碼樣式
   ============================================================ */

.bundle-164-166 .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-164-166 .page-number .page-text {
    color: #666;
}

.bundle-164-166 .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;
}

/* ============================================================
   4. RWD 響應式設計
   ============================================================ */

@media (max-width: 992px) {
    .bundle-164-166 .container {
        padding: 20px 60px;
    }
}


/* ============ 固定垂直標籤（Fixed Vertical Label）============ */
.bundle-164-166-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-164-166 .container {
        padding: 15px 30px;
    }

    .bundle-164-166 .sub-title {
        font-size: 1rem;
    }

    /* 固定垂直標籤 RWD */
    .bundle-164-166-active .fixed-vertical-label {
        font-size: 11px;
        padding: 2px 0;
        left: 0;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .bundle-164-166 .container {
        padding: 10px 20px;
    }

    .bundle-164-166 .content p {
        font-size: 0.9rem;
    }
}