/* Slow Miles — статичный блог-прикрытие. Только HTML/CSS, без JS и внешних ресурсов. */
:root {
  --ink: #2c2f33;
  --muted: #6b7078;
  --line: #e3e1da;
  --bg: #f6f4ee;
  --card: #fffdf8;
  --accent: #5a7d5a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
header.site .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  padding-bottom: 22px;
}
header.site .brand {
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.5px;
  color: var(--ink);
}
header.site .brand small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
nav a { margin-left: 18px; font-size: 0.95rem; }

main { padding: 34px 0 10px; }
h1 { font-size: 1.9rem; line-height: 1.25; margin: 0 0 6px; }
h2 { font-size: 1.3rem; margin: 34px 0 8px; }
.meta { color: var(--muted); font-size: 0.85rem; font-style: italic; margin-bottom: 22px; }

.hero {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin: 8px 0 26px;
  border: 1px solid var(--line);
}

article + article { border-top: 1px solid var(--line); padding-top: 8px; margin-top: 8px; }
.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.post-list h3 { margin: 0 0 4px; font-size: 1.2rem; font-weight: normal; }
.post-list .meta { margin: 0 0 6px; }
.post-list p { margin: 0; color: #444; }

blockquote {
  margin: 22px 0;
  padding: 4px 18px;
  border-left: 3px solid var(--accent);
  color: #4a4d52;
  font-style: italic;
}

footer.site {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-size: 0.82rem;
}
footer.site .wrap { padding-top: 22px; padding-bottom: 30px; }
.backlink { font-size: 0.9rem; }
