

/* 首页最新文章：两列卡片网格 */
.news-section-home {
    padding: 60px 0;
    background: #f8fafc;
}

.news-title-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.news-title-home::before,
.news-title-home::after {
    content: "";
    width: 72px;
    height: 3px;
    background: var(--primary);
    border-radius: 4px;
}

.news-title-home h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2e3a;
    margin: 0;
    white-space: nowrap;
}

.news-list-home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
}

.news-item-home {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 20px 25px;
    color: #1f2e3a;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(17, 24, 28, 0.04);
    transition: var(--transition);
    min-width: 0;
}

.news-item-home:hover {
    border-color: #f0c4ad;
    color: var(--primary);
    box-shadow: 0 20px 36px -14px rgba(199, 88, 42, 0.22);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .news-title-home {
        gap: 12px;
        margin-bottom: 32px;
    }

    .news-title-home::before,
    .news-title-home::after {
        width: 36px;
    }

    .news-title-home h2 {
        font-size: 1.5rem;
    }

    .news-list-home {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-item-home {
        padding: 18px 20px;
        font-size: 0.98rem;
    }
}