/* Page 59 - 南無阿彌陀佛是我們的生命 - 獨立樣式文件 */
/* Google Fonts - Noto Serif TC for a more book-like feel */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;700&display=swap');

/* Page 59 特定樣式 - 使用 .page59 前綴避免樣式衝突 */

.bundle-54-60 .container.page-59 {
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page59 {
    font-family: 'Noto Serif TC', serif;
    box-sizing: border-box;
}

.page59 * {
    box-sizing: border-box;
}

.page59-background {
    position: relative;
    width: 100%;
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto;
    background-image: url('/bookweb/bimonthly/71/p54-60/59.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.page59-content-wrapper {
    position: relative;
    width: 58%;
    max-width: 500px;
    margin-right: 3rem;
}

.page59-main-text-box {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.page59-main-text-box p {
    font-size: 1em;
    line-height: 2;
    color: #000;
    /* 移除預設的段落下邊距，改由 <br> 控制間距 */
    margin: 0;
    text-align: left;
    /* 改為靠左對齊以符合詩句排版 */
}

/* 針對詩句段落增加下方間距，以創造段落感 */
.page59-main-text-box p:not(:last-child) {
    margin-bottom: 2em;
}

.page59-footer-info {
    position: absolute;
    bottom: 25px;
    right: 35px;
    color: white;
    font-size: 0.9em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page59 .page-number {
    color: white;
    float: right;
}

.page59 .page-circle {
    background-color: black;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .page59-background {
        padding: 20px;
        justify-content: center;
    }

    .page59-content-wrapper {
        width: 85%;
        margin-right: 0;
    }

    .page59-main-text-box p {
        font-size: 0.95em;
        line-height: 1.8;
    }

    .page59-footer-info {
        font-size: 0.8em;
        bottom: 20px;
        right: 20px;
    }
}