/* ============================
   最新消息 - 卡片式樣式
============================ */

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

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

.result-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;
    display: block;
}

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

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

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

/* 摘要 */
.result-preview {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

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

/* ============================
   分頁按鈕
============================ */
.pagination-box a,
.pagination-box span {
    min-width: 42px;
    text-align: center;
}