/* style111-113.css - 漫畫專欄模組 */
/* 主容器 */
.bundle-111-113 .container {
    margin: auto;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #fff;
    position: relative;
}

.bundle-111-113 .card-container {
    width: 100%;
    background-color: #744056;
    /* 漫畫專欄顏色 */
    background-image: url('/bookweb/bimonthly/78/p111-113/cartoon_bk.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 25px 25px 0 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 漫畫標題 (頁面 111) */
.bundle-111-113 .title.page-111-title {
    text-align: center;
    color: #fff;
    margin: 10px 0 5px 0;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.3;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
}

/* 漫畫作者 (頁面 111) */
.bundle-111-113 .author.page-111-author {
    text-align: center;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    padding-bottom: 15px;
    border-radius: 0 0 10px 10px;
    border-top: none;
}

/* 內容樣式 */
.bundle-111-113 .content {
    margin-top: 0;
    padding: 0;
}

/* 漫畫面板/圖片 */
.bundle-111-113 .comic-panel {
    margin-bottom: 20px;
    text-align: center;
}

.bundle-111-113 .comic-panel img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    border: 1px solid #eee;
    border-radius: 4px;
}

/* 文字段落樣式 */
.bundle-111-113 .comic-panel p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
    color: #674c28;
    padding: 0 10px;
}

/* 頁碼 */
.bundle-111-113 .page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 8px 0;
    clear: both;
}

.bundle-111-113 .page-text {
    font-size: 0.9em;
    color: #555;
}

.bundle-111-113 .page-circle {
    background: #84BAA4;
    /* 漫畫專欄顏色 */
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* 清除浮動 */
.bundle-111-113 .container::after,
.bundle-111-113 .content::after {
    content: "";
    display: table;
    clear: both;
}

/* 固定垂直標籤 */
.bundle-111-113-active .fixed-vertical-label {
    position: fixed;
    top: 30px;
    left: 30px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background-color: #84BAA4;
    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-111-113 .container {
        padding: 15px 15px;
    }

    .bundle-111-113 .title.page-111-title {
        font-size: 1.8rem;
    }

    .bundle-111-113 .author.page-111-author {
        font-size: 0.9rem;
    }

    .bundle-111-113-active .fixed-vertical-label {
        font-size: 11px;
        padding: 2px 0;
        left: 0;
        line-height: 1.2;
    }

    .bundle-111-113 .page-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .bundle-111-113 .comic-panel p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bundle-111-113 .container {
        padding: 10px 15px;
    }

    .bundle-111-113 .title.page-111-title {
        font-size: 1.6rem;
    }

    .bundle-111-113 .comic-panel p {
        font-size: 0.9rem;
    }
}