/* Supplementary styles for Markdown tables in article bodies (.prose).
   The Tailwind typography plugin's `.prose table` rules were purged at the Astro
   cutover because no article used tables then; this restores them. Kept OUT of the
   frozen site.css (the Tailwind build output) on purpose, and loaded as its own
   same-origin stylesheet so the strict CSP (style-src 'self') allows it — an inline
   <style> would be blocked. Brand CSS custom properties only, no hardcoded hex. */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: 0.8rem;
  line-height: 1.4;
}
.prose thead th {
  background: var(--color-navy-dark);
  color: var(--color-green-light);
  text-align: left;
  font-weight: 600;
}
.prose th,
.prose td {
  border: 1px solid var(--color-line);
  padding: 0.45rem 0.6rem;
  vertical-align: top;
}
.prose tbody tr:nth-child(even) {
  background: var(--color-green-soft);
}
@media (max-width: 640px) {
  .prose table {
    display: block;
    overflow-x: auto;
  }
}
