﻿:root {
            --primary: rgb(15,118,110);
            --primary-hover: rgb(13,95,88);
            --primary-light: rgba(15,118,110,0.08);
            --accent: #f59e0b;
            --bg-color: #f8fafc;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --white: #ffffff;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        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; }
        
        .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; }
        
        .site-header { background: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        .nav-desktop { display: none; }
        .nav-desktop a { font-size: 16px; font-weight: 500; padding: 8px 12px; border-radius: 6px; }
        .nav-desktop a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-toggle { display: block; background: none; border: none; font-size: 24px; cursor: pointer; }
        @media(min-width: 768px) { .nav-desktop { display: flex; gap: 15px; align-items: center; } .menu-toggle { display: none; } }

        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-content { position: absolute; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); transition: left 0.3s ease; display: flex; flex-direction: column; }
        .drawer-overlay.active .drawer-content { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 15px; }
        .drawer-nav a { display: block; padding: 12px 15px; background: var(--bg-color); border-radius: 8px; font-weight: 500; }
        
        
        .page-banner { background: linear-gradient(135deg, var(--primary) 0%, #064e3b 100%); color: #fff; padding: 60px 0; text-align: center; position: relative; }
        .page-banner::after { content:''; position:absolute; inset:0; background:url('https://images.unsplash.com/photo-1640340434855-6084b1f4901c?w=1600&q=80') center/cover opacity:0.1; mix-blend-mode:overlay;}
        .page-banner h1 { font-size: 36px; margin-bottom: 15px; position:relative; z-index:10;}
        .page-banner p { font-size: 18px; opacity: 0.9; position:relative; z-index:10;}
        
        .breadcrumb { padding: 20px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
        .breadcrumb a { color: var(--primary); font-weight: 500; }
        .breadcrumb span { margin: 0 8px; }

        .layout-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 80px; }
        @media(min-width: 992px) { .layout-grid { grid-template-columns: 3fr 1fr; } }
        
        .article-list { display: flex; flex-direction: column; gap: 30px; }
        .article-card-row { display: flex; flex-direction: column; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); transition: transform 0.3s, box-shadow 0.3s; }
        @media(min-width: 768px) { .article-card-row { flex-direction: row; height: 200px; } }
        .article-card-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
        .article-img-wrap { width: 100%; height: 200px; flex-shrink: 0; }
        @media(min-width: 768px) { .article-img-wrap { width: 300px; height: 100%; } }
        .article-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
        .article-tags span { background: var(--primary-light); color: var(--primary); font-size: 12px; padding: 4px 8px; border-radius: 4px; margin-right: 8px; }
        .article-content h3 { font-size: 20px; margin: 10px 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-content p { color: var(--text-muted); font-size: 14px; margin-bottom: auto; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; font-size: 13px; color: #94a3b8; border-top: 1px dashed var(--border-color); padding-top: 15px; }

        .sidebar { display: flex; flex-direction: column; gap: 30px; }
        .widget { background: var(--white); border-radius: 12px; padding: 25px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
        .widget h3 { font-size: 18px; margin-bottom: 20px; color: var(--text-main); position: relative; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); }
        .widget h3::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--primary); }
        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
        .pagination a, .pagination span { padding: 8px 16px; border-radius: 6px; background: var(--white); border: 1px solid var(--border-color); font-weight: 500; transition: all 0.3s; }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

        
        .site-footer { background: #0f172a; color: #cbd5e1; padding: 60px 0 20px; }
        .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 1fr; } }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #94a3b8; }
        .footer-links h3 { color: #fff; font-size: 18px; margin-bottom: 20px; }
        .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: #94a3b8; font-size: 14px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-contact p { font-size: 14px; color: #94a3b8; margin-bottom: 10px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #1e293b; font-size: 14px; }