/* CLS 優化樣式 */
/* 文章內容圖片已由後端自動處理 width/height，此處移除相關樣式 */

/* 文章封面圖片優化 */
.article-cover-m img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 500px;
    background-color: #f8f9fa;
    transition: opacity 0.3s ease;
    object-fit: cover; /* 封面圖片使用 cover 模式 */
}

/* 響應式圖片尺寸 */
@media (max-width: 768px) {
    .article-cover-m img {
        min-height: 200px;
    }
}

/* 優化 iframe 載入 */
.article-mainContainer .mainContentBox .article-content iframe {
    width: 100% !important;
    min-height: 26vw;
    background-color: #f8f9fa;
    border: none;
    transition: opacity 0.3s ease;
}

/* 防止廣告區塊造成 CLS */
.article-content-adbox {
    min-height: 250px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

/* 作者相關文章圖片優化 */
.author-article-list .mainListBox .item .imgBox img {
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: 200px;
    background-color: #f8f9fa;
    transition: opacity 0.3s ease;
    object-fit: cover;
}

/* 系統公告圖片優化 */
.systemBox .imgBox img {
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: 250px;
    background-color: #f8f9fa;
    transition: opacity 0.3s ease;
    object-fit: cover;
}

 