/* 新闻资讯页面样式 */
.page-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8b1528 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--pure-white);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.news-list-section {
    background: var(--light-gray);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-item {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-item-img {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-item-img img {
    transform: scale(1.1);
}

.news-item-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-item-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-item-meta {
    font-size: 14px;
    color: var(--text-light);
}

.news-item-meta .date {
    background: var(--primary-red);
    color: var(--pure-white);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .news-list {
        grid-template-columns: 1fr;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-item-img {
        width: 100%;
        height: 200px;
    }
}
