/* ========================================================
    內容頁專屬排版邏輯
======================================================== */
.page-content {
    max-width: 720px;
}

/* YouTube 影片樣式 */
iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"] {
    /* 基本樣式 */
    width: 100% !important;
    max-width: 680px;
    height: auto !important;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 2rem auto !important;
    /* 強制在任何情況下都水平居中 */

    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 針對原生 blockquote 進行優化 - 青色主題版 */
blockquote {
    /* 核心保險：確保 100% 寬度包含內距，不會撐破版面 */
    box-sizing: border-box;
    width: 100%;

    /* 字體與間距設定 */
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem 0;
    padding: 0.8rem 1.2rem;

    word-wrap: break-word;
    /* 舊版瀏覽器相容 */
    overflow-wrap: break-word;
    /* 現代標準：遇到太長的字會自動折行 */
    word-break: break-all;
    /* 強制斷行，連網址都會乖乖在邊界換行 */

    background-color: #f0fbfc;
    /* 非常淡的青色背景 */
    border-left: 5px solid #00b7c4;
    /* 主色調，文字色調 */
    color: #444;
    /* 稍微加深字體顏色提高對比 */

    /* 加入柔和圓角與細微陰影 */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 183, 196, 0.08);
}

/* 電腦端：螢幕夠大時稍微增加字體和呼吸空間 */
@media (min-width: 768px) {
    blockquote {
        font-size: 1.1rem;
        padding: 1.5rem 2rem;
        margin: 2rem 0;
    }
}

/* 內部段落間距微調 */
blockquote p {
    margin-bottom: 0.8rem !important;
}

blockquote> :last-child {
    margin-bottom: 0 !important;
}

/* 引用來源樣式 */
blockquote footer,
.blockquote-footer {
    display: block;
    color: #0097a3;
    /* 使用稍微深一點的青色 */
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 1rem;
}

blockquote footer:before,
.blockquote-footer:before {
    content: "— ";
}

/* ========================================================
    密碼鎖定頁面專用樣式
======================================================== */
.password-lock-container {
    display: flex;
    justify-content: center;
    align-items: center;

    color: #999;
    margin-top: 15px;
}

.password-lock-card {
    width: 100%;
    max-width: 400px;
    padding: 25px 10px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 12px 30px rgba(0, 183, 196, 0.15);
    text-align: center;
}


.password-lock-title {
    color: #00b7c4;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}