/* Минималистичная типографика для блога. */

:root {
  --fg: #222;
  --bg: #fafaf7;
  --muted: #666;
  --accent: #2a5a8c;
  --border: #ddd;
  --code-bg: #eee;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fg: #ddd;
    --bg: #1a1a1a;
    --muted: #888;
    --accent: #6aa9e0;
    --border: #333;
    --code-bg: #2a2a2a;
  }
}

* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

header h1 a {
  color: var(--fg);
  text-decoration: none;
}

header .tagline {
  color: var(--muted);
  margin: 0.25rem 0 0.75rem;
  font-size: 0.95rem;
}

header nav a {
  margin-right: 1rem;
  font-size: 0.9rem;
}

article header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.meta a { color: inherit; }
.meta .p-summary { display: block; margin-top: 0.5rem; font-style: italic; }

.e-content {
  margin: 1.5rem 0;
}

.e-content h2 { margin-top: 2rem; }
.e-content code {
  background: var(--code-bg);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-size: 0.9em;
}
.e-content pre {
  background: var(--code-bg);
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 0.85em;
}
.e-content pre code { background: none; padding: 0; }

.e-content table {
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.e-content th, .e-content td {
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  text-align: left;
}

.syndication {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--code-bg);
  font-size: 0.95rem;
}

.syndication p { margin: 0 0 0.5rem; }

.syndication ul {
  margin: 0;
  padding-left: 1.25rem;
}

.post-list {
  list-style: none;
  padding: 0;
}

.post-list li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border);
}

.post-list li:last-child { border-bottom: none; }

.post-list time {
  display: inline-block;
  width: 6rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}

.post-list .p-summary {
  margin: 0.25rem 0 0 6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}
