/*
 * Mission to Mars — Supplemental CSS
 * Core styles are inline in layout.php for performance.
 * This file is for any additional overrides or future expansion.
 */

/* Print styles */
@media print {
  #site-nav, #site-footer, .sidebar, .ad-zone { display: none; }
  body { background: white; color: black; }
  a { color: black; }
  .article-body { max-width: 100%; }
}

/* Skip link styles are defined in layout.php */

/* Mark tag for search highlights */
mark {
  background: rgba(193,68,14,0.3);
  color: var(--text);
  padding: 0 2px;
  border-radius: 2px;
}

/* Article body image captions */
.article-body figure {
  margin: 1.5rem 0;
}
.article-body figcaption {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--text3);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Responsive table wrapper */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
}
.article-body th {
  background: rgba(193,68,14,0.1);
  border-bottom: 1px solid rgba(160,82,45,0.4);
  padding: 0.6rem 0.85rem;
  text-align: left;
  color: var(--mars-dust);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-body td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid rgba(160,82,45,0.15);
  color: var(--text2);
}
