/* News Page Specific Styles */

/* Header adjustments for news page */
.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-fixed .logo,
.header-fixed .nav-menu a,
.header-fixed .icon-btn {
    color: var(--text-dark);
}

.header-fixed .logo .logo-img {
    height: 40px;
    filter: none;
}

.header-fixed .btn-signin {
    background: linear-gradient(135deg, #f5a623 0%, #f7b733 100%);
    color: var(--white);
}

/* News Hero Section */
.news-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    overflow: hidden;
}

.news-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/index/组 14.png') center center/cover;
    z-index: 0;
}

/* 已移除背景蒙版效果，使背景图更清晰 */

.news-hero-lotus {
    display: none;
}

.news-hero-section .container {
    position: relative;
    z-index: 2;
}

.news-hero-content {
    max-width: 800px;
    padding-left: 2rem;
    text-align: center;
    margin: 0 auto;
}

.news-hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.news-hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.news-hero-title .highlight {
    color: var(--primary-color);
}

.news-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* News List Section */
.news-list-section {
    padding: 80px 0;
    background: var(--white);
}

.news-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.news-list-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.news-list-image {
    width: 280px;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-list-item:hover .news-list-image img {
    transform: scale(1.05);
}

.news-list-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-list-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.author-avatar-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5f5f5;
}

.author-name-small {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.news-list-date {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.news-list-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.news-list-content p {
    color: #999;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-list-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.news-list-arrow:hover {
    color: #e69410;
    transform: translateY(-50%) translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-hero-section {
        min-height: 50vh;
        padding: 120px 0 80px;
    }
    
    .news-hero-content {
        padding-left: 0;
        text-align: center;
    }
    
    .news-hero-title {
        font-size: 2.5rem;
    }
    
    .news-hero-subtitle {
        font-size: 1rem;
    }
    
    .news-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .news-hero-lotus {
        display: none;
    }
    
    .news-list-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .news-list-image {
        width: 100%;
        height: 200px;
    }
    
    .news-list-content {
        padding: 1.5rem;
    }
    
    .news-list-arrow {
        position: static;
        margin-top: 1rem;
        align-self: flex-start;
    }
}

