/* archived.niebla.com.mx — minimal text-first archive */
:root {
  --fg: #1a1a1a;
  --muted: #666;
  --link: #155b9a;
  --rule: #ddd;
  --bg: #fdfdfa;
}
* { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0;
  font-family: Georgia, "Liberation Serif", serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
}
.site-header, .site-footer {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}
.site-header { border-bottom: 1px solid var(--rule); }
.site-footer { border-top: 1px solid var(--rule); margin-top: 3rem; }
.site-header a, .site-footer a { color: var(--muted); text-decoration: none; }
main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
h1 { font-size: 1.7rem; line-height: 1.25; margin: 0 0 0.4rem; }
h2 { font-size: 1.25rem; margin-top: 2rem; }
h3 { font-size: 1.1rem; }
.meta { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.5rem; }
.lede { color: var(--muted); }
a { color: var(--link); }
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.25rem auto;
}
figure { margin: 1.5rem 0; }
figcaption { color: var(--muted); font-size: 0.85rem; text-align: center; }
blockquote {
  border-left: 3px solid var(--rule);
  margin: 1.25rem 0;
  padding: 0.25rem 1rem;
  color: #333;
}
pre, code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
pre { overflow-x: auto; background: #f3f3ee; padding: 0.75rem 1rem; border-radius: 4px; }
hr { border: none; border-top: 1px solid var(--rule); margin: 2rem 0; }
.post-index { list-style: none; padding: 0; }
.post-index li {
  display: flex;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}
.post-index time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex: 0 0 6rem;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 0.85rem;
  padding-top: 0.15rem;
}
.post-index a { text-decoration: none; }
.post-index a:hover { text-decoration: underline; }
