﻿.news-view-container {
    max-width: 960px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 32px;
}

.news-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.news-category-badge i {
    font-size: 16px;
}

.news-title {
    font-size: 32px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 16px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #8c8c8c;
}

.news-meta i {
    font-size: 16px;
    margin-right: 6px;
}

.news-content {
    font-size: 15px;
    color: #262626;
    line-height: 1.8;
    padding: 0 20px;
}

.news-content iframe {
    border: none;
    width: 100%;
    border-radius: 12px;
    background: #fff;
}

.news-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 24px;
    background: #fafafa;
    border-radius: 12px;
    margin-top: 40px;
}

.news-tags-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.news-tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

.news-navigation {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #f0f0f0;
}

.news-nav-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #262626;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.news-nav-btn:hover {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: #6366f1;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.news-nav-btn i {
    font-size: 24px;
}

.news-nav-btn.next {
    justify-content: flex-end;
    text-align: right;
}

.news-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f5f7fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    color: #262626;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.news-back-btn:hover {
    background: #e9ecef;
    color: #262626;
    text-decoration: none;
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .news-title {
        font-size: 24px;
    }
    
    .news-navigation {
        flex-direction: column;
    }
    
    .news-nav-btn {
        width: 100%;
    }
}
