/* ==========================================================================
   Narratiq — prose.css
   Prose content styles for legal pages, resource articles, and comparison
   tables. Loaded globally but only renders on pages with .prose / .cmp-table.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Prose (legal & resource article copy)
   -------------------------------------------------------------------------- */
.prose h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  margin: 48px 0 14px;
}
.prose h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1E293B;
  margin: 28px 0 8px;
}
.prose p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}
.prose ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.prose ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 6px;
}
.prose a {
  color: var(--royal-500);
  text-decoration: underline;
}
.prose a:hover {
  color: var(--royal-700);
}
.prose strong {
  color: #0F172A;
}

.last-updated {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   Comparison tables (resource pages)
   -------------------------------------------------------------------------- */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 14px;
}
.cmp-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6B7280;
  border-bottom: 2px solid var(--warm-200);
}
.cmp-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #F1F0EA;
  color: #374151;
  vertical-align: middle;
}
.cmp-table tr:last-child td {
  border-bottom: none;
}
.cmp-table .col-narratiq {
  background: #F0F4FF;
  font-weight: 600;
  color: var(--ink-600);
}
.cmp-table th.col-narratiq {
  background: #E8EEFF;
  color: var(--royal-500);
}

.yes     { color: #10B981; font-weight: 600; }
.no      { color: #EF4444; font-weight: 600; }
.partial { color: #F59E0B; font-weight: 600; }
