﻿:root {
            --primary-color: rgb(52,168,83);
            --primary-hover: #228b45;
            --text-dark: #111827;
            --text-muted: #6b7280;
            --bg-light: #f9fafb;
            --border-color: #e5e7eb;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-dark); background-color: #fff; line-height: 1.5; -webkit-tap-highlight-color: transparent; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

        
        .header { background: #ffffff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; height: 70px; display: flex; align-items: center; }
        .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: 18px; font-weight: 800; line-height: 1; color: var(--text-dark); white-space: nowrap; }
        .nav-menu { display: flex; align-items: center; gap: 32px; }
        .nav-menu a { font-size: 15px; font-weight: 500; color: #374151; }
        .nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .btn-header { background: var(--primary-color); color: #fff; padding: 8px 18px; border-radius: 6px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
        .btn-header:hover { background: var(--primary-hover); color: #fff; }
        .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); padding: 4px; }

        
        .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: all 0.3s ease; backdrop-filter: blur(4px); }
        .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #ffffff; z-index: 201; transition: all 0.3s ease; display: flex; flex-direction: column; box-shadow: 4px 0 20px rgba(0,0,0,0.1); }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .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; color: var(--text-muted); }
        .drawer-content { flex: 1; overflow-y: auto; padding: 20px 0; }
        .drawer-nav { display: flex; flex-direction: column; }
        .drawer-nav a { padding: 14px 24px; font-size: 16px; font-weight: 500; border-left: 3px solid transparent; }
        .drawer-nav a:hover, .drawer-nav a.active { background: var(--bg-light); border-left-color: var(--primary-color); color: var(--primary-color); }
        .drawer-footer { padding: 20px; border-top: 1px solid var(--border-color); font-size: 12px; color: var(--text-muted); }

        
        .breadcrumbs-section { background: var(--bg-light); padding: 16px 0; border-bottom: 1px solid var(--border-color); }
        .breadcrumbs { font-size: 14px; color: var(--text-muted); }
        .breadcrumbs a:hover { color: var(--primary-color); }

        
        .list-main { padding: 60px 0 90px; }
        .list-grid-layout { display: grid; grid-template-columns: 2.5fr 1fr; gap: 40px; }
        
        .list-header { margin-bottom: 30px; border-bottom: 2px solid var(--primary-color); padding-bottom: 15px; display: flex; justify-content: space-between; align-items: flex-end; }
        .list-header-title { font-size: 24px; font-weight: 800; color: var(--text-dark); }
        
        .articles-stack { display: flex; flex-direction: column; gap: 30px; }
        .info-card-horizontal { display: flex; gap: 24px; background: #ffffff; border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; transition: all 0.3s; }
        .info-card-horizontal:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.04); border-color: var(--primary-color); }
        .card-img-wrapper { width: 220px; height: 140px; border-radius: 8px; overflow: hidden; background: #e2e8f0; flex-shrink: 0; }
        .card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .card-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .card-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 16px; margin-bottom: 8px; }
        .card-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .card-summary { font-size: 14px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.6; }
        .card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; font-size: 13px; font-weight: 600; }
        .card-tag { background: #f3f4f6; color: #4b5563; padding: 2px 8px; border-radius: 4px; }
        .card-read-more { color: var(--primary-color); }

        
        .pagination-container { margin-top: 50px; display: flex; justify-content: center; gap: 8px; }
        .page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border: 1px solid var(--border-color); border-radius: 6px; font-size: 14px; font-weight: 600; background: #fff; }
        .page-link:hover, .page-link.current { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
        .page-link.disabled { color: var(--text-muted); cursor: not-allowed; opacity: 0.6; }

        
        .sidebar-widget { background: #ffffff; border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; margin-bottom: 30px; }
        .widget-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; border-left: 4px solid var(--primary-color); padding-left: 12px; }
        
        .hot-posts-list { display: flex; flex-direction: column; gap: 16px; }
        .hot-post-item { display: flex; gap: 12px; align-items: center; }
        .hot-post-num { font-size: 20px; font-weight: 800; color: rgba(52,168,83,0.3); width: 28px; text-align: center; }
        .hot-post-title { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
        .tag-cloud-item { display: inline-block; background: #f3f4f6; padding: 6px 12px; border-radius: 6px; font-size: 13px; font-weight: 500; }
        .tag-cloud-item:hover { background: var(--primary-color); color: #fff; }

        
        .footer { background: #0f172a; color: #94a3b8; padding: 80px 0 30px; font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
        .footer-brand { display: flex; flex-direction: column; gap: 20px; }
        .footer .logo span { color: #ffffff; }
        .footer-desc { line-height: 1.6; color: #64748b; }
        .footer-heading { color: #ffffff; font-size: 16px; font-weight: 700; margin-bottom: 24px; }
        .footer-links { display: flex; flex-direction: column; gap: 14px; }
        .footer-links a:hover { color: #ffffff; }
        .footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid #1e293b; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; color: #64748b; }
        .footer-bottom-links { display: flex; gap: 24px; }

        @media (max-width: 1024px) {
            .list-grid-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-menu, .header-actions { display: none; }
            .menu-toggle { display: block; }
            .info-card-horizontal { flex-direction: column; }
            .card-img-wrapper { width: 100%; height: 180px; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }