/* roulang page: index */
:root{
      --bg-dark:#0e1110;
      --bg-deep:#102b24;
      --bg-deeper:#07110e;
      --bg-soft:#f5f7f3;
      --bg-card:#ffffff;
      --text:#17211d;
      --text-soft:#5d6d65;
      --text-light:#edf7f2;
      --muted:#9fb0a8;
      --line:rgba(16,43,36,.14);
      --line-dark:rgba(237,247,242,.16);
      --green:#28d68a;
      --green-2:#75efbd;
      --amber:#f2b84b;
      --amber-soft:#fff4d8;
      --orange-soft:#fff0df;
      --shadow:0 18px 50px rgba(8,20,16,.14);
      --shadow-soft:0 12px 32px rgba(8,20,16,.09);
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:12px;
      --container:1200px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      background:var(--bg-soft);
      color:var(--text);
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer;border:0;background:none}
    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .skip-link{position:absolute;left:-999px;top:10px;background:var(--green);color:#07110e;padding:10px 14px;border-radius:10px;z-index:100}
    .skip-link:focus{left:14px}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(7,17,14,.94);
      border-bottom:1px solid var(--line-dark);
      backdrop-filter:saturate(130%) blur(10px);
    }
    .nav-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--text-light);
      font-weight:800;
      letter-spacing:.2px;
      min-width:0;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:14px;
      background:linear-gradient(135deg,var(--green),#1d6b50);
      color:#07110e;
      display:grid;place-items:center;
      font-weight:900;
      box-shadow:0 12px 28px rgba(40,214,138,.22);
      flex:0 0 auto;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.15}
    .brand-text strong{font-size:17px;white-space:nowrap}
    .brand-text span{font-size:12px;color:var(--muted);font-weight:600;margin-top:3px}
    .nav-menu{display:flex;align-items:center;gap:6px}
    .nav-menu a{
      color:#d8e5df;
      padding:10px 14px;
      border-radius:999px;
      font-weight:650;
      font-size:15px;
      position:relative;
      transition:var(--ease);
    }
    .nav-menu a:hover,.nav-menu a:focus{
      color:var(--green-2);
      background:rgba(40,214,138,.09);
      outline:none;
    }
    .nav-menu a.active{
      color:var(--green);
      background:rgba(40,214,138,.12);
    }
    .nav-menu a.active:after{
      content:"";
      position:absolute;
      left:50%;
      bottom:3px;
      width:18px;
      height:3px;
      border-radius:999px;
      background:var(--green);
      transform:translateX(-50%);
    }
    .header-action{display:flex;align-items:center;gap:12px}
    .menu-toggle{
      display:none;
      width:44px;height:44px;border-radius:14px;
      border:1px solid var(--line-dark);
      color:var(--text-light);
      align-items:center;justify-content:center;
    }
    .menu-toggle span,.menu-toggle span:before,.menu-toggle span:after{
      display:block;width:20px;height:2px;background:currentColor;border-radius:8px;position:relative;content:"";
    }
    .menu-toggle span:before{position:absolute;top:-7px}
    .menu-toggle span:after{position:absolute;top:7px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:800;
      transition:var(--ease);
      border:1px solid transparent;
      white-space:nowrap;
    }
    .btn:focus{outline:3px solid rgba(40,214,138,.32);outline-offset:2px}
    .btn-primary{background:var(--green);color:#07110e;box-shadow:0 12px 28px rgba(40,214,138,.24)}
    .btn-primary:hover{transform:translateY(-2px);filter:brightness(1.05);border-color:rgba(255,255,255,.5)}
    .btn-secondary{color:var(--text-light);border-color:rgba(237,247,242,.28);background:rgba(255,255,255,.03)}
    .btn-secondary:hover{background:rgba(40,214,138,.12);color:var(--green-2);transform:translateY(-2px)}
    .btn-light{background:#fff;color:var(--bg-deep);border-color:rgba(16,43,36,.12)}
    .btn-light:hover{transform:translateY(-2px);box-shadow:var(--shadow-soft);border-color:var(--green)}
    .hero{
      position:relative;
      overflow:hidden;
      color:var(--text-light);
      background:
        linear-gradient(90deg,rgba(7,17,14,.94),rgba(16,43,36,.82) 48%,rgba(7,17,14,.66)),
        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
    }
    .hero:before{
      content:"";
      position:absolute;inset:0;
      background:
        radial-gradient(circle at 22% 18%,rgba(40,214,138,.18),transparent 30%),
        linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:auto,46px 46px,46px 46px;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      min-height:690px;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      align-items:center;
      gap:56px;
      padding:88px 0 72px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(40,214,138,.34);
      border-radius:999px;
      background:rgba(40,214,138,.08);
      color:var(--green-2);
      font-size:13px;
      font-weight:800;
      margin-bottom:22px;
    }
    .eyebrow:before{content:"";width:8px;height:8px;border-radius:50%;background:var(--green)}
    h1{
      font-size:clamp(32px,5vw,54px);
      line-height:1.18;
      letter-spacing:-1.2px;
      font-weight:850;
      max-width:760px;
    }
    .hero-lead{
      margin-top:22px;
      color:#cfe0d8;
      font-size:18px;
      line-height:1.88;
      max-width:720px;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}
    .tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:750;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text-soft);
    }
    .hero .tag{background:rgba(255,255,255,.08);border-color:rgba(237,247,242,.18);color:#dbe8e2}
    .tag.green{border-color:rgba(40,214,138,.5);color:#148353;background:rgba(40,214,138,.08)}
    .tag.dark{background:var(--bg-deep);color:#eaf7f1;border-color:transparent}
    .tag.amber{background:var(--amber-soft);color:#8a5b06;border-color:rgba(242,184,75,.34)}
    .score-arena{
      position:relative;
      display:grid;
      gap:18px;
    }
    .score-card{
      background:rgba(7,17,14,.78);
      border:1px solid rgba(237,247,242,.18);
      border-radius:28px;
      padding:24px;
      box-shadow:0 28px 70px rgba(0,0,0,.28);
    }
    .score-top{display:flex;justify-content:space-between;gap:16px;align-items:center;margin-bottom:20px}
    .score-top strong{font-size:18px}
    .status{padding:6px 10px;border-radius:999px;background:rgba(242,184,75,.16);color:#ffd98a;font-size:12px;font-weight:850}
    .match-row{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:16px;
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.08);
      margin-bottom:12px;
    }
    .team{display:flex;flex-direction:column;gap:4px}
    .team.right{text-align:right}
    .team span{color:var(--muted);font-size:13px}
    .score-num{
      display:flex;align-items:center;gap:10px;
      font-size:30px;font-weight:900;color:var(--green-2);
      font-variant-numeric:tabular-nums;
      padding:6px 14px;
      border-radius:16px;
      background:rgba(40,214,138,.09);
    }
    .score-note{color:#b8c8c1;font-size:13px;margin-top:12px}
    .mini-board{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mini{
      padding:16px;
      border-radius:20px;
      background:rgba(16,43,36,.86);
      border:1px solid rgba(40,214,138,.18);
    }
    .mini b{display:block;color:var(--green);font-size:22px;line-height:1.2}
    .mini span{font-size:12px;color:#b9cbc3}
    main{background:var(--bg-soft)}
    .section{padding:86px 0}
    .section.dark{
      background:linear-gradient(180deg,var(--bg-deeper),var(--bg-deep));
      color:var(--text-light);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-kicker{color:#168b5a;font-weight:850;font-size:14px;margin-bottom:8px}
    .section.dark .section-kicker{color:var(--green-2)}
    h2{font-size:clamp(26px,3.2vw,38px);line-height:1.28;letter-spacing:-.5px}
    .section-desc{max-width:560px;color:var(--text-soft);font-size:16px}
    .section.dark .section-desc{color:#bfd0c8}
    .timeline{
      display:grid;
      grid-template-columns:280px 1fr;
      gap:28px;
      align-items:start;
    }
    .archive-card{
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:var(--bg-card);
      box-shadow:var(--shadow-soft);
      border:1px solid var(--line);
      position:sticky;
      top:100px;
    }
    .archive-card img{height:230px;width:100%;object-fit:cover;transition:var(--ease)}
    .archive-card:hover img{transform:scale(1.03)}
    .archive-body{padding:22px}
    .archive-body p{color:var(--text-soft);margin-top:10px}
    .timeline-list{display:grid;gap:16px}
    .timeline-item{
      display:grid;
      grid-template-columns:120px 1fr;
      gap:20px;
      align-items:stretch;
      padding:20px;
      border:1px solid var(--line);
      border-radius:22px;
      background:#fff;
      box-shadow:0 8px 26px rgba(8,20,16,.05);
      transition:var(--ease);
    }
    .timeline-item:hover{transform:translateY(-2px);box-shadow:var(--shadow-soft);border-color:rgba(40,214,138,.36)}
    .time-badge{
      border-radius:18px;
      background:linear-gradient(180deg,var(--bg-deep),#153d32);
      color:#fff;
      padding:14px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      min-height:112px;
    }
    .time-badge b{font-size:24px;color:var(--amber)}
    .time-badge span{font-size:13px;color:#c6d7cf}
    .timeline-content h3{font-size:20px;margin-bottom:8px}
    .timeline-content p{color:var(--text-soft)}
    .bar{height:8px;border-radius:999px;background:#e8eee9;margin-top:16px;overflow:hidden}
    .bar i{display:block;height:100%;background:linear-gradient(90deg,var(--green),var(--amber));border-radius:999px}
    .score-section-grid{
      display:grid;
      grid-template-columns:1.3fr .7fr;
      gap:26px;
      align-items:start;
    }
    .score-table{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .score-table-head,.score-line{
      display:grid;
      grid-template-columns:1.1fr .8fr .8fr .9fr;
      gap:12px;
      align-items:center;
      padding:16px 20px;
    }
    .score-table-head{
      background:var(--bg-deep);
      color:#dcebe4;
      font-weight:850;
      font-size:13px;
    }
    .score-line{border-top:1px solid var(--line);transition:var(--ease)}
    .score-line:hover{background:#f8fbf7}
    .score-line strong{font-size:16px}
    .score-line span{color:var(--text-soft);font-size:14px}
    .score-pill{justify-self:start;padding:5px 10px;border-radius:999px;background:rgba(40,214,138,.1);color:#168b5a;font-weight:850;font-size:13px}
    .side-panel{
      border-radius:var(--radius-lg);
      background:var(--bg-deep);
      color:var(--text-light);
      padding:26px;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow-soft);
    }
    .side-panel h3{font-size:22px;margin-bottom:12px}
    .side-panel p{color:#c4d4cd}
    .read-list{display:grid;gap:12px;margin-top:20px}
    .read-list li{
      list-style:none;
      display:flex;
      gap:10px;
      color:#d9e8e1;
      align-items:flex-start;
    }
    .read-list li:before{content:"✓";color:var(--green);font-weight:900}
    .steps{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
      counter-reset:step;
    }
    .step{
      counter-increment:step;
      position:relative;
      padding:22px;
      min-height:230px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 8px 26px rgba(8,20,16,.05);
      transition:var(--ease);
    }
    .step:hover{transform:translateY(-3px);box-shadow:var(--shadow-soft);border-color:rgba(40,214,138,.34)}
    .step:before{
      content:counter(step,decimal-leading-zero);
      display:inline-grid;place-items:center;
      width:42px;height:42px;border-radius:14px;
      background:var(--bg-deep);
      color:var(--green);
      font-weight:900;
      margin-bottom:18px;
    }
    .step h3{font-size:18px;margin-bottom:10px}
    .step p{color:var(--text-soft);font-size:15px}
    .check-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    }
    .check-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(237,247,242,.14);
      border-radius:22px;
      padding:22px;
      display:flex;
      gap:16px;
      transition:var(--ease);
    }
    .check-card:hover{background:rgba(255,255,255,.09);transform:translateY(-2px);border-color:rgba(40,214,138,.32)}
    .check-icon{
      width:38px;height:38px;border-radius:50%;
      display:grid;place-items:center;
      flex:0 0 auto;
      background:rgba(40,214,138,.13);
      color:var(--green);
      font-weight:900;
    }
    .check-card.warning .check-icon{background:rgba(242,184,75,.16);color:var(--amber)}
    .check-card h3{font-size:18px;margin-bottom:6px}
    .check-card p{color:#c8d9d1;font-size:15px}
    .article-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
    }
    .feature-article{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:0;
      overflow:hidden;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
      min-height:360px;
    }
    .feature-article:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
    .feature-article .pic{overflow:hidden}
    .feature-article img{height:100%;width:100%;object-fit:cover;transition:var(--ease)}
    .feature-article:hover img{transform:scale(1.03)}
    .article-body{padding:28px;display:flex;flex-direction:column;justify-content:center}
    .article-body h3{font-size:26px;line-height:1.35;margin:14px 0}
    .article-body p{color:var(--text-soft)}
    .meta{font-size:13px;color:#718178;margin-top:18px}
    .compact-list{display:grid;gap:16px}
    .compact-card{
      display:grid;
      grid-template-columns:128px 1fr;
      gap:16px;
      padding:14px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 8px 24px rgba(8,20,16,.05);
      transition:var(--ease);
    }
    .compact-card:hover{transform:translateY(-2px);border-color:rgba(40,214,138,.32);box-shadow:var(--shadow-soft)}
    .compact-card .thumb{border-radius:16px;overflow:hidden;min-height:112px}
    .compact-card img{height:100%;width:100%;object-fit:cover;transition:var(--ease)}
    .compact-card:hover img{transform:scale(1.03)}
    .compact-card h3{font-size:18px;line-height:1.42;margin:8px 0 6px}
    .compact-card p{font-size:14px;color:var(--text-soft);line-height:1.65}
    .evidence-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .evidence{
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:22px;
      box-shadow:0 8px 26px rgba(8,20,16,.05);
    }
    .evidence b{display:block;font-size:30px;color:var(--bg-deep);line-height:1.1}
    .evidence span{display:block;margin-top:8px;color:var(--text-soft);font-size:14px}
    .risk-banner{
      border-radius:28px;
      padding:30px;
      background:linear-gradient(135deg,#fff7e4,#ffffff);
      border:1px solid rgba(242,184,75,.36);
      box-shadow:var(--shadow-soft);
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:22px;
      align-items:center;
    }
    .risk-symbol{
      width:58px;height:58px;border-radius:18px;background:var(--amber);color:#3d2a06;
      display:grid;place-items:center;font-size:28px;font-weight:900;
    }
    .risk-banner h2{font-size:26px}
    .risk-banner p{color:#6f5a2a;margin-top:6px}
    .faq-list{display:grid;gap:14px;max-width:920px;margin:0 auto}
    details{
      border:1px solid var(--line);
      border-radius:20px;
      background:#fff;
      padding:0;
      box-shadow:0 8px 24px rgba(8,20,16,.05);
      overflow:hidden;
    }
    details[open]{border-color:rgba(40,214,138,.35)}
    summary{
      list-style:none;
      cursor:pointer;
      padding:20px 24px;
      font-weight:850;
      display:flex;
      justify-content:space-between;
      gap:20px;
      align-items:center;
    }
    summary::-webkit-details-marker{display:none}
    summary:after{content:"+";font-size:24px;color:var(--green);line-height:1}
    details[open] summary:after{content:"–"}
    details p{padding:0 24px 22px;color:var(--text-soft)}
    .cta{
      background:
        linear-gradient(115deg,rgba(7,17,14,.95),rgba(16,43,36,.9)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      color:var(--text-light);
      border-radius:34px;
      padding:46px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:26px;
      align-items:center;
      overflow:hidden;
      position:relative;
    }
    .cta:before{
      content:"";
      position:absolute;right:-80px;top:-80px;width:260px;height:260px;border-radius:50%;
      background:rgba(40,214,138,.16);
    }
    .cta > *{position:relative}
    .cta p{color:#c6d7cf;margin-top:10px;max-width:720px}
    .site-footer{
      background:#07110e;
      color:#d9e8e1;
      padding:58px 0 24px;
      border-top:1px solid var(--line-dark);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .7fr .9fr;
      gap:34px;
      margin-bottom:34px;
    }
    .footer-brand strong{font-size:20px}
    .footer-brand p,.footer-col p{color:#a9bbb3;margin-top:12px}
    .footer-col h3{font-size:16px;margin-bottom:14px;color:#fff}
    .footer-links{display:grid;gap:10px}
    .footer-links a{color:#b8c9c1;transition:var(--ease)}
    .footer-links a:hover{color:var(--green);padding-left:3px}
    .footer-bottom{
      border-top:1px solid var(--line-dark);
      padding-top:20px;
      color:#8fa199;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    @media (max-width:1024px){
      .hero-inner,.score-section-grid,.article-layout,.timeline,.cta{grid-template-columns:1fr}
      .steps{grid-template-columns:repeat(2,1fr)}
      .evidence-grid{grid-template-columns:repeat(2,1fr)}
      .archive-card{position:static}
      .hero-inner{min-height:auto;padding:70px 0}
      .risk-banner{grid-template-columns:auto 1fr}
      .risk-banner .btn{grid-column:1/-1;justify-self:start}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--container))}
      .nav-wrap{min-height:66px}
      .brand-text strong{font-size:15px;white-space:normal}
      .brand-text span{display:none}
      .menu-toggle{display:flex}
      .nav-menu{
        position:absolute;
        left:14px;right:14px;top:74px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        background:#07110e;
        padding:14px;
        border:1px solid var(--line-dark);
        border-radius:22px;
        box-shadow:0 20px 60px rgba(0,0,0,.32);
      }
      .nav-menu.open{display:flex}
      .nav-menu a{padding:13px 14px}
      .header-action .btn{display:none}
      .section{padding:56px 0}
      .section-head{display:block}
      .section-desc{margin-top:12px}
      .mini-board,.check-grid,.footer-grid{grid-template-columns:1fr}
      .timeline-item{grid-template-columns:1fr}
      .time-badge{min-height:auto}
      .score-table{overflow-x:auto}
      .score-table-head,.score-line{min-width:650px}
      .feature-article{grid-template-columns:1fr}
      .feature-article img{height:230px}
      .cta{padding:30px;border-radius:26px}
    }
    @media (max-width:520px){
      body{font-size:15px}
      .hero-actions,.cta .btn,.risk-banner .btn{width:100%}
      .btn{width:100%;padding-left:16px;padding-right:16px}
      .match-row{grid-template-columns:1fr;gap:10px}
      .team.right{text-align:left}
      .score-num{justify-content:center}
      .steps,.evidence-grid{grid-template-columns:1fr}
      .compact-card{grid-template-columns:1fr}
      .compact-card .thumb{height:180px}
      .risk-banner{grid-template-columns:1fr;padding:24px}
      .footer-bottom{display:block}
      h1{letter-spacing:-.5px}
    }

/* roulang page: category1 */
:root {
      --bg-deep: #0E1110;
      --bg-panel: #102B24;
      --bg-panel-2: #173B31;
      --bg-soft: #F5F7F3;
      --bg-card: #FFFFFF;
      --text-main: #16211D;
      --text-muted: #60706A;
      --text-light: #EEF8F3;
      --text-light-muted: rgba(238, 248, 243, .72);
      --brand: #28D68A;
      --brand-dark: #0D7E55;
      --amber: #F2B84B;
      --amber-soft: #FFF4D8;
      --warning: #D98A35;
      --line: rgba(22, 33, 29, .12);
      --line-dark: rgba(238, 248, 243, .16);
      --shadow-sm: 0 10px 28px rgba(14, 17, 16, .08);
      --shadow-md: 0 20px 50px rgba(14, 17, 16, .14);
      --shadow-dark: 0 22px 60px rgba(0, 0, 0, .32);
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1200px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      color: var(--text-main);
      background: var(--bg-soft);
      line-height: 1.78;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      width: 100%;
      max-width: 100%;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
      background: transparent;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 15px;
      padding: 13px 15px;
      color: var(--text-main);
      background: #fff;
      transition: var(--ease);
      outline: none;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 4px rgba(40, 214, 138, .14);
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(14, 17, 16, .94);
      border-bottom: 1px solid var(--line-dark);
      backdrop-filter: blur(10px);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--text-light);
      font-weight: 800;
      letter-spacing: .01em;
      white-space: nowrap;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--brand), var(--amber));
      color: #07120F;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      box-shadow: 0 10px 26px rgba(40, 214, 138, .2);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.18;
    }

    .logo-text strong {
      font-size: 17px;
    }

    .logo-text span {
      font-size: 12px;
      color: var(--text-light-muted);
      font-weight: 500;
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-menu a {
      position: relative;
      display: inline-flex;
      align-items: center;
      padding: 10px 14px;
      border-radius: 999px;
      color: rgba(238, 248, 243, .78);
      font-size: 15px;
      transition: var(--ease);
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible {
      color: var(--text-light);
      background: rgba(40, 214, 138, .10);
      outline: none;
    }

    .nav-menu a.active {
      color: #07120F;
      background: var(--brand);
      font-weight: 700;
    }

    .header-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      color: var(--text-light);
      border: 1px solid rgba(40, 214, 138, .38);
      background: rgba(40, 214, 138, .08);
      font-weight: 700;
      transition: var(--ease);
    }

    .header-action:hover,
    .header-action:focus-visible {
      transform: translateY(-1px);
      background: rgba(40, 214, 138, .16);
      border-color: var(--brand);
      outline: none;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid var(--line-dark);
      color: var(--text-light);
      align-items: center;
      justify-content: center;
      transition: var(--ease);
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      position: relative;
      transition: var(--ease);
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-toggle span::before {
      top: -6px;
    }

    .menu-toggle span::after {
      top: 6px;
    }

    .menu-toggle.is-open span {
      background: transparent;
    }

    .menu-toggle.is-open span::before {
      top: 0;
      transform: rotate(45deg);
      background: var(--text-light);
    }

    .menu-toggle.is-open span::after {
      top: 0;
      transform: rotate(-45deg);
      background: var(--text-light);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      transition: var(--ease);
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--brand);
      color: #07120F;
      box-shadow: 0 12px 28px rgba(40, 214, 138, .22);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-2px);
      filter: brightness(1.04);
      border-color: rgba(255, 255, 255, .45);
      outline: none;
    }

    .btn-secondary {
      color: var(--text-light);
      border-color: rgba(238, 248, 243, .28);
      background: rgba(238, 248, 243, .06);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(40, 214, 138, .12);
      border-color: var(--brand);
      outline: none;
      transform: translateY(-2px);
    }

    .btn-light {
      color: var(--text-main);
      border-color: var(--line);
      background: #fff;
      box-shadow: var(--shadow-sm);
    }

    .btn-light:hover,
    .btn-light:focus-visible {
      border-color: var(--brand);
      transform: translateY(-2px);
      outline: none;
    }

    .page-hero {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: var(--text-light);
      background:
        linear-gradient(100deg, rgba(14, 17, 16, .95) 0%, rgba(16, 43, 36, .88) 44%, rgba(14, 17, 16, .58) 100%),
        url("/assets/images/backpic/back-2.webp") center / cover no-repeat;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      inset: auto -15% -35% -15%;
      height: 260px;
      background: radial-gradient(circle, rgba(40, 214, 138, .24), transparent 68%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 42px;
      align-items: center;
      padding: 82px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 7px 12px;
      border-radius: 999px;
      color: #07120F;
      background: var(--amber);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .02em;
      margin-bottom: 22px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #07120F;
    }

    h1 {
      font-size: clamp(30px, 5vw, 48px);
      line-height: 1.18;
      font-weight: 850;
      letter-spacing: -.03em;
      max-width: 820px;
      margin-bottom: 20px;
    }

    .hero-lead {
      font-size: 17px;
      line-height: 1.9;
      color: var(--text-light-muted);
      max-width: 760px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .hero-notes {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .note-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 8px 12px;
      color: rgba(238, 248, 243, .86);
      background: rgba(238, 248, 243, .08);
      border: 1px solid rgba(238, 248, 243, .14);
      font-size: 13px;
    }

    .note-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--brand);
      box-shadow: 0 0 0 4px rgba(40, 214, 138, .12);
    }

    .hero-panel {
      border: 1px solid rgba(238, 248, 243, .14);
      border-radius: 28px;
      background: rgba(14, 17, 16, .72);
      box-shadow: var(--shadow-dark);
      overflow: hidden;
    }

    .panel-cover {
      position: relative;
      height: 176px;
      overflow: hidden;
    }

    .panel-cover img {
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
    }

    .panel-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(14, 17, 16, .06), rgba(14, 17, 16, .88));
    }

    .panel-badge {
      position: absolute;
      left: 18px;
      bottom: 16px;
      z-index: 1;
      display: inline-flex;
      padding: 7px 11px;
      border-radius: 999px;
      background: var(--brand);
      color: #07120F;
      font-weight: 900;
      font-size: 13px;
    }

    .panel-body {
      padding: 22px;
    }

    .score-lines {
      display: grid;
      gap: 12px;
      margin-bottom: 18px;
    }

    .score-line {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: 16px;
      background: rgba(238, 248, 243, .06);
      border: 1px solid rgba(238, 248, 243, .10);
    }

    .score-line strong {
      font-size: 16px;
    }

    .score-line span {
      display: block;
      color: var(--text-light-muted);
      font-size: 13px;
      margin-top: 2px;
    }

    .score-num {
      font-size: 24px;
      line-height: 1;
      font-weight: 900;
      color: var(--brand);
      font-variant-numeric: tabular-nums;
    }

    .panel-tip {
      padding: 14px;
      border-radius: 16px;
      color: rgba(238, 248, 243, .78);
      background: rgba(242, 184, 75, .10);
      border: 1px solid rgba(242, 184, 75, .24);
      font-size: 14px;
    }

    .section {
      padding: 84px 0;
    }

    .section.dark {
      color: var(--text-light);
      background: var(--bg-deep);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 10px;
      color: var(--brand-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .dark .section-kicker {
      color: var(--brand);
    }

    h2 {
      font-size: clamp(26px, 3.8vw, 36px);
      line-height: 1.25;
      letter-spacing: -.02em;
      font-weight: 820;
      margin-bottom: 10px;
    }

    .section-desc {
      max-width: 720px;
      color: var(--text-muted);
      font-size: 16px;
    }

    .dark .section-desc {
      color: var(--text-light-muted);
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .filter-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--text-muted);
      background: #F8FAF6;
      border: 1px solid var(--line);
      font-weight: 700;
      transition: var(--ease);
    }

    .filter-tag.active,
    .filter-tag:hover,
    .filter-tag:focus-visible {
      color: #07120F;
      background: var(--brand);
      border-color: var(--brand);
      outline: none;
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 28px;
      align-items: start;
    }

    .featured-card {
      display: grid;
      grid-template-columns: 42% 1fr;
      overflow: hidden;
      min-height: 324px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
      transition: var(--ease);
    }

    .featured-card:hover {
      transform: translateY(-3px);
      border-color: rgba(40, 214, 138, .45);
    }

    .featured-media {
      position: relative;
      overflow: hidden;
      min-height: 280px;
    }

    .featured-media img {
      height: 100%;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .featured-card:hover .featured-media img {
      transform: scale(1.035);
    }

    .featured-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(14,17,16,.04), rgba(14,17,16,.32));
    }

    .featured-content {
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .01em;
    }

    .badge.review {
      color: var(--brand-dark);
      border: 1px solid rgba(40, 214, 138, .45);
      background: rgba(40, 214, 138, .08);
    }

    .badge.score {
      color: var(--text-light);
      background: var(--bg-panel);
    }

    .badge.rule {
      color: #6A4300;
      background: var(--amber-soft);
      border: 1px solid rgba(242, 184, 75, .45);
    }

    .badge.risk {
      color: #7B4713;
      background: #FFF0E1;
      border: 1px solid rgba(217, 138, 53, .38);
    }

    .featured-content h3 {
      font-size: clamp(23px, 3vw, 31px);
      line-height: 1.28;
      margin-bottom: 14px;
      letter-spacing: -.02em;
    }

    .featured-content p {
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--text-muted);
      font-size: 13px;
      margin-bottom: 22px;
    }

    .article-list {
      display: grid;
      gap: 18px;
      margin-top: 22px;
    }

    .article-card {
      display: grid;
      grid-template-columns: 168px 1fr;
      gap: 20px;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      transition: var(--ease);
    }

    .article-card:hover {
      transform: translateY(-2px);
      border-color: rgba(40, 214, 138, .42);
      box-shadow: var(--shadow-md);
    }

    .article-thumb {
      overflow: hidden;
      border-radius: 18px;
      min-height: 132px;
      background: #DCE5DE;
    }

    .article-thumb img {
      height: 100%;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .article-card:hover .article-thumb img {
      transform: scale(1.035);
    }

    .article-body h3 {
      font-size: 20px;
      line-height: 1.38;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-body p {
      color: var(--text-muted);
      line-height: 1.75;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 12px;
    }

    .side-stack {
      display: grid;
      gap: 18px;
      position: sticky;
      top: 98px;
    }

    .side-card {
      padding: 22px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .side-card.dark-side {
      color: var(--text-light);
      background: linear-gradient(145deg, var(--bg-panel), #0B1C18);
      border-color: rgba(238, 248, 243, .14);
    }

    .side-card h3 {
      font-size: 19px;
      margin-bottom: 14px;
    }

    .keyword-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .keyword-cloud span {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--text-muted);
      background: #F8FAF6;
      border: 1px solid var(--line);
      font-size: 13px;
      transition: var(--ease);
    }

    .keyword-cloud span:hover {
      color: #07120F;
      background: var(--brand);
      border-color: var(--brand);
    }

    .info-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .info-list li {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 11px;
      border-bottom: 1px solid var(--line);
      color: var(--text-muted);
      font-size: 14px;
    }

    .info-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .info-list strong {
      color: var(--text-main);
      font-weight: 800;
      text-align: right;
    }

    .dark-side .info-list li {
      color: var(--text-light-muted);
      border-color: rgba(238, 248, 243, .16);
    }

    .dark-side .info-list strong {
      color: var(--brand);
    }

    .risk-note {
      color: var(--text-light-muted);
      font-size: 14px;
    }

    .risk-note strong {
      color: var(--amber);
    }

    .step-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .step-card {
      position: relative;
      padding: 24px 18px;
      min-height: 210px;
      border-radius: 24px;
      background: rgba(238, 248, 243, .06);
      border: 1px solid rgba(238, 248, 243, .13);
      transition: var(--ease);
    }

    .step-card:hover {
      transform: translateY(-3px);
      background: rgba(40, 214, 138, .08);
      border-color: rgba(40, 214, 138, .42);
    }

    .step-no {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #07120F;
      background: var(--brand);
      font-weight: 900;
      margin-bottom: 18px;
      font-variant-numeric: tabular-nums;
    }

    .step-card h3 {
      font-size: 18px;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .step-card p {
      color: var(--text-light-muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .check-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .check-card {
      padding: 24px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      transition: var(--ease);
    }

    .check-card:hover {
      transform: translateY(-2px);
      border-color: rgba(40, 214, 138, .42);
    }

    .check-icon {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(40, 214, 138, .12);
      color: var(--brand-dark);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .check-card h3 {
      font-size: 19px;
      margin-bottom: 8px;
    }

    .check-card p {
      color: var(--text-muted);
      font-size: 15px;
    }

    .pagination {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
    }

    .pagination a,
    .pagination span {
      min-width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--text-muted);
      font-weight: 800;
      transition: var(--ease);
    }

    .pagination span.current {
      background: var(--bg-panel);
      color: var(--text-light);
      border-color: var(--bg-panel);
    }

    .pagination a:hover,
    .pagination a:focus-visible {
      border-color: var(--brand);
      color: var(--brand-dark);
      outline: none;
    }

    .faq-list {
      display: grid;
      gap: 14px;
      max-width: 940px;
      margin: 0 auto;
    }

    .faq-item {
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      text-align: left;
      color: var(--text-main);
      font-weight: 850;
      font-size: 17px;
      transition: var(--ease);
    }

    .faq-question:hover,
    .faq-question:focus-visible {
      color: var(--brand-dark);
      outline: none;
    }

    .faq-question .plus {
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(40, 214, 138, .12);
      color: var(--brand-dark);
      font-weight: 900;
    }

    .faq-answer {
      display: none;
      padding: 0 22px 20px;
      color: var(--text-muted);
    }

    .faq-item.is-open .faq-answer {
      display: block;
    }

    .faq-item.is-open .plus {
      background: var(--brand);
      color: #07120F;
    }

    .cta-band {
      padding: 54px;
      border-radius: 32px;
      background:
        linear-gradient(110deg, rgba(16, 43, 36, .96), rgba(14, 17, 16, .9)),
        url("/assets/images/backpic/back-3.webp") center / cover no-repeat;
      color: var(--text-light);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-dark);
    }

    .cta-band::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -90px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242, 184, 75, .26), transparent 68%);
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 780px;
    }

    .cta-content h2 {
      margin-bottom: 14px;
    }

    .cta-content p {
      color: var(--text-light-muted);
      margin-bottom: 24px;
    }

    .site-footer {
      background: #08110F;
      color: var(--text-light);
      padding: 62px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr 1fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(238, 248, 243, .12);
    }

    .footer-brand strong {
      display: block;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .footer-brand p,
    .footer-col p {
      color: var(--text-light-muted);
      font-size: 14px;
      line-height: 1.85;
    }

    .footer-col h3 {
      font-size: 16px;
      margin-bottom: 13px;
      color: var(--brand);
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--text-light-muted);
      transition: var(--ease);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--brand);
      outline: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      color: rgba(238, 248, 243, .58);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .content-layout {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(3, 1fr);
      }

      .step-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .check-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .header-inner {
        min-height: 68px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-wrap {
        position: absolute;
        top: 68px;
        left: 14px;
        right: 14px;
        display: none;
        padding: 14px;
        border-radius: 22px;
        background: #0B1512;
        border: 1px solid var(--line-dark);
        box-shadow: var(--shadow-dark);
      }

      .nav-wrap.is-open {
        display: grid;
        gap: 12px;
      }

      .nav-menu {
        display: grid;
        width: 100%;
      }

      .nav-menu a {
        justify-content: center;
      }

      .header-action {
        width: 100%;
      }

      .page-hero {
        min-height: auto;
      }

      .hero-grid {
        padding: 56px 0;
      }

      .section {
        padding: 56px 0;
      }

      .section-head {
        display: block;
      }

      .featured-card {
        grid-template-columns: 1fr;
      }

      .featured-media {
        min-height: 220px;
      }

      .article-card {
        grid-template-columns: 1fr;
      }

      .article-thumb {
        min-height: 210px;
      }

      .side-stack,
      .check-grid {
        grid-template-columns: 1fr;
      }

      .cta-band {
        padding: 34px 24px;
        border-radius: 26px;
      }

      .footer-grid,
      .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
      }
    }

    @media (max-width: 520px) {
      .logo-text span {
        display: none;
      }

      .hero-actions,
      .btn {
        width: 100%;
      }

      .btn {
        min-height: 50px;
      }

      .panel-body,
      .featured-content {
        padding: 20px;
      }

      .filter-bar {
        padding: 12px;
      }

      .filter-tag {
        flex: 1 1 auto;
      }

      .step-grid {
        grid-template-columns: 1fr;
      }

      .article-thumb {
        min-height: 170px;
      }

      .pagination a,
      .pagination span {
        min-width: 38px;
        height: 38px;
      }
    }
