@charset "UTF-8";

/* ==========================================================================
   Page 59-62 Specific Styles
   ========================================================================== */

/* Container */
.bundle-59-62 .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;
}

/* Page Header Label (e.g., 淨土 │ 釋疑) */
.bundle-59-62 .page-header-label {
    text-align: center;
    color: #77654c;
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-family: "Adobe Ming Std", "MingLiU", serif;
}

/* Main Title */
.bundle-59-62 .title {
    text-align: center;
    color: #806856;
    margin-bottom: 30px;
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.4;
}

/* Content Area */
.bundle-59-62 .content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #231f20;
    text-align: justify;
}

/* Question Section */
.bundle-59-62 .question {
    margin-bottom: 15px;
    font-weight: bold;
    color: #e25b45;
    /* Reddish color for question text */
}

.bundle-59-62 .question-label {
    color: #e25b45;
    font-weight: bold;
    margin-right: 5px;
    font-family: "Adobe Ming Std", "MingLiU", serif;
    font-size: 1.2em;
}

/* Answer Section */
.bundle-59-62 .answer {
    margin-bottom: 15px;
}

.bundle-59-62 .answer-label {
    color: #231f20;
    font-weight: bold;
    margin-right: 5px;
    font-family: "Adobe Ming Std", "MingLiU", serif;
    font-size: 1.2em;
}

/* Paragraphs */
.bundle-59-62 .fw-bold {
    font-weight: bold;
    font-family: "DFKaiShuStd-W7", "BiauKai", "KaiTi", serif;
}

.bundle-59-62 .content-paragraph {
    text-indent: 2em;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #231f20;
}

.bundle-59-62 .content-paragraph.no-indent {
    text-indent: 0;
}

/* Images */
.bundle-59-62 .page-figure {
    margin: 20px 0;
    text-align: center;
}

.bundle-59-62 .page-figure img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.bundle-59-62 .image-caption {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #806856;
    text-align: center;
    font-family: "DFHeiStd-W3", sans-serif;
}

/* Page 61 Specific - Floating Image logic if needed, but RWD usually stacks */
.bundle-59-62 .page-61 .float-image {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    max-width: 40%;
}

/* Page Number */
.bundle-59-62 .page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 8px 0;
}

.bundle-59-62 .page-text {
    font-size: 14px;
    color: #666;
}

.bundle-59-62 .page-circle {
    background: #806856;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bundle-59-62 .container {
        padding: 20px 60px;
    }
}

@media (max-width: 768px) {
    .bundle-59-62 .container {
        padding: 20px 30px;
    }

    .bundle-59-62 .title {
        font-size: 1.8rem;
    }

    .bundle-59-62 .page-61 .float-image {
        float: none;
        display: block;
        margin: 10px auto;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .bundle-59-62 .container {
        padding: 15px 20px;
    }

    .bundle-59-62 .title {
        font-size: 1.5rem;
    }

    .bundle-59-62 .content-paragraph {
        font-size: 1rem;
        text-align: left;
    }

    .bundle-59-62 .page-number {
        margin-top: 20px;
        gap: 6px;
    }

    .bundle-59-62 .page-text {
        font-size: 12px;
    }

    .bundle-59-62 .page-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}