﻿:root { --primary: rgb(101,163,13); --primary-hover: rgb(77,124,10); --bg-light: #f4f9f0; --text-main: #1f2937; --text-sub: #4b5563; --border: #e5e7eb; --white: #ffffff; }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui, -apple-system, sans-serif; }
        body { color: var(--text-main); line-height: 1.6; background: #fafafa; }
        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(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; height: 70px; display: flex; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
        .header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .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: 20px; font-weight: 800; line-height: 1; color: #111; white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-weight: 500; color: var(--text-main); transition: color 0.3s; font-size: 15px; }
        .desktop-nav a:hover { color: var(--primary); }
        .menu-toggle { display: none; cursor: pointer; color: var(--text-main); }
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); z-index: 201; transition: 0.3s; display: flex; flex-direction: column; box-shadow: 2px 0 10px rgba(0,0,0,0.1); }
        .drawer.open { left: 0; }
        .drawer-overlay.open { opacity: 1; visibility: visible; }
        .drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-sub); }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 20px; overflow-y: auto; }
        .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-main); }
        
        .breadcrumb { padding: 20px 0; font-size: 14px; color: var(--text-sub); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
        .breadcrumb a { color: var(--text-main); transition: color 0.3s; }
        .breadcrumb a:hover { color: var(--primary); }
        
        .page-header { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--border); margin-bottom: 40px; text-align: center; }
        .page-header h1 { font-size: 32px; font-weight: 800; color: #111; margin-bottom: 16px; }
        .page-header p { font-size: 16px; color: var(--text-sub); max-width: 600px; margin: 0 auto; }
        
        .layout-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 40px; }
        
        .list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
        .news-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; display: flex; flex-direction: column; }
        .news-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,0.06); transform: translateY(-4px); }
        .news-img { width: 100%; height: 180px; overflow: hidden; }
        .news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .news-card:hover .news-img img { transform: scale(1.05); }
        .news-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .news-tag { display: inline-block; font-size: 12px; background: var(--bg-light); color: var(--primary); padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; align-self: flex-start; }
        .news-info h4 { font-size: 16px; margin-bottom: 10px; line-height: 1.4; color: #111; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .news-info p { font-size: 13px; color: var(--text-sub); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .news-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #9ca3af; border-top: 1px dashed var(--border); padding-top: 12px; }
        
        .sidebar { background: var(--white); padding: 24px; border-radius: 12px; border: 1px solid var(--border); height: fit-content; }
        .sidebar h3 { font-size: 18px; margin-bottom: 20px; color: #111; padding-bottom: 12px; border-bottom: 2px solid var(--primary); display: inline-block; }
        
        .pagination { display: flex; justify-content: center; gap: 8px; margin: 40px 0; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 12px; border-radius: 4px; border: 1px solid var(--border); background: var(--white); color: var(--text-main); font-size: 14px; transition: 0.3s; }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .current { background: var(--primary); border-color: var(--primary); color: var(--white); }
        .pagination .disabled { opacity: 0.5; pointer-events: none; }
        
        .footer { background: #111827; color: #9ca3af; padding: 80px 0 30px; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
        .footer-brand .logo span { color: var(--white); }
        .footer-desc { margin-top: 24px; font-size: 14px; line-height: 1.8; }
        .footer-title { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 24px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
        .footer-links a { transition: color 0.3s; font-size: 14px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 24px; display: flex; justify-content: space-between; font-size: 14px; }
        
        @media(max-width: 1024px) {
            .layout-grid { grid-template-columns: 1fr; }
            .list-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media(max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: block; }
            .list-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }