/* BCT 最新消息 v1.8：日期＋標題＋摘要列表 */

/* 列表頁 */
.news-focus-list {
    width: 100%;
    margin: 0;
    padding: 0;
}
.news-focus-item {
    position: relative;
    margin: 0;
    padding: 0;
}
.news-focus-item::after {
    content: "";
    display: block;
    height: 1px;
    margin: 0 5px;
    background: linear-gradient(
        to right,
        rgba(90, 90, 90, 0),
        rgba(110, 110, 110, .72) 15%,
        rgba(110, 110, 110, .72) 85%,
        rgba(90, 90, 90, 0)
    );
    box-shadow: 0 7px 11px rgba(0, 0, 0, .45);
}
.news-focus-link {
    display: block;
    box-sizing: border-box;
    padding: 18px 10px 20px;
    color: inherit;
    text-decoration: none;
    transition: background-color .18s ease, transform .18s ease;
}
.news-focus-link:hover {
    background: rgba(255, 255, 255, .035);
}
.news-focus-heading {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 7px;
    line-height: 1.55;
}
.news-focus-date {
    color: #8db5dd;
    font-size: 14px;
    white-space: nowrap;
}
.news-focus-separator {
    color: #777;
}
.news-focus-topic {
    color: #c6e536;
    font-size: 15px;
    font-weight: bold;
}
.news-focus-link:hover .news-focus-topic {
    color: #fff;
}
.news-focus-excerpt {
    margin: 0;
    color: #aaa;
    font-size: 12px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

/* 單篇內容 */
.news-detail h2 {
    margin: 0 0 8px;
    color: #ffd900;
    line-height: 1.5;
}
.news-date {
    margin: 0 0 18px;
    color: #999;
    font-size: 12px;
}
.news-detail-content {
    width: 100%;
    overflow: hidden;
    line-height: 1.8;
}
.news-detail-content .news-content-image,
.news-detail-content img {
    display: block;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto 14px;
}
.news-detail-content iframe,
.news-detail-content video {
    max-width: 100%;
}
.news-related,
.news-back {
    margin-top: 18px;
    text-align: right;
}
.news-back a,
.news-related a {
    color: #b7d92b;
}
.news-content-empty {
    box-sizing: border-box;
    width: 100%;
    padding: 25px 15px;
    border: 1px dashed #555;
    color: #aaa;
    text-align: center;
}

@media (max-width: 720px) {
    .news-focus-link {
        padding: 15px 6px 17px;
    }
    .news-focus-heading {
        display: block;
    }
    .news-focus-separator {
        margin: 0 4px;
    }
    .news-focus-excerpt {
        margin-top: 5px;
    }
}
