/* ===================================
   Page 60-61 樣式表
   淨土常識 - 淨土宗的法本儀軌
   參考 style57-59.css 的結構
   =================================== */

/* 固定垂直標籤 */
.bundle-60-61-active .fixed-vertical-label {
	position: fixed;
	top: 30px;
	left: 30px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	background-color: #6a5a4b;
	color: white;
	padding: 10px 8px;
	font-size: 1rem;
	white-space: nowrap;
	border-radius: 5px;
	z-index: 1000;
	font-weight: bold;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bundle-60-61 .page-60 .title {
	text-align: center;
	color: #FBA51D;
	margin-bottom: 10px;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.3;
}

/* 作者樣式 */
.bundle-60-61 .author {
	text-align: center;
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 15px;
	margin-top: -5px;
}

/* 分隔線樣式 */
.bundle-60-61 .dotted-line {
	height: 8px;
	width: 100%;
	margin: 25px 0;
	background-image: radial-gradient(circle, #6a5a4b 2px, transparent 2px);
	background-size: 8px 8px;
	background-position: center;
}

@media (max-width: 768px) {
	.bundle-60-61-active .fixed-vertical-label {
		font-size: 11px;
		padding: 2px 0px;
		left: 0px;
		line-height: 1.2;
	}
}

/* 主容器 */
.bundle-60-61 .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;
}

/* 內容樣式 */
.bundle-60-61 .content {
    max-width: 600px;
    margin: 0 auto;
}

/* Clearfix for floated elements */
.bundle-60-61 .content::after {
    content: "";
    display: table;
    clear: both;
}

/* 段落樣式 */
.bundle-60-61 .content-paragraph {
    text-indent: 2em;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* 粗體文字 */
.bundle-60-61 .fw-bold {
    font-weight: bold;
}

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

.bundle-60-61 .page-text {
    font-size: 14px;
    color: #FFF;
}

.bundle-60-61 .page-circle {
    background: #6a5a4b;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* 圖片樣式 */
.bundle-60-61 .page-figure {
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
}

.bundle-60-61 .page-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

.bundle-60-61 .top-image {
    margin-bottom: 20px;
}

/* 圖片標題 */
.bundle-60-61 .image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #806856;
    margin-top: 15px;
    margin-bottom: 15px;
    font-style: italic;
}

/* ===================================
   分享組件樣式
   注意：分享組件的樣式由全域 share.css 提供
   =================================== */

/* ===================================
   響應式設計 (RWD)
   =================================== */

/* 平板尺寸 (768px - 1024px) */
@media (max-width: 1024px) {
    .bundle-60-61 .container {
        padding: 20px 60px;
    }
}

/* 手機尺寸 (小於 768px) */
@media (max-width: 768px) {
    .bundle-60-61 .container {
        padding: 15px 30px;
        margin-bottom: 2rem;
    }

    .bundle-60-61 .content-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* 小手機尺寸 (小於 480px) */
@media (max-width: 480px) {
    .bundle-60-61 .container {
        padding: 15px 20px;
        margin-bottom: 1.5rem;
    }

    .bundle-60-61 .content-paragraph {
        font-size: 0.9rem;
        line-height: 1.6;
        text-indent: 1.5em;
        margin-bottom: 12px;
    }

    .bundle-60-61 .page-number {
        margin-top: 20px;
        gap: 6px;
    }

    .bundle-60-61 .page-text {
        font-size: 12px;
    }

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

