﻿:root {
      --primary-accent: rgb(234,67,53);
      --text-main: #334155;
      --text-dark: #0F172A;
      --text-muted: #64748B;
      --border-color: rgba(15,23,42,0.08);
      --font-stack: system-ui, -apple-system, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-stack);
      color: var(--text-main);
      background-color: #FAFAFA;
      line-height: 1.6;
    }

    
    .site-header{ position:sticky; top:0; z-index:900; width:100%; background:rgba(255,255,255,.92); backdrop-filter:blur(16px); border-bottom:1px solid rgba(15,23,42,.08); }
    .header-inner{ width:min(1200px, calc(100% - 32px)); margin:0 auto; min-height:72px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
    .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; }
    .logo span{ display:inline-block; font-size:18px; font-weight:800; color:#111827; }
    .desktop-nav{ display:flex; align-items:center; justify-content:flex-end; gap:8px; flex:1; overflow-x:auto; scrollbar-width:none; }
    .desktop-nav::-webkit-scrollbar{ display:none; }
    .desktop-nav a{ display:inline-flex; align-items:center; min-height:40px; padding:0 14px; border-radius:999px; font-size:14px; font-weight:600; color:#334155; text-decoration:none; white-space:nowrap; }
    .mobile-menu-btn{ display:none; width:44px; height:44px; border:0; border-radius:14px; background:rgba(15,23,42,.08); align-items:center; justify-content:center; flex-direction:column; gap:5px; cursor:pointer; }
    .mobile-menu-btn span{ display:block; width:20px; height:2px; background:#111827; }

    .mobile-nav-mask{ position:fixed; inset:0; z-index:998; background:rgba(15,23,42,.54); opacity:0; visibility:hidden; pointer-events:none; transition:opacity .25s ease, visibility .25s ease; }
    .mobile-drawer{ position:fixed; top:0; left:0; z-index:999; width:min(86vw, 360px); height:100vh; background:#ffffff; transform:translateX(-105%); transition:transform .28s ease; box-shadow:24px 0 60px rgba(15,23,42,.22); display:flex; flex-direction:column; }
    .drawer-head{ min-height:76px; padding:18px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid rgba(15,23,42,.08); }
    .drawer-close{ width:40px; height:40px; border:0; border-radius:14px; background:rgba(15,23,42,.08); font-size:26px; cursor:pointer; }
    .drawer-body{ flex:1; overflow-y:auto; padding:14px; }
    .drawer-nav{ display:flex; flex-direction:column; gap:8px; }
    .drawer-nav a{ display:flex; align-items:center; width:100%; min-height:48px; padding:13px 14px; border-radius:14px; background:rgba(15,23,42,.04); color:#111827; text-decoration:none; font-size:15px; font-weight:700; }
    body.drawer-open{ overflow:hidden; }
    body.drawer-open .mobile-nav-mask{ opacity:1; visibility:visible; pointer-events:auto; }
    body.drawer-open .mobile-drawer{ transform:translateX(0); }

    
    .list-wrapper {
      width: min(1200px, calc(100% - 32px));
      margin: 40px auto 80px;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 32px;
    }

    .breadcrumbs {
      grid-column: 1 / -1;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .breadcrumbs a {
      color: inherit;
      text-decoration: none;
    }
    .breadcrumbs a:hover {
      color: var(--primary-accent);
    }

    .list-header-banner {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, #FFF5F5 0%, #FFF0F0 100%);
      border: 1px solid rgba(234,67,53,0.1);
      padding: 40px;
      border-radius: 20px;
      margin-bottom: 24px;
    }

    .list-header-banner h1 {
      font-size: 28px;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .list-header-banner p {
      color: var(--text-muted);
      font-size: 15px;
    }

    
    .articles-flow {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .list-item-card {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      display: flex;
      gap: 24px;
      padding: 24px;
      transition: all 0.25s ease;
    }

    .list-item-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.03);
      border-color: rgba(234,67,53, 0.15);
    }

    .list-item-img {
      width: 220px;
      height: 140px;
      object-fit: cover;
      border-radius: 8px;
      background: #e2e8f0;
      flex-shrink: 0;
    }

    .list-item-info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
    }

    .list-item-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .list-item-title a {
      color: inherit;
      text-decoration: none;
    }

    .list-item-title a:hover {
      color: var(--primary-accent);
    }

    .list-item-summary {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .list-item-meta {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      gap: 16px;
      align-items: center;
    }

    
    .list-sidebar {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .sidebar-widget {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      padding: 24px;
    }

    .widget-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 16px;
      border-left: 4px solid var(--primary-accent);
      padding-left: 10px;
    }

    .hot-article-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .hot-article-item {
      display: flex;
      gap: 12px;
      text-decoration: none;
      color: inherit;
    }

    .hot-article-item img {
      width: 64px;
      height: 64px;
      object-fit: cover;
      border-radius: 6px;
    }

    .hot-article-item h5 {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    
    .pagination-container {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .pagination-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      border-radius: 8px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      color: var(--text-main);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .pagination-link.current {
      background: var(--primary-accent);
      color: #ffffff;
      border-color: var(--primary-accent);
    }

    .pagination-link:hover:not(.current) {
      background: #f1f5f9;
    }

    .pagination-ellipsis {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      color: var(--text-muted);
    }

    
    .site-footer{ width:100%; background:#0f172a; color:#e5e7eb; overflow:hidden; }
    .footer-inner{ width:min(1200px, calc(100% - 32px)); margin:0 auto; padding:54px 0 34px; display:grid; grid-template-columns:minmax(240px,1.4fr) repeat(3, minmax(150px, .8fr)); gap:28px; }
    .footer-logo span{ color:#ffffff; }
    .footer-brand p{ margin:18px 0 0; color:rgba(226,232,240,.78); line-height:1.8; font-size:14px; max-width:420px; }
    .footer-column h3{ margin:0 0 14px; color:#ffffff; font-size:15px; font-weight:800; }
    .footer-column ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
    .footer-column li, .footer-column a{ color:rgba(226,232,240,.78); font-size:14px; text-decoration:none; }
    .footer-column a:hover{ color:#ffffff; }
    .footer-bottom{ width:min(1200px, calc(100% - 32px)); margin:0 auto; padding:18px 0 24px; border-top:1px solid rgba(226,232,240,.12); display:flex; align-items:center; justify-content:space-between; gap:14px; color:rgba(226,232,240,.68); font-size:13px; }

    @media (max-width: 900px){
      .list-wrapper { grid-template-columns: 1fr; gap: 24px; margin: 20px auto 40px; }
      .header-inner{ width:min(100% - 24px, 1200px); min-height:64px; }
      .desktop-nav{ display:none !important; }
      .mobile-menu-btn{ display:inline-flex !important; }
      .footer-inner{ width:min(100% - 24px, 1200px); grid-template-columns:1fr 1fr; gap:24px 18px; }
      .footer-brand{ grid-column:1 / -1; }
      .footer-bottom{ width:min(100% - 24px, 1200px); flex-direction:column; align-items:flex-start; }
      .list-item-card { flex-direction: column; }
      .list-item-img { width: 100%; height: 200px; }
    }