@charset "UTF-8";

  .guide-breadcrumb-link {
    font-size: 13px;
    color: var(--color-slate-700);
    text-decoration: none;
    transition: color .2s;
  }
  .guide-breadcrumb-link:hover { color: #ef4444; }

  .guide-meta-label {
    font-size: 10px;
    font-family: 'Newsreader', serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-slate-800);
    margin-bottom: 3px;
  }
  .guide-meta-value {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Newsreader', serif;
    color: var(--color-slate-600);
  }

  .guide-toc-link {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
    display: block;
  }
  .guide-toc-link:hover,
  .guide-toc-link.active {
    color: #ef4444;
    border-color: #ef4444;
    background: #fff1f2;
  }

  .guide-sidebar-cta {
    background: #0f172a;
    border-radius: 12px;
    padding: 28px;
  }
  .guide-sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #ef4444;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    transition: background .2s;
  }
  .guide-sidebar-cta-btn:hover { background: #fff; color: #0f172a; }

  .guide-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
  }
  .guide-trust-item:last-child { border-bottom: none; }
  .guide-trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff1f2;
    border: 1px solid #fecaca;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .guide-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .guide-faq-item:hover { border-color: #fca5a5; }
  .guide-faq-number {
    font-family: 'Newsreader', serif;
    font-size: 32px;
    color: var(--color-slate-500);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
  }

  .guide-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
  }
  .guide-related-card:hover {
    border-color: #fca5a5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
  }

  .guide-vote-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s, color .2s;
  }
  .guide-vote-yes { background: rgba(255,255,255,0.08); color: #fff; }
  .guide-vote-yes:hover { background: #10b981; }
  .guide-vote-no { background: rgba(255,255,255,0.04); color: #94a3b8; }
  .guide-vote-no:hover { background: rgba(255,255,255,0.1); }

  .guide-trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
  }
  .guide-trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
  }

  .cta-btn-primary {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s;
  }
  .cta-btn-primary:hover { background: #fff; color: #0f172a; }

  .cta-btn-secondary {
    display: inline-block;
    border: 1px solid #334155;
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
  }
  .cta-btn-secondary:hover { border-color: #ef4444; color: #ef4444; }

  #article h1, #article h2, #article h3,
  #article h4, #article h5, #article h6 {
    font-family: 'Newsreader', serif;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.25;
    margin-top: 2em;
    margin-bottom: 0.75em;
    scroll-margin-top: 90px;
  }

  #article h2 { font-size: 1.6rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
  #article h3 { font-size: 1.3rem; }
  #article p  { margin-bottom: 1.5em;}
  #article a  { color: #ef4444; text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
  #article a:hover { color: #0f172a; }
  #article strong { color: #0f172a; font-weight: 600; }
#article ul,
#article ol {
    margin: 0 0 1.5em 1.5em;
    padding-left: 1.5em;
}

#article ul {
    list-style: revert !important;
}

#article ol {
    list-style: revert !important;
}

#article li {
    margin-bottom: 8px;
}
#article li::marker {
    color: #ef4444 !important;
}
  #article blockquote { border-left: 3px solid #ef4444; margin: 2em 0; padding: 16px 24px; background: #fff1f2; border-radius: 0 8px 8px 0; color: #475569; font-style: italic; }
  #article blockquote p { margin: 0; }
  #article table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: 15px; }
  #article table th { background: var(--color-red-50); color: #fff; padding: 12px 16px; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
  #article table td { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; color: #475569; }
  #article table tr:hover td { background: #f8fafc; }
  #article img { width: 100%; border-radius: 8px; margin: 1.5em 0; border: 1px solid #e2e8f0; }
  #article hr { border: none; border-top: 1px solid #f1f5f9; margin: 2.5em 0; }

  @media (max-width: 768px) {
    .guide-trust-strip { gap: 16px; }
  }
