﻿:root { --primary-color: rgb(30,64,175); --text-main: #333; --text-muted: #666; --bg-body: #f8f9fa; --bg-white: #fff; --border-color: #e5e7eb; }
        * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: sans-serif; line-height: 1.6; color: var(--text-main); background: var(--bg-body); }
        a { text-decoration: none; color: inherit; } img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: var(--bg-white); box-shadow: 0 1px 3px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 700; color: var(--primary-color); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; } .nav-desktop a { font-weight: 500; }
        .btn-mobile-menu { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-nav { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 1002; transition: left 0.3s; }
        .drawer-nav.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .btn-close-drawer { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-menu a { display: block; padding: 12px 20px; border-bottom: 1px solid var(--border-color); }
        @media (max-width: 768px) { .nav-desktop { display: none; } .btn-mobile-menu { display: block; } }

        
        .article-page { padding: 40px 0; display: grid; grid-template-columns: 3fr 1fr; gap: 40px; }
        @media (max-width: 992px) { .article-page { grid-template-columns: 1fr; } }

        .article-main { background: var(--bg-white); padding: 40px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        @media (max-width: 768px) { .article-main { padding: 20px; } }
        
        .breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
        .breadcrumb a:hover { color: var(--primary-color); }

        .article-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 20px; line-height: 1.4; }
        @media (max-width: 768px) { .article-header h1 { font-size: 24px; } }
        
        .article-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: var(--text-muted); padding-bottom: 20px; border-bottom: 1px solid var(--border-color); margin-bottom: 30px; }
        .article-meta span { display: flex; align-items: center; gap: 5px; }

        .article-content { font-size: 16px; line-height: 1.8; color: #444; }
        .article-content p { margin-bottom: 20px; }
        .article-content img { border-radius: 8px; margin: 20px auto; max-width: 100%; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
        .article-content h2, .article-content h3 { margin: 30px 0 15px; color: #222; }

        .article-tags-links { margin: 40px 0; display: flex; gap: 10px; align-items: center; }
        .article-tags-links strong { font-size: 14px; color: #555; }
        .article-tags-links a { background: #e0e7ff; color: var(--primary-color); padding: 4px 12px; border-radius: 16px; font-size: 14px; transition: 0.3s; }
        .article-tags-links a:hover { background: var(--primary-color); color: white; }

        .article-nav { display: flex; justify-content: space-between; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 20px 0; margin-bottom: 40px; }
        .article-nav a { font-size: 15px; color: var(--primary-color); max-width: 45%; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        
        .related-box h3 { font-size: 20px; margin-bottom: 20px; padding-left: 10px; border-left: 4px solid var(--primary-color); }
        .related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        @media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }
        .related-item { background: var(--bg-body); border-radius: 8px; overflow: hidden; display: flex; gap: 15px; padding: 10px; transition: 0.3s; }
        .related-item:hover { background: #e0e7ff; }
        .related-item img { width: 100px; height: 75px; object-fit: cover; border-radius: 4px; }
        .related-info h4 { font-size: 14px; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .related-info span { font-size: 12px; color: #888; }

        
        .sidebar-widget { background: var(--bg-white); border-radius: 12px; padding: 25px; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .sidebar-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); }
        
        
        .footer { background: #111827; color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
        .footer-title { color: white; margin-bottom: 20px; } .footer-links li { margin-bottom: 10px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }