/* Estilo del sitio público (michelino.com.ar). Documentos legales: se leen, no se decoran.
   Sin fuentes externas ni scripts: son páginas que tiene que poder abrir cualquiera, incluido el revisor
   de Meta, sin depender de una CDN. */
:root {
  --tinta: #16181d;
  --tenue: #5b616e;
  --linea: #e5e7eb;
  --fondo: #ffffff;
  --acento: #3f2777;
}
@media (prefers-color-scheme: dark) {
  :root { --tinta: #e8eaee; --tenue: #9aa1ad; --linea: #2a2f3a; --fondo: #14161b; --acento: #b9a6e8; }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font: 16px/1.65 -apple-system, 'Segoe UI', system-ui, sans-serif;
  color: var(--tinta);
  background: var(--fondo);
  padding: 32px 20px 64px;
}
main { max-width: 46rem; margin: 0 auto; }
h1 { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; margin-bottom: .35rem; }
h2 { font-size: 1.15rem; line-height: 1.3; margin: 2rem 0 .6rem; }
p, ul { margin-bottom: 1rem; }
ul { padding-left: 1.4rem; }
li { margin-bottom: .4rem; }
a { color: var(--acento); }
strong { font-weight: 650; }
hr { border: 0; border-top: 1px solid var(--linea); margin: 2.5rem 0 1.25rem; }
.fecha { color: var(--tenue); font-size: .875rem; margin-bottom: 1.75rem; }
.pie { color: var(--tenue); font-size: .8125rem; line-height: 1.6; }
