/* Page 5 樣式 - 專刊序 */

.bundle-5-10 #page-5.container {
    padding: 20px 0px 20px 0px !important;

}

/* Container - 依照 PDF 尺寸 538.58 x 737.01 建立比例 */
.page-5 .page-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* 以 PDF 原始寬度為基準 */
    aspect-ratio: 538.58 / 737.01;
    margin: 0 auto;
    overflow: hidden;
    font-family: "Microsoft JhengHei", "Heiti TC", sans-serif !important;
    /* 強制微軟正黑體 */
    color: #FFFFFF;
    /* 文字全白 */
    background-color: #823D5B;
    /* 深色底備案 */
    border-radius: 0 50px 50px 0;
}

.bundle-5-10 #page-5 .content {
    max-width: 800px !important;
    ;
}

/* 背景圖片 - 佔據下方 50% */
.page-5 .page-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    object-fit: cover;
    z-index: 99;
}

.page-5 .page-bg,
.page-5 .img-loading,
.page-5 .img-loaded {
    z-index: 99;
}

/* 內容層 - 覆蓋在圖片上 */
.page-5 .content-layer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* ----------- 左側區域 (橫書) ----------- */
.page-5 .left-section {
    position: absolute;
    top: 8%;
    left: 14%;
    width: 40%;
    border-left: 1px white solid;
    padding-left: 2em;
    padding-bottom: 10rem;
}

.page-5 .decorative-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(18px, 3vw, 22px);
    line-height: 1.4;
    margin-bottom: 3.5rem;
}

.page-5 .quote-block {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(16px, 3vw, 18px);
    line-height: 4;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 6em;
}

/* ----------- 右側區域 (直書) ----------- */
.page-5 .right-section {
    position: absolute;
    top: 8%;
    /* PDF Y: ~85pt */
    right: 15%;
    /* PDF X: ~453pt */
    height: 85%;
    writing-mode: vertical-rl;
    /* text-orientation: upright;  removed to let punctuation rotate correctly */
    display: flex;
    flex-direction: column;
    /* R->L Flow in Vertical Mode */
    align-items: flex-start;
    gap: 1.5rem;
}

.page-5 .main-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(48px, 12vw, 64px);
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
}

.page-5 .sub-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(16px, 5vw, 22px);
    font-weight: 500;
}

.page-5 .dash {
    letter-spacing: -0.15em;
}

.page-5 .dash-text {
    letter-spacing: 0.15em;
}

@media screen and (max-width: 640px) {
    .page-5 .quote-block {
        line-height: 4;
        margin-top: 4em;
    }

    .page-5 .decorative-text {
        margin-bottom: 1.5em;
    }

    /* 調整左右區域位置，爭取上方空間 */
    .page-5 .left-section,
    .page-5 .right-section {
        top: 6%;
    }

    /* 縮小右側直書的間距 */
    .page-5 .right-section {
        gap: 0.5rem;
    }

    .page-5 .sub-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 510px) {
    .page-5 .quote-block {
        line-height: 3.5;
        margin-top: 3.5em;
    }

    .page-5 .decorative-text {
        margin-bottom: 1.2em;
    }

    .page-5 .sub-title {
        font-size: 16px;
    }

    .page-5 .left-section {
        position: absolute;
        left: 10%;
        width: 45%;
    }
}

@media screen and (max-width: 460px) {
    .page-5 .quote-block {
        line-height: 3.5;
        margin-top: 3.5em;
    }

    .page-5 .sub-title {
        font-size: 15px;
    }

    .page-5 .left-section {
        width: 50%;
    }

    .page-5 .quote-block {
        font-size: clamp(14px, 3vw, 16px);
    }
}

/* 針對極小螢幕的進一步壓縮，確保不與圖片重疊 */
@media screen and (max-width: 400px) {
    .page-5 .quote-block {
        line-height: 3.5;
        margin-top: 1em;
    }

    .page-5 .left-section {
        width: 56%;
    }

    .page-5 .decorative-text {
        margin-bottom: 1rem;
    }

    .page-5 .sub-title {
        font-size: 14px;
    }

    .page-5 .right-section {
        right: 10%;
    }

    .page-5 .main-title {
        font-size: clamp(26px, 12vw, 64px);
    }
}