/* ========================================
   尧图网站开发 - 新闻列表页样式
   ======================================== */

/* 页面头部 */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--color-black) 100%);
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--color-light-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* 新闻列表 */
.news-list-section {
    background: var(--color-black);
}

.news-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-list-item {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    background: var(--color-dark-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.news-list-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(10px);
}

.news-list-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-list-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.news-list-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-list-date {
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 600;
}

.news-list-category {
    color: var(--color-light-gray);
    font-size: 13px;
    padding: 4px 12px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 4px;
}

.news-list-title {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-list-title a:hover {
    color: var(--color-orange);
}

.news-list-excerpt {
    color: var(--color-light-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
    width: fit-content;
}

.read-more-btn:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .news-list-item {
        grid-template-columns: 1fr;
    }
    
    .news-list-item:hover {
        transform: translateY(-5px);
    }
}
