﻿:root {
            --primary: rgb(68, 71, 90);
            --primary-light: rgb(88, 92, 115);
            --primary-dark: rgb(48, 51, 65);
            --accent: #e63946;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
            --bg-body: #f3f4f6;
            --bg-card: #ffffff;
            --border-color: #e5e7eb;
            --radius: 12px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: sans-serif; background-color: var(--bg-body); color: var(--text-dark); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul, ol { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background-color: var(--primary); color: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
        .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: 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: #ffffff; white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; opacity: 0.9; }
        .desktop-nav a:hover { opacity: 1; color: #fff; }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; }
        .btn-outline { border: 2px solid #fff; color: #fff; }
        .btn-outline:hover { background-color: #fff; color: var(--primary); }
        .mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; flex-direction: column; gap: 5px; }
        .mobile-toggle span { display: block; width: 24px; height: 2px; background-color: #fff; transition: 0.3s; }
        
        .drawer { position: fixed; inset: 0; z-index: 1000; pointer-events: none; visibility: hidden; }
        .drawer.active { pointer-events: auto; visibility: visible; }
        .drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: 0.3s; }
        .drawer.active .drawer-overlay { opacity: 1; }
        .drawer-content { position: absolute; top: 0; bottom: 0; left: 0; width: 280px; background: #fff; transform: translateX(-100%); transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active .drawer-content { transform: translateX(0); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; background: var(--primary); }
        .drawer-header .logo span { color: #fff; font-size: 18px; }
        .drawer-close { background: none; border: none; font-size: 28px; color: #fff; cursor: pointer; line-height: 1; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 15px; }
        .drawer-nav a { display: block; font-size: 16px; font-weight: 500; padding: 8px 0; border-bottom: 1px dashed var(--border-color); }
        
        
        .page-header { background: var(--primary-light); color: #fff; padding: 40px 0; border-bottom: 4px solid var(--accent); }
        .breadcrumb { display: flex; gap: 8px; font-size: 14px; opacity: 0.8; margin-bottom: 15px; align-items: center; }
        .breadcrumb a:hover { text-decoration: underline; }
        .page-title { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
        .page-desc { font-size: 16px; opacity: 0.9; max-width: 800px; }
        
        .list-container { display: flex; gap: 30px; margin: 40px auto; padding: 0 20px; max-width: 1200px; }
        .main-content { flex: 1; min-width: 0; }
        .sidebar { width: 300px; flex-shrink: 0; }
        
        .article-list { display: flex; flex-direction: column; gap: 20px; }
        .list-item { display: flex; background: var(--bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
        .list-item:hover { transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-left: 4px solid var(--accent); }
        .item-img-wrap { width: 240px; flex-shrink: 0; position: relative; }
        .item-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .item-content { padding: 20px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
        .item-title { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
        .item-title a:hover { color: var(--primary); }
        .item-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .item-meta { display: flex; gap: 15px; font-size: 12px; color: #9ca3af; align-items: center; }
        .item-meta span { display: inline-flex; align-items: center; gap: 4px; }
        .item-tags { margin-left: auto; color: var(--accent); font-weight: bold; }
        
        
        .widget { background: var(--bg-card); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); margin-bottom: 20px; border-top: 3px solid var(--primary); }
        .widget-title { font-size: 18px; font-weight: 600; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }
        .widget-content { font-size: 14px; color: var(--text-muted); }
        
        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; padding: 20px 0; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; background: #fff; border: 1px solid var(--border-color); border-radius: 4px; color: var(--text-dark); transition: 0.3s; }
        .pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
        .pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: bold; }
        
        
        .site-footer { background-color: var(--primary-dark); color: #d1d5db; padding: 60px 0 0 0; margin-top: 60px;}
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-desc { margin-top: 15px; font-size: 14px; opacity: 0.8; line-height: 1.8; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent); }
        .footer-links ul { display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { font-size: 14px; transition: color 0.3s; }
        .footer-links a:hover { color: #fff; }
        .footer-contact p { font-size: 14px; margin-bottom: 10px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 14px; opacity: 0.6; }

        @media (max-width: 992px) {
            .list-container { flex-direction: column; }
            .sidebar { width: 100%; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .desktop-nav, .header-actions .btn { display: none; }
            .mobile-toggle { display: flex; }
            .list-item { flex-direction: column; }
            .item-img-wrap { width: 100%; height: 200px; }
            .footer-grid { grid-template-columns: 1fr; }
        }