/*
Theme Name: SelfRail Basic
Description: A minimal starting theme. Edit these files and refresh — no redeploy.
Version: 1.0.0
Author: You
License: MIT
Text Domain: selfrail-basic
*/

:root {
  --ink: #18181b;
  --muted: #71717a;
  --line: #e4e4e7;
  --bg: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root { --ink: #fafafa; --muted: #a1a1aa; --line: #27272a; --bg: #09090b; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.wrap { max-width: 44rem; margin: 0 auto; padding: 3rem 1rem; }
.site-title { font-size: 1.5rem; font-weight: 600; margin: 0 0 .25rem; }
.site-title a { color: inherit; text-decoration: none; }
.tagline { color: var(--muted); margin: 0 0 2.5rem; }
.entry { border-top: 1px solid var(--line); padding: 1.75rem 0; }
.entry-title { font-size: 1.25rem; margin: 0 0 .5rem; }
.entry-title a { color: inherit; text-decoration: none; }
.entry-title a:hover { text-decoration: underline; }
.hello-selfrail { border-left: 3px solid var(--ink); padding-left: .85rem; color: var(--muted); }
.site-footer { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.25rem; color: var(--muted); font-size: .875rem; }
