/* 新闻网格布局样式 - 左侧2条带图片，右侧2条纯文字 */

.news_grid_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news_grid_layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* 左侧带图片的新闻区域 */
.news_left_section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* 右侧纯文字新闻区域 */
.news_right_section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* 统一的新闻项目样式 */
.news_item {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); */
    display: flex;
    flex-direction: column;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
}

.news_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* 带图片的新闻项目 */
.news_item_featured {
    /* 继承基础样式 */
}

.news_item_featured .news_image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news_item_featured .news_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.news_item_featured:hover .news_image img {
    transform: scale(1.05);
}

.news_item_featured .news_content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 纯文字新闻项目 */
.news_item_text_only {
    /* 继承基础样式 */
}

.news_item_text_only .news_image {
    display: none !important;
}

.news_item_text_only .news_content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 新闻内容样式 */
.news_content {
    position: relative;
}

.news_date {
    font-size: 1.8rem;
    color: #888;
    font-weight: 400;
    margin-bottom: 0.8rem;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.news_content h3 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: #333;
}

.news_content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news_content h3 a:hover {
    color: #4285f4;
}

.news_excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.2rem;
    flex: 1;
}

.news_read_more_btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4285f4;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news_read_more_btn:hover {
    color: #1976d2;
    transform: translateX(2px);
}

/* 左侧新闻项目特殊样式 */
.news_left_section .news_content h3 {
    font-size: 1.5rem;
}

.news_left_section .news_excerpt {
    font-size: 1rem;
}

/* 右侧新闻项目特殊样式 */
.news_right_section .news_content h3 {
    font-size: 1.3rem;
}

.news_right_section .news_excerpt {
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .news_grid_layout {
        gap: 3rem;
    }
    
    .news_left_section {
        gap: 2.5rem;
    }
    
    .news_right_section {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .news_grid_layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news_left_section {
        gap: 2rem;
    }
    
    .news_right_section {
        gap: 1.5rem;
    }
    
    .news_item_featured .news_content,
    .news_item_text_only .news_content {
        padding: 1.5rem;
    }
    
    .news_content h3 {
        font-size: 1.3rem;
    }
    
    .news_left_section .news_content h3,
    .news_right_section .news_content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .news_grid_container {
        padding: 0 15px;
    }
    
    .news_item_featured .news_image {
        height: 200px;
    }
    
    .news_item_featured .news_content,
    .news_item_text_only .news_content {
        padding: 1.2rem;
    }
    
    .news_content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .news_excerpt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .news_date {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
}
