/* News Page Specific Styles */

/* News Banner Adjustments */
.news-banner-content {
    text-align: left;
    left: 80px;
    transform: translateY(-50%);
}

.news-banner-content .banner-logo {
    margin-bottom: 10px;
}

.news-banner-content .banner-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
}

.news-banner-content .banner-logo .logo-au {
    color: #e63946;
}

.news-banner-content .banner-logo .logo-veo {
    color: #f4a81d;
}

.news-banner-content .banner-title-cn {
    font-size: 28px;
    margin-bottom: 5px;
}

.news-banner-content .banner-title-en {
    font-size: 32px;
    margin-bottom: 25px;
}

.banner-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4784a;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
}

.banner-learn-more:hover {
    background: #c56a3f;
    transform: translateX(5px);
}

/* News List Section */
.news-list-section {
    padding: 40px 0 60px;
    background: #fff;
}

.news-list-title {
    text-align: left;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
}

.news-list-title .highlight-red {
    color: #e63946;
    font-weight: 400;
}

.news-list-title .highlight-gold {
    color: #d4a843;
    font-weight: 400;
}

/* News List Item */
.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    cursor: pointer;
}

.news-list-item:first-of-type {
    padding-top: 0;
}

.news-list-thumb {
    flex: 0 0 280px;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
}

.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-list-item:hover .news-list-thumb img {
    transform: scale(1.05);
}

.news-list-info {
    flex: 1;
    padding-top: 10px;
}

.news-list-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.news-list-item:hover .news-list-item-title {
    color: #e63946;
}

.news-list-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.news-list-views {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 13px;
    padding-top: 10px;
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.news-pagination .page-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.news-pagination .page-btn.page-num {
    padding: 8px 14px;
    min-width: 36px;
}

.news-pagination .page-btn:hover {
    border-color: #b22234;
    color: #b22234;
}

.news-pagination .page-btn.active {
    background: #b22234;
    color: #fff;
    border-color: #b22234;
}

/* Active link in footer */
.footer .active-link {
    color: #f4a81d !important;
}

/* Responsive */
@media (max-width: 768px) {
    .news-banner-content {
        left: 20px;
        right: 20px;
    }
    
    .news-list-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-list-thumb {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .news-list-views {
        align-self: flex-end;
    }
}
