/* section */
/* Page-specific styles */
        .cxj-nav {
            background-color: #fff;
            border-bottom: 1px solid var(--cxj-border);
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: var(--shadow-xs);
        }
        .cxj-nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-6);
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cxj-logo {
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }
        .cxj-logo-mark {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--cxj-primary), var(--color-primary-500));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: var(--text-sm);
            letter-spacing: -0.02em;
            box-shadow: 0 4px 12px -2px rgb(10 77 162 / 0.30);
        }
        .cxj-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .cxj-logo-text span:first-child {
            font-weight: 800;
            font-size: var(--text-lg);
            color: var(--cxj-foreground);
            letter-spacing: -0.01em;
        }
        .cxj-logo-text span:last-child {
            font-size: var(--text-xs);
            color: var(--cxj-muted-foreground);
        }
        .cxj-nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-1);
        }
        .cxj-nav-link {
            padding: var(--space-2) var(--space-4);
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--cxj-muted-foreground);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .cxj-nav-link:hover {
            color: var(--cxj-primary);
            background-color: var(--color-primary-50);
        }
        .cxj-nav-link.active {
            color: var(--cxj-primary);
            background-color: var(--color-primary-50);
            font-weight: 600;
        }
        .cxj-nav-cta {
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }
        .cxj-mobile-toggle {
            display: none;
            padding: var(--space-2);
            border-radius: var(--radius-md);
            color: var(--cxj-muted-foreground);
            background: none;
            border: none;
            cursor: pointer;
        }
        .cxj-mobile-menu {
            display: none;
            border-top: 1px solid var(--cxj-border);
            background: #fff;
            padding: var(--space-4) var(--space-6);
        }
        .cxj-mobile-menu a {
            display: block;
            padding: var(--space-3) var(--space-4);
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--cxj-muted-foreground);
            border-radius: var(--radius-md);
            margin-bottom: var(--space-1);
        }
        .cxj-mobile-menu a.active {
            color: var(--cxj-primary);
            background-color: var(--color-primary-50);
        }
        @media (max-width: 1024px) {
            .cxj-nav-links, .cxj-nav-cta .btn {
                display: none;
            }
            .cxj-mobile-toggle {
                display: block;
            }
        }

        /* Hero Banner */
        .cxj-page-hero {
            background: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-700) 50%, var(--color-primary-800) 100%);
            color: #fff;
            padding: var(--space-24) 0 var(--space-20);
            position: relative;
            overflow: hidden;
        }
        .cxj-page-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('../../assets/bg/bg-pattern-tech.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        .cxj-page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(230, 0, 18, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        .cxj-page-hero > * {
            position: relative;
            z-index: 1;
        }

        .cxj-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .cxj-hero-content h1 {
            color: #fff;
            font-size: var(--text-5xl);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-4);
        }
        .cxj-hero-content p {
            color: rgba(255,255,255,0.8);
            font-size: var(--text-lg);
            margin-bottom: var(--space-6);
        }
        .cxj-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            font-size: var(--text-sm);
            color: rgba(255,255,255,0.7);
        }
        .cxj-breadcrumb a { color: rgba(255,255,255,0.7); }
        .cxj-breadcrumb a:hover { color: #fff; }
        .cxj-breadcrumb .separator { opacity: 0.5; }
        .cxj-breadcrumb .current { color: #fff; font-weight: 500; }

        /* News Tabs */
        .cxj-news-tabs-section {
            background: #fff;
            border-bottom: 1px solid var(--cxj-border);
            position: sticky;
            top: 72px;
            z-index: 40;
            box-shadow: var(--shadow-xs);
        }
        .cxj-news-tabs {
            display: flex;
            align-items: center;
            gap: var(--space-8);
            position: relative;
            padding: 0 var(--space-6);
            max-width: 1280px;
            margin: 0 auto;
        }
        .cxj-news-tab {
            padding: var(--space-5) 0;
            font-size: var(--text-base);
            font-weight: 500;
            color: var(--cxj-muted-foreground);
            cursor: pointer;
            transition: color var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }
        .cxj-news-tab:hover {
            color: var(--cxj-primary);
        }
        .cxj-news-tab.active {
            color: var(--cxj-primary);
            font-weight: 600;
        }
        .cxj-news-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cxj-primary), var(--color-primary-400));
            border-radius: 3px 3px 0 0;
        }
        @media (max-width: 768px) {
            .cxj-news-tabs {
                gap: var(--space-6);
                overflow-x: auto;
                scrollbar-width: none;
            }
            .cxj-news-tabs::-webkit-scrollbar { display: none; }
        }

        /* News Main Content */
        .cxj-news-main {
            padding: var(--space-16) 0 var(--space-24);
        }
        .cxj-news-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: var(--space-10);
            align-items: start;
        }
        @media (max-width: 1024px) {
            .cxj-news-layout {
                grid-template-columns: 1fr;
            }
        }

        /* News List */
        .cxj-news-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-6);
        }
        .cxj-news-item {
            background: #fff;
            border: 1px solid var(--cxj-border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: all var(--transition-base);
            display: flex;
            position: relative;
            border-left: 3px solid transparent;
        }
        .cxj-news-item:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary-200);
            border-left-color: var(--cxj-primary);
        }
        .cxj-news-thumb {
            width: 300px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            min-height: 200px;
        }
        .cxj-news-thumb-bg {
            width: 100%;
            height: 100%;
            transition: transform var(--transition-slow);
        }
        .cxj-news-thumb-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cxj-news-item:hover .cxj-news-thumb-bg {
            transform: scale(1.05);
        }
        .cxj-news-thumb-icon {
            width: 100%;
            height: 100%;
        }
        .cxj-news-thumb-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .cxj-news-content {
            padding: var(--space-6);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .cxj-news-meta {
            display: flex;
            align-items: center;
            gap: var(--space-4);
            margin-bottom: var(--space-3);
        }
        .cxj-news-category {
            padding: var(--space-1) var(--space-3);
            font-size: var(--text-xs);
            font-weight: 600;
            border-radius: var(--radius-full);
            background-color: var(--color-primary-50);
            color: var(--cxj-primary);
        }
        .cxj-news-date {
            font-size: var(--text-sm);
            color: var(--cxj-muted-foreground);
            display: flex;
            align-items: center;
            gap: var(--space-2);
        }
        .cxj-news-title {
            font-size: var(--text-xl);
            font-weight: 700;
            color: var(--cxj-foreground);
            margin-bottom: var(--space-3);
            letter-spacing: -0.01em;
            line-height: 1.4;
            transition: color var(--transition-fast);
            cursor: pointer;
        }
        .cxj-news-title:hover {
            color: var(--cxj-primary);
        }
        .cxj-news-excerpt {
            font-size: var(--text-sm);
            color: var(--cxj-muted-foreground);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: var(--space-4);
        }
        .cxj-news-readmore {
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--cxj-primary);
            display: inline-flex;
            align-items: center;
            gap: var(--space-1);
            transition: gap var(--transition-fast);
            align-self: flex-start;
        }
        .cxj-news-readmore:hover {
            gap: var(--space-2);
        }
        @media (max-width: 640px) {
            .cxj-news-item {
                flex-direction: column;
            }
            .cxj-news-thumb {
                width: 100%;
                height: 220px;
                min-height: auto;
            }
        }

        /* Sidebar */
        .cxj-sidebar {
            position: sticky;
            top: 140px;
            display: flex;
            flex-direction: column;
            gap: var(--space-6);
        }
        .cxj-sidebar-card {
            background: #fff;
            border: 1px solid var(--cxj-border);
            border-radius: var(--radius-xl);
            padding: var(--space-6);
            overflow: hidden;
            position: relative;
        }
        .cxj-sidebar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--cxj-primary), var(--color-primary-400));
            opacity: 0;
            transition: opacity var(--transition-base);
        }
        .cxj-sidebar-card:hover::before {
            opacity: 1;
        }
        .cxj-sidebar-title {
            font-size: var(--text-lg);
            font-weight: 700;
            color: var(--cxj-foreground);
            margin-bottom: var(--space-5);
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }
        .cxj-sidebar-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(180deg, var(--cxj-primary), var(--color-primary-400));
            border-radius: 2px;
        }

        /* Search */
        .cxj-search-box {
            position: relative;
        }
        .cxj-search-input {
            width: 100%;
            padding: var(--space-3) var(--space-4) var(--space-3) 44px;
            font-size: var(--text-sm);
            border: 1px solid var(--cxj-border);
            border-radius: var(--radius-lg);
            background: var(--color-gray-50);
            color: var(--cxj-foreground);
            transition: all var(--transition-fast);
            font-family: var(--font-sans);
        }
        .cxj-search-input:focus {
            outline: none;
            border-color: var(--cxj-primary);
            background: #fff;
            box-shadow: 0 0 0 3px rgb(10 77 162 / 0.10);
        }
        .cxj-search-icon {
            position: absolute;
            left: var(--space-4);
            top: 50%;
            transform: translateY(-50%);
            color: var(--cxj-muted-foreground);
            pointer-events: none;
        }

        /* Hot News */
        .cxj-hot-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cxj-hot-item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-3);
            padding: var(--space-3) 0;
            border-bottom: 1px solid var(--cxj-border);
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .cxj-hot-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .cxj-hot-item:first-child {
            padding-top: 0;
        }
        .cxj-hot-item:hover .cxj-hot-title {
            color: var(--cxj-primary);
        }
        .cxj-hot-rank {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-xs);
            font-weight: 700;
            background-color: var(--color-gray-200);
            color: var(--color-gray-600);
        }
        .cxj-hot-item:nth-child(1) .cxj-hot-rank,
        .cxj-hot-item:nth-child(2) .cxj-hot-rank,
        .cxj-hot-item:nth-child(3) .cxj-hot-rank {
            background: linear-gradient(135deg, var(--cxj-accent), var(--color-accent-500));
            color: #fff;
        }
        .cxj-hot-title {
            font-size: var(--text-sm);
            color: var(--cxj-foreground);
            line-height: 1.5;
            transition: color var(--transition-fast);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Latest News */
        .cxj-latest-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cxj-latest-item {
            padding: var(--space-3) 0;
            border-bottom: 1px dashed var(--cxj-border);
            cursor: pointer;
        }
        .cxj-latest-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .cxj-latest-item:first-child {
            padding-top: 0;
        }
        .cxj-latest-title {
            font-size: var(--text-sm);
            color: var(--cxj-foreground);
            line-height: 1.5;
            margin-bottom: var(--space-2);
            transition: color var(--transition-fast);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .cxj-latest-item:hover .cxj-latest-title {
            color: var(--cxj-primary);
        }
        .cxj-latest-date {
            font-size: var(--text-xs);
            color: var(--cxj-muted-foreground);
        }

        /* Subscribe */
        .cxj-subscribe {
            background: linear-gradient(135deg, var(--cxj-primary), var(--color-primary-600));
            color: #fff;
        }
        .cxj-subscribe .cxj-sidebar-title {
            color: #fff;
        }
        .cxj-subscribe .cxj-sidebar-title::before {
            background: linear-gradient(180deg, #fff, var(--color-primary-200));
        }
        .cxj-subscribe p {
            font-size: var(--text-sm);
            color: rgba(255,255,255,0.8);
            margin-bottom: var(--space-4);
            line-height: 1.6;
        }
        .cxj-subscribe-input {
            width: 100%;
            padding: var(--space-3) var(--space-4);
            font-size: var(--text-sm);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,0.1);
            color: #fff;
            margin-bottom: var(--space-3);
            font-family: var(--font-sans);
        }
        .cxj-subscribe-input::placeholder {
            color: rgba(255,255,255,0.5);
        }
        .cxj-subscribe-input:focus {
            outline: none;
            border-color: rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.15);
        }
        .cxj-subscribe-btn {
            width: 100%;
            padding: var(--space-3);
            font-size: var(--text-sm);
            font-weight: 600;
            border: none;
            border-radius: var(--radius-lg);
            background: #fff;
            color: var(--cxj-primary);
            cursor: pointer;
            transition: all var(--transition-base);
            font-family: var(--font-sans);
            position: relative;
            overflow: hidden;
        }
        .cxj-subscribe-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(10,77,162,0.1), transparent);
            transition: left var(--transition-slow);
        }
        .cxj-subscribe-btn:hover::before {
            left: 100%;
        }
        .cxj-subscribe-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px -2px rgba(0,0,0,0.2);
        }
        .cxj-subscribe-btn:disabled {
            opacity: 0.7;
            cursor: default;
            transform: none;
            box-shadow: none;
        }
        .cxj-subscribe-msg {
            margin-top: var(--space-2);
            font-size: var(--text-xs);
            line-height: 1.5;
            min-height: 1em;
            display: none;
        }
        .cxj-subscribe-msg.ok {
            color: #d8f5e0;
            display: block;
        }
        .cxj-subscribe-msg.err {
            color: #ffe3e3;
            display: block;
        }

        /* Pagination */
        .cxj-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--space-2);
            margin-top: var(--space-12);
        }
        .cxj-page-btn {
            min-width: 40px;
            height: 40px;
            padding: 0 var(--space-3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--cxj-muted-foreground);
            background: #fff;
            border: 1px solid var(--cxj-border);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition-fast);
            font-family: var(--font-sans);
        }
        .cxj-page-btn:hover {
            color: var(--cxj-primary);
            border-color: var(--cxj-primary);
            background: var(--color-primary-50);
        }
        .cxj-page-btn.active {
            background: linear-gradient(135deg, var(--cxj-primary), var(--color-primary-500));
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 12px -2px rgb(10 77 162 / 0.30);
        }
        .cxj-page-dots {
            color: var(--cxj-muted-foreground);
            padding: 0 var(--space-2);
        }

        /* CTA Section */
        .cxj-cta-section {
            background: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-700) 100%);
            padding: var(--space-20) 0;
            position: relative;
            overflow: hidden;
        }
        .cxj-cta-section::before {
            content: '';
            position: absolute;
            top: -100%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
            border-radius: 50%;
        }
        .cxj-cta-inner {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .cxj-cta-inner h2 {
            color: #fff;
            font-size: var(--text-4xl);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-4);
        }
        .cxj-cta-inner p {
            color: rgba(255,255,255,0.75);
            font-size: var(--text-lg);
            max-width: 600px;
            margin: 0 auto var(--space-8);
        }

        /* Footer */
        .cxj-footer {
            background-color: var(--color-gray-900);
            color: #fff;
            padding: var(--space-20) 0 var(--space-8);
        }
        .cxj-footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: var(--space-12);
            margin-bottom: var(--space-12);
        }
        .cxj-footer-brand p {
            color: var(--color-gray-400);
            font-size: var(--text-sm);
            line-height: 1.7;
            margin: var(--space-5) 0;
        }
        .cxj-footer-social {
            display: flex;
            gap: var(--space-3);
        }
        .cxj-footer-social a {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gray-400);
            transition: all var(--transition-fast);
            font-size: var(--text-sm);
        }
        .cxj-footer-social a:hover {
            background: var(--cxj-primary);
            color: #fff;
        }
        .cxj-footer-col h4 {
            color: #fff;
            font-size: var(--text-base);
            font-weight: 600;
            margin-bottom: var(--space-5);
        }
        .cxj-footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cxj-footer-col li {
            margin-bottom: var(--space-3);
        }
        .cxj-footer-col a {
            color: var(--color-gray-400);
            font-size: var(--text-sm);
            transition: color var(--transition-fast);
        }
        .cxj-footer-col a:hover {
            color: #fff;
        }
        .cxj-footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-3);
            color: var(--color-gray-400);
            font-size: var(--text-sm);
        }
        .cxj-footer-contact li span:first-child {
            color: var(--color-primary-400);
            flex-shrink: 0;
            width: 18px;
            text-align: center;
        }
        .cxj-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: var(--space-8);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-4);
        }
        .cxj-footer-bottom p {
            color: var(--color-gray-500);
            font-size: var(--text-sm);
        }
        .cxj-footer-links {
            display: flex;
            gap: var(--space-6);
        }
        .cxj-footer-links a {
            color: var(--color-gray-500);
            font-size: var(--text-sm);
            transition: color var(--transition-fast);
        }
        .cxj-footer-links a:hover {
            color: #fff;
        }
        @media (max-width: 1024px) {
            .cxj-footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .cxj-footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-8);
            }
        }

        /* News thumb gradients */
        .grad-news-blue { background: linear-gradient(135deg, #0A4DA2 0%, #2563eb 100%); }
        .grad-news-purple { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); }
        .grad-news-cyan { background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%); }
        .grad-news-green { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
        .grad-news-amber { background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%); }
        .grad-news-rose { background: linear-gradient(135deg, #dc2626 0%, #f43f5e 100%); }
