 

    /* ── ARTICLE WRAPPER ── */
    article {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 20px 60px;
    }

    /* ── CATEGORY TAG ── */
    .category-tag {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 3px;
      margin: 24px 0 14px;
    }

    /* ── HEADLINE ── */
    h1 {
      font-family: 'Merriweather', serif;
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--text);
      margin-bottom: 16px;
    }
    @media(max-width:600px){ h1 { font-size: 1.5rem; } }

    /* ── SUMMARY DECK ── */
    .deck {
      font-size: 1.08rem;
      color: var(--text-light);
      border-left: 4px solid var(--primary);
      padding-left: 16px;
      margin-bottom: 20px;
      font-style: italic;
    }

    
    /* ── SUMMARY BOX ── */
    .summary-box {
      background: var(--bg-gray);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 22px 24px;
      margin-bottom: 32px;
      font-size: 0.97rem;
    }
    .summary-box strong { color: var(--primary); }

    /* ── STATS BAR ── */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 36px;
      text-align: center;
    }
    .stat {
      background: var(--bg);
      padding: 18px 12px;
    }
    .stat-number {
      font-family: 'Merriweather', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--primary);
      display: block;
    }
    .stat-label { font-size: 0.82rem; color: var(--text-light); }
    @media(max-width:540px){ .stats-bar { grid-template-columns: 1fr; } }

    /* ── TOC ── */
    .toc {
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 22px 24px;
      margin-bottom: 40px;
    }
    .toc h2 {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-light);
      margin-bottom: 14px;
      font-family: 'Source Sans 3', sans-serif;
    }
    .toc ol {
      padding-left: 18px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .toc a {
      color: var(--primary);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
    }
    .toc a:hover { text-decoration: underline; }

    /* ── SECTION HEADINGS ── */
    

    /* ── PARAGRAPHS ── */
    p { margin-bottom: 18px; color: var(--text); }

    /* ── CALLOUT BOXES ── */
    .callout {
      border-radius: 8px;
      padding: 18px 20px;
      margin: 24px 0;
      font-size: 1.3rem;
    }
    .callout.warning {
      background: var(--warning-bg);
      border-left: 5px solid var(--warning-border);
    }
    .callout.danger {
      background: var(--danger-bg);
      border-left: 5px solid var(--danger-border);
    }
    .callout.success {
      background: var(--success-bg);
      border-left: 5px solid var(--success-border);
    }
    .callout.info {
      background: var(--info-bg);
      border-left: 5px solid var(--info-border);
    }
    .callout-title {
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 1.5rem;
    }

    /* ── CHECKLIST ── */
    .checklist { list-style: none; padding: 0; margin: 14px 0 20px; }
    .checklist li {
      padding: 6px 0 6px 32px;
      position: relative;
      font-size: 1.4rem;
      border-bottom: 1px solid #f0f0f0;
    }
    .checklist li:last-child { border-bottom: none; }
    .checklist li::before {
      content: '✅';
      position: absolute;
      left: 0;
      top: 6px;
      font-size: 1.5rem;
    }
    .checklist li.red::before { content: '🔴'; }
    .checklist li.orange::before { content: '⚠️'; }
    .checklist li.blue::before { content: '📋'; }

    
    
    
    /* ── DATA TABLE ── */
    .data-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0 28px;
      font-size: 1.4rem;
      border: 1px solid #021769;
    }
    .data-table th {
      background: #021769;
      color: #fff;
      padding: 12px 14px;
      text-align: left;
      font-weight: 700;
    }
    .data-table td {
      padding: 11px 14px;
      border-bottom: 1px solid var(--border);
    }
    .data-table tr:nth-child(even) td { background: var(--bg-gray); }
    .data-table tr:hover td { background: #ffeaea; }

    /* ── STEPS ── */
    .steps { counter-reset: step; padding: 0; list-style: none; margin: 20px 0; }
    .steps li {
      counter-increment: step;
      position: relative;
      padding: 16px 16px 16px 60px;
      margin-bottom: 12px;
      background: var(--bg-gray);
      border-radius: 8px;
      font-size: 1.4rem;
    }
    .steps li::before {
      content: counter(step);
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 32px; height: 32px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.4rem;
    }

    /* ── FAQ ── */
    

    /* ── RELATED LINKS ── */
    .related {
      background: var(--bg-gray);
      border-radius: 8px;
      padding: 22px 24px;
      margin-top: 44px;
    }
    .related h3 { margin-top: 0; font-size: 1rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; }
    .related ul { list-style: none; padding: 0; }
    .related ul li { padding: 7px 0; border-bottom: 1px solid var(--border); }
    .related ul li:last-child { border-bottom: none; }
    .related ul li a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.97rem; }
    .related ul li a:hover { text-decoration: underline; }
    .related ul li::before { content: '✔️ '; }

    

    /* ── BACK TO TOP ── */
    .back-top {
      font-size: 0.97rem;
      color: #aaa;
      text-decoration: none;
      display: inline-block;
      margin-top: 4px;
    }
    .back-top:hover { color: #021769; }

    