/* 新闻区域样式 */
.news {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-title p {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.news-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 2px solid #FFEBB8;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary), #8BC34A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.news-content a {
    text-decoration: none;
}

.news-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 1.2rem;
    height: 60px;
    overflow: hidden;
}

.news-card p {
    color: #666;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
}

.news-stats {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.news-stat-item {
    display: flex;
    align-items: center;
}

.news-stat-item img {
    margin-right: 5px;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}