﻿:root {
            --primary: rgb(55,65,81);
            --primary-dark: rgb(31,41,55);
            --bg-body: #f3f4f6;
            --bg-white: #ffffff;
            --text-main: #111827;
            --text-muted: #6b7280;
            --border-color: #e5e7eb;
            --radius-md: 8px;
            --radius-lg: 12px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul, ol { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 50; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .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(--primary); white-space: nowrap; }
        .desktop-nav { display: none; }
        @media (min-width: 992px) {
            .desktop-nav { display: block; flex: 1; margin: 0 40px; }
            .desktop-nav ul { display: flex; gap: 24px; align-items: center; }
            .desktop-nav a { font-weight: 500; font-size: 15px; padding: 8px 0; position: relative; }
            .desktop-nav a:hover { color: var(--primary); }
            .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
            .desktop-nav a:hover::after { width: 100%; }
        }
        .mobile-menu-btn { display: block; background: none; border: none; padding: 8px; cursor: pointer; color: var(--text-main); }
        .mobile-menu-btn svg { width: 24px; height: 24px; fill: currentColor; }
        @media (min-width: 992px) { .mobile-menu-btn { display: none; } }
        
        .mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; opacity: 0; visibility: hidden; transition: var(--transition); }
        .mobile-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: 101; transition: var(--transition); display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border-color); }
        .drawer-close-btn { background: none; border: none; font-size: 28px; color: var(--text-muted); cursor: pointer; }
        .drawer-body { flex: 1; overflow-y: auto; padding: 20px 0; }
        .drawer-body ul li a { display: block; padding: 12px 24px; font-weight: 500; border-bottom: 1px solid #f3f4f6; }
        
        
        .page-header { background: var(--bg-white); padding: 40px 0; border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
        .breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 16px; align-items: center; }
        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span.sep { color: #d1d5db; }
        .page-title { font-size: 28px; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
        .page-desc { font-size: 15px; color: var(--text-muted); max-width: 800px; }
        
        
        .list-layout { display: grid; grid-template-columns: 1fr; gap: 30px; padding-bottom: 80px; }
        @media (min-width: 1024px) { .list-layout { grid-template-columns: 3fr 1fr; } }
        
        
        .article-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
        @media (min-width: 640px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
        .post-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
        .post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .post-thumb { display: block; aspect-ratio: 16/9; background: #e5e7eb; overflow: hidden; }
        .post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .post-card:hover .post-thumb img { transform: scale(1.05); }
        .post-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
        .post-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .post-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
        .post-title a { color: var(--text-main); }
        .post-title a:hover { color: var(--primary); }
        .post-excerpt { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .post-tags { display: flex; flex-wrap: wrap; gap: 6px; }
        .post-tags a, .post-tags span { background: #f3f4f6; color: var(--text-muted); font-size: 11px; padding: 2px 8px; border-radius: 4px; }
        
        
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border: 1px solid var(--border-color); background: var(--bg-white); color: var(--text-main); border-radius: 4px; font-size: 14px; transition: var(--transition); }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: bold; }
        .pagination .disabled { opacity: 0.5; pointer-events: none; }
        
        
        .sidebar-widget { background: var(--bg-white); border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--border-color); margin-bottom: 24px; }
        .widget-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bg-body); color: var(--text-main); }
        .widget-list li { margin-bottom: 12px; font-size: 14px; }
        .widget-list a { color: var(--text-muted); }
        .widget-list a:hover { color: var(--primary); padding-left: 5px; }
        
        
        .site-footer { background: #1f2937; color: #9ca3af; padding: 60px 0 20px; font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
        .footer-brand .logo span { color: #fff; }
        .footer-desc { margin-top: 16px; line-height: 1.8; }
        .footer-nav h3, .footer-links h3 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
        .footer-nav ul, .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-nav a:hover, .footer-links a:hover { color: #fff; }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
        .footer-bottom-links { display: flex; gap: 16px; }