﻿:root{--primary:rgb(83,92,104);--primary-dark:#3e454f;--primary-light:rgba(83,92,104,0.1);--accent:#d29e5e;--text-main:#333;--text-muted:#666;--bg-body:#f8f9fa;--bg-white:#ffffff;--border:#eef0f2;--radius:8px;--shadow:0 4px 20px rgba(0,0,0,0.05);--shadow-hover:0 10px 30px rgba(83,92,104,0.15);}
        *{margin:0;padding:0;box-sizing:border-box;}
        body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:var(--text-main);background:var(--bg-body);line-height:1.6;}
        a{text-decoration:none;color:inherit;transition:all 0.3s ease;}
        img{max-width:100%;height:auto;display:block;}
        .container{max-width:1200px;margin:0 auto;padding:0 20px;}
        .site-header{background:var(--bg-white);box-shadow:var(--shadow);position:sticky;top:0;z-index:100;}
        .header-inner{display:flex;justify-content:space-between;align-items:center;height:80px;}
        .logo{display:inline-flex;align-items:center;gap:12px;text-decoration:none;}
        .logo img{display:block;height:40px;width:auto;max-width:160px;object-fit:contain;flex-shrink:0;}
        .logo span{display:inline-block;font-size:22px;font-weight:800;line-height:1;color:var(--primary);white-space:nowrap;}
        .desktop-nav{display:flex;gap:30px;align-items:center;}
        .desktop-nav a{font-size:16px;font-weight:500;color:var(--text-main);position:relative;padding:8px 0;}
        .desktop-nav a:hover{color:var(--primary);}
        .header-action{background:var(--primary);color:#fff;padding:10px 24px;border-radius:30px;font-weight:600;}
        .menu-toggle{display:none;font-size:28px;background:none;border:none;color:var(--primary);cursor:pointer;}
        .drawer-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:999;opacity:0;visibility:hidden;transition:all 0.3s;}
        .drawer{position:fixed;top:0;left:-300px;width:280px;height:100%;background:var(--bg-white);z-index:1000;transition:all 0.3s;display:flex;flex-direction:column;}
        .drawer.active{left:0;}
        .drawer-overlay.active{opacity:1;visibility:visible;}
        .drawer-header{padding:20px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--border);}
        .drawer-close{background:none;border:none;font-size:24px;color:var(--text-muted);cursor:pointer;}
        .drawer-nav{padding:20px;display:flex;flex-direction:column;gap:15px;}
        .drawer-nav a{font-size:16px;padding:10px;background:var(--bg-body);border-radius:var(--radius);}
        
        
        .page-header { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 60px 0; text-align: center; }
        .page-title { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
        .breadcrumb { font-size: 14px; color: rgba(255,255,255,0.8); }
        .breadcrumb a { color: #fff; }
        .breadcrumb a:hover { text-decoration: underline; }
        
        .list-layout { padding: 60px 0; display: flex; gap: 40px; }
        .list-main { flex: 1; }
        .list-sidebar { width: 320px; display: none; } 
        @media (min-width: 992px) { .list-sidebar { display: block; } }
        
        .article-list { display: flex; flex-direction: column; gap: 30px; }
        .article-card-row { display: flex; background: var(--bg-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
        .article-card-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
        .article-row-img { width: 280px; flex-shrink: 0; }
        .article-row-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-row-content { padding: 30px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
        .article-row-title { font-size: 22px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
        .article-row-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-row-meta { display: flex; gap: 20px; font-size: 13px; color: #888; align-items: center; }
        .article-row-meta .tag { background: var(--primary-light); color: var(--primary); padding: 4px 8px; border-radius: 4px; }
        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .pagination a, .pagination span { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background: var(--bg-white); border-radius: 5px; color: var(--text-main); font-weight: 600; box-shadow: var(--shadow); }
        .pagination a:hover { background: var(--primary); color: #fff; }
        .pagination .current { background: var(--primary); color: #fff; }
        
        
        .widget { background: var(--bg-white); padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 30px; }
        .widget-title { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 20px; padding-left: 12px; border-left: 4px solid var(--primary); }
        .widget-links { list-style: none; }
        .widget-links li { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed var(--border); }
        .widget-links li:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
        .widget-links a { font-size: 15px; display: block; }
        .widget-links a:hover { color: var(--primary); }

        
        .site-footer{background:var(--primary-dark);color:#fff;padding:80px 0 20px;}
        .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:60px;}
        .footer-brand .logo span{color:#fff;}
        .footer-col h4{font-size:18px;margin-bottom:25px;color:#fff;position:relative;padding-bottom:10px;}
        .footer-col h4::after{content:'';position:absolute;bottom:0;left:0;width:30px;height:2px;background:var(--accent);}
        .footer-col ul{list-style:none;}
        .footer-col ul li{margin-bottom:15px;}
        .footer-col ul a{color:rgba(255,255,255,0.7);}
        .footer-bottom{text-align:center;padding-top:20px;border-top:1px solid rgba(255,255,255,0.1);font-size:14px;color:rgba(255,255,255,0.5);}

        @media (max-width: 992px) {
            .desktop-nav, .header-action { display: none; }
            .menu-toggle { display: block; }
            .footer-grid{grid-template-columns:1fr 1fr;}
        }
        @media (max-width: 768px) {
            .article-card-row { flex-direction: column; }
            .article-row-img { width: 100%; height: 200px; }
            .footer-grid{grid-template-columns:1fr;}
        }