.news-list {
    max-width: 1200px;
    margin: 2rem auto 0;
}

.news-item {
    display: grid;
    grid-template-columns: 140px 260px 1fr;
    align-items: center;
    text-align: left; /* 整行左对齐 */

    padding: 0.9rem 1.5rem;
    margin-bottom: 0.8rem;

    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);

    text-decoration: none;
    color: inherit;

    transition: background-color 0.2s, box-shadow 0.2s;
}

.news-date {
    font-size: 0.9rem;
    color: #999;
    font-family: monospace;
    text-align: left; /* 日期左对齐 */
}

.news-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left; /* 标题左对齐 */
}

.news-summary {
    font-size: 0.95rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left; /* 摘要左对齐 */
}

.news-item:hover {
    background-color: #f9f9f9;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}