﻿:root { --primary: rgb(24,119,242); --primary-dark: #125bb8; --primary-light: rgba(24,119,242,0.08); --accent: #F5A623; --text-main: #2C3E50; --text-muted: #64748B; --bg-body: #F8FAFC; --bg-white: #FFFFFF; --border-color: #E2E8F0; --shadow-sm: 0 2px 4px rgba(0,0,0,0.05); --shadow-md: 0 10px 20px rgba(0,0,0,0.08); --radius: 12px; --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; } a { text-decoration: none; color: inherit; transition: var(--transition); } ul { list-style: none; } img { max-width: 100%; display: block; } .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer; transition: var(--transition); } .btn-outline { border: 1px solid var(--primary); color: var(--primary); }
        
        .header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; height: 72px; display: flex; align-items: center; } .header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; } .logo { display: inline-flex; align-items: center; gap: 12px; } .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; } .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; } .desktop-nav { display: flex; gap: 32px; } .desktop-nav a { font-size: 15px; font-weight: 500; padding: 8px 0; position: relative; } .desktop-nav a:hover { color: var(--primary); } .header-action { display: flex; align-items: center; gap: 16px; } .mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; } .mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); }
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; } .drawer-overlay.active { opacity: 1; visibility: visible; } .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-white); z-index: 1000; transition: var(--transition); box-shadow: var(--shadow-md); display: flex; flex-direction: column; } .mobile-drawer.active { left: 0; } .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; } .close-drawer { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-muted); } .drawer-nav { padding: 20px; overflow-y: auto; flex-grow: 1; } .drawer-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--border-color); font-size: 16px; font-weight: 500; }
        
        .page-banner { background: linear-gradient(rgba(10,25,47,0.8), rgba(10,25,47,0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1920&q=80') center/cover; color: #fff; padding: 60px 0; text-align: center; }
        .page-banner h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 14px; opacity: 0.8; }
        .breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
        
        .list-container { padding: 60px 0; display: grid; grid-template-columns: 3fr 1fr; gap: 40px; }
        .grid-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .article-card { background: var(--bg-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
        .article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .article-img { display: block; height: 220px; position: relative; overflow: hidden; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .article-card:hover .article-img img { transform: scale(1.05); }
        .article-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
        .article-tags { margin-bottom: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
        .article-tags span { font-size: 12px; color: var(--primary); background: var(--primary-light); padding: 4px 10px; border-radius: 4px; }
        .article-content h2 { font-size: 20px; margin-bottom: 12px; line-height: 1.4; }
        .article-content h2 a:hover { color: var(--primary); }
        .article-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .article-meta { border-top: 1px solid var(--border-color); padding-top: 16px; font-size: 13px; color: #94a3b8; display: flex; justify-content: space-between; align-items: center; }
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
        .pagination a, .pagination span { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 8px; background: var(--bg-white); border: 1px solid var(--border-color); color: var(--text-main); font-weight: 500; transition: var(--transition); }
        .pagination a:hover, .pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }
        .sidebar { background: var(--bg-white); border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow-sm); height: fit-content; }
        .sidebar-box { margin-bottom: 40px; }
        .sidebar-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-left: 12px; border-left: 4px solid var(--primary); }
        
        .footer { background: #0F172A; color: #94A3B8; padding: 60px 0 30px; margin-top: 60px;} .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; } .footer h4 { color: #fff; font-size: 18px; margin-bottom: 20px; } .footer-links ul li { margin-bottom: 10px; } .footer-links ul li a:hover { color: var(--primary); } .footer-logo span { color: #fff; } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
        @media (max-width: 992px) { .desktop-nav, .header-action .btn-outline { display: none; } .mobile-toggle { display: flex; } .list-container { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 768px) { .grid-layout { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } }