/* ============================
   首頁 - 最新消息美化
============================ */

.home-news-section {
    padding: 10px 0 25px;
}

.home-news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-news-card {
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.2s ease;
}

.home-news-card:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

/* 日期 */
.home-news-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
}

/* 標題 */
.home-news-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* 摘要 */
.home-news-summary {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* RWD */
@media(max-width: 768px){
    .home-news-title {
        font-size: 16px;
    }
}
