﻿*,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;}
    body{width:100%;margin:0;overflow-x:hidden;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;background:#FBF8F2;color:#111827;line-height:1.6;}
    a{text-decoration:none;color:inherit;transition:all 0.25s ease;}
    img{max-width:100%;height:auto;display:block;}

    
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(16,20,23,.92);
      backdrop-filter:blur(18px) saturate(140%);
      border-bottom:1px solid rgba(184,138,68,.20);
      box-shadow:0 12px 40px rgba(0,0,0,.28);
    }
    .header-inner{
      width:min(1240px, calc(100% - 32px));
      min-height:76px;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      max-width:100%;
      text-decoration:none;
      flex-shrink:0;
    }
    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:150px;
      object-fit:contain;
      flex-shrink:0;
    }
    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:900;
      color:#F8FAFC;
      white-space:nowrap;
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav-wrap{
      flex:1 1 auto;
      min-width:0;
      display:flex;
      justify-content:flex-end;
      overflow:hidden;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      max-width:100%;
      overflow-x:auto;
      overflow-y:hidden;
      scrollbar-width:none;
      white-space:nowrap;
    }
    .desktop-nav::-webkit-scrollbar{display:none;}
    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      color:#CBD5E1;
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
      border:1px solid transparent;
    }
    .desktop-nav a:hover{
      color:#FFFFFF;
      background:rgba(184,138,68,.16);
      border-color:rgba(184,138,68,.30);
    }
    .mobile-menu-btn{
      display:none;
      width:46px;
      height:46px;
      border:1px solid rgba(184,138,68,.28);
      border-radius:16px;
      background:rgba(184,138,68,.12);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
    }
    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#F8FAFC;
    }
    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(0,0,0,.62);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }
    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:1110;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      max-width:90vw;
      background:linear-gradient(180deg,#101417 0%,#0B0F14 100%);
      color:#F8FAFC;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.42);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .drawer-head{
      min-height:76px;
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(184,138,68,.18);
      flex:0 0 auto;
    }
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;color:#F8FAFC;}
    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(255,255,255,.10);
      color:#F8FAFC;
      font-size:26px;
      cursor:pointer;
      flex:0 0 auto;
    }
    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      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(255,255,255,.07);
      color:#F8FAFC;
      font-size:15px;
      font-weight:800;
      line-height:1.35;
      word-break:break-word;
      overflow-wrap:anywhere;
      border:1px solid rgba(255,255,255,.10);
    }
    .drawer-nav a:hover{
      background:rgba(184,138,68,.18);
    }
    body.drawer-open{overflow:hidden;touch-action:none;}
    body.drawer-open .mobile-nav-mask{opacity:1;visibility:visible;pointer-events:auto;}
    body.drawer-open .mobile-drawer{transform:translateX(0);}
    @media (max-width:900px){
      .header-inner{width:min(100% - 24px, 1240px);min-height:68px;}
      .desktop-nav-wrap,.desktop-nav{display:none !important;}
      .mobile-menu-btn{display:inline-flex !important;}
      .logo img{height:34px;max-width:118px;}
      .logo span{font-size:16px;max-width:145px;}
    }

    .site-footer{
      background:#121416;
      color:#F8FAFC;
      padding:80px 0 0 0;
      border-top:1px solid rgba(184,138,68,.15);
    }
    .footer-inner{
      width:min(1240px, calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1.2fr;
      gap:48px;
      padding-bottom:60px;
    }
    .footer-brand{
      display:flex;
      flex-direction:column;
      gap:20px;
    }
    .footer-brand p{
      color:#94A3B8;
      font-size:14px;
      line-height:1.6;
      margin:0;
    }
    .footer-column h3{
      font-size:15px;
      font-weight:800;
      color:#F8FAFC;
      letter-spacing:1px;
      text-transform:uppercase;
      margin:0 0 24px 0;
    }
    .footer-column ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .footer-column ul li a, .footer-column ul li span{
      color:#94A3B8;
      font-size:14px;
      transition:color .2s ease;
    }
    .footer-column ul li a:hover{
      color:#B88A44;
    }
    .footer-bottom{
      width:min(1240px, calc(100% - 32px));
      margin:0 auto;
      padding:30px 0;
      border-top:1px solid rgba(255,255,255,.06);
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:16px;
    }
    .footer-bottom p{
      margin:0;
      font-size:13px;
      color:#64748B;
    }
    .footer-bottom a{
      color:#64748B;
      margin:0 6px;
    }
    .footer-bottom a:hover{
      color:#B88A44;
    }
    @media (max-width:900px){
      .footer-inner{
        grid-template-columns:1fr;
        gap:32px;
      }
      .footer-bottom{
        flex-direction:column;
        text-align:center;
      }
    }

    
    .article-header{
      background:#171A1E;
      color:#F8FAFC;
      padding:60px 0;
      border-bottom:1px solid rgba(184,138,68,.15);
    }
    .article-header-inner{
      width:min(1240px, calc(100% - 32px));
      margin:0 auto;
    }
    .breadcrumb{
      font-size:13px;
      color:#94A3B8;
      margin-bottom:16px;
    }
    .breadcrumb a{
      color:#B88A44;
    }
    .article-header h1{
      font-size:clamp(24px, 3.5vw, 38px);
      line-height:1.2;
      font-weight:900;
      margin:0 0 16px 0;
      color:#F8FAFC;
    }
    .article-meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:20px;
      font-size:13px;
      color:#CBD5E1;
      border-top:1px solid rgba(255,255,255,.10);
      padding-top:16px;
    }
    .article-meta-line span strong{
      color:#B88A44;
    }

    .article-layout{
      width:min(1240px, calc(100% - 32px));
      margin:60px auto;
      display:grid;
      grid-template-columns:1fr 340px;
      gap:48px;
    }
    .article-body-wrapper{
      background:#FFFFFF;
      border:1px solid rgba(17,24,39,.08);
      border-radius:8px;
      padding:40px;
    }
    .article-featured-img{
      width:100%;
      height:auto;
      max-height:450px;
      object-fit:cover;
      border-radius:6px;
      margin-bottom:30px;
    }
    .article-content{
      font-size:16px;
      line-height:1.8;
      color:#111827;
    }
    .article-content p{
      margin:0 0 24px 0;
    }
    .article-content h2, .article-content h3{
      color:#111827;
      margin:40px 0 20px 0;
      font-weight:800;
    }
    .article-content blockquote{
      border-left:4px solid #B88A44;
      background:#FBF8F2;
      margin:24px 0;
      padding:16px 24px;
      font-style:italic;
      color:#374151;
    }
    .article-content table{
      width:100%;
      border-collapse:collapse;
      margin:30px 0;
    }
    .article-content table th, .article-content table td{
      border:1px solid rgba(17,24,39,.1);
      padding:12px;
      text-align:left;
    }
    .article-content table th{
      background:#F1EDE4;
      font-weight:700;
    }

    
    .article-tags{
      margin-top:40px;
      border-top:1px solid rgba(17,24,39,.08);
      padding-top:20px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .article-tags span{
      font-size:13px;
      font-weight:700;
      color:#6B7280;
    }

    
    .prev-next-links{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      margin-top:48px;
      border-top:1px solid rgba(17,24,39,.08);
      padding-top:30px;
    }
    .prev-next-card{
      background:#F1EDE4;
      padding:20px;
      border-radius:6px;
    }
    .prev-next-card span{
      font-size:11px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:1px;
      color:#B88A44;
      display:block;
      margin-bottom:6px;
    }
    .prev-next-card a{
      font-size:14px;
      font-weight:800;
      color:#111827;
    }
    .prev-next-card a:hover{
      color:#B88A44;
    }

    
    .related-section{
      margin-top:60px;
    }
    .related-section h3{
      font-size:22px;
      font-weight:800;
      margin-bottom:24px;
    }
    .related-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
      gap:24px;
    }
    .related-card{
      background:#FFFFFF;
      border:1px solid rgba(17,24,39,.08);
      border-radius:6px;
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    .related-card img{
      width:100%;
      height:160px;
      object-fit:cover;
    }
    .related-card-body{
      padding:20px;
    }
    .related-card-body span{
      font-size:11px;
      color:#B88A44;
      font-weight:700;
      text-transform:uppercase;
    }
    .related-card-body h4{
      font-size:16px;
      font-weight:800;
      margin:8px 0;
    }
    .related-card-body p{
      font-size:13px;
      color:#667085;
      margin:0;
    }

    
    .sidebar{
      display:flex;
      flex-direction:column;
      gap:40px;
    }
    .sidebar-widget{
      background:#FFFFFF;
      padding:30px;
      border-radius:6px;
      border:1px solid rgba(17,24,39,.08);
    }
    .sidebar-widget h3{
      font-size:15px;
      font-weight:800;
      color:#111827;
      margin:0 0 20px 0;
      text-transform:uppercase;
      letter-spacing:1px;
      border-bottom:1px solid rgba(17,24,39,.08);
      padding-bottom:10px;
    }

    @media (max-width:900px){
      .article-layout{
        grid-template-columns:1fr;
      }
      .prev-next-links{
        grid-template-columns:1fr;
      }
    }