﻿:root {
      --primary: #00D6C9;
      --secondary: #0b132b;
      --theme-white: rgb(250,250,250);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background-color: var(--theme-white);
      color: #1e293b;
    }
    
    
    .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{
      font-size:18px;
      font-weight:800;
      color:#111827;
      white-space:nowrap;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      flex:1;
    }
    .desktop-nav a{
      padding:8px 16px;
      border-radius:999px;
      font-size:14px;
      font-weight:600;
      color:#334155;
      text-decoration:none;
    }
    .desktop-nav a:hover {
      background: rgba(0, 214, 201, 0.1);
      color: #00a399;
    }
    .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;
    }
    .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;
    }
    .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;
      display:flex;
      flex-direction:column;
    }
    .drawer-head{
      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;
      background:rgba(15,23,42,.08);
      font-size:24px;
      border-radius:14px;
    }
    .drawer-body{ padding:14px; }
    .drawer-nav{ display:flex; flex-direction:column; gap:8px; }
    .drawer-nav a{
      padding:13px 14px;
      border-radius:14px;
      background:rgba(15,23,42,.04);
      color:#111827;
      text-decoration:none;
      font-weight:700;
    }
    body.drawer-open .mobile-nav-mask{ opacity:1; visibility:visible; pointer-events:auto; }
    body.drawer-open .mobile-drawer{ transform:translateX(0); }

    
    .breadcrumbs {
      background: #f1f5f9;
      padding: 12px 0;
      font-size: 14px;
      color: #64748b;
    }
    .breadcrumbs-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .breadcrumbs a {
      color: #00a399;
      text-decoration: none;
    }

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

    @media (max-width: 900px) {
      .list-container { grid-template-columns: 1fr; }
      .desktop-nav { display:none !important; }
      .mobile-menu-btn { display:inline-flex !important; }
    }

    .list-header {
      background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
      color: #ffffff;
      padding: 30px;
      border-radius: 12px;
      margin-bottom: 30px;
    }
    .list-header h1 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .articles-grid {
      display:grid;
      grid-template-columns: 1fr;
      gap:24px;
    }

    .art-item-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid rgba(15,23,42,0.06);
      padding: 24px;
      display: flex;
      gap: 20px;
    }

    @media (max-width: 600px) {
      .art-item-card { flex-direction: column; }
    }

    .art-item-thumb {
      width: 200px;
      aspect-ratio: 16/10;
      border-radius: 8px;
      overflow: hidden;
      background: #f1f5f9;
      flex-shrink: 0;
    }
    .art-item-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .art-item-info {
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .art-item-meta {
      font-size: 12px;
      color: #94a3b8;
      margin-bottom: 8px;
    }
    .art-item-title {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      text-decoration: none;
      margin-bottom: 10px;
    }
    .art-item-title:hover { color: #00a399; }
    .art-item-summary {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .art-item-footer {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .art-item-tag {
      font-size: 12px;
      background: #f1f5f9;
      color: #475569;
      padding: 4px 8px;
      border-radius: 4px;
      text-decoration: none;
    }

    
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .widget {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid rgba(15,23,42,0.06);
      padding: 20px;
    }
    .widget-title {
      font-size: 16px;
      font-weight: 800;
      color: #0f172a;
      border-left: 3px solid var(--primary);
      padding-left: 10px;
      margin-bottom: 16px;
    }
    .widget-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .widget-list a {
      font-size: 14px;
      color: #475569;
      text-decoration: none;
    }
    .widget-list a:hover { color: #00a399; }

    
    .pagination-wrap {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }
    .pagination-wrap a, .pagination-wrap span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      border-radius: 8px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      text-decoration: none;
      font-weight: 600;
      color: #475569;
    }
    .pagination-wrap .is-current {
      background: var(--primary);
      color: var(--secondary);
      border-color: var(--primary);
    }

    
    .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;
    }
    .footer-column h3{ margin-bottom: 14px; color:#ffffff; font-size:15px; font-weight:800; }
    .footer-column ul{
      list-style:none; display:flex; flex-direction:column; gap:10px;
    }
    .footer-column a{ color:rgba(226,232,240,.78); font-size:14px; text-decoration:none; }
    .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;
      justify-content:space-between;
      color:rgba(226,232,240,.68);
      font-size:13px;
    }
    @media(max-width:900px){
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: span 2; }
    }
    @media(max-width:520px){
      .footer-inner { grid-template-columns: 1fr; }
      .footer-brand { grid-column: span 1; }
    }