/* Сеть когнитивных цепочек решений — стиль */
:root {
  --bg: #f8f6f1;
  --fg: #1d1d1b;
  --muted: #5e5e5a;
  --accent: #2f4858;
  --accent-soft: #d6dde2;
  --border: #d8d4ca;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.62 "Charter", "Iowan Old Style", Georgia, "Times New Roman", serif;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 22px 64px;
}
header {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 14px;
  margin-bottom: 8px;
}
header h1 {
  font: 700 28px/1.2 "Charter", Georgia, serif;
  color: var(--accent);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
header .sub {
  color: var(--muted);
  font-style: italic;
  font-size: 15px;
}
nav {
  margin: 14px 0 22px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
nav a {
  display: inline-block;
  margin-right: 16px;
  padding: 4px 0;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
nav a:hover { border-bottom-color: var(--accent); }
article h2 {
  font: 600 22px/1.3 "Charter", Georgia, serif;
  color: var(--accent);
  margin: 28px 0 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}
article h3 {
  font: 600 17px/1.3 "Charter", Georgia, serif;
  color: var(--fg);
  margin: 18px 0 6px;
}
article p { margin: 8px 0 12px; }
article a { color: var(--accent); }
article a:hover { color: #1d3340; }
ul { padding-left: 20px; }
li { margin: 4px 0; }
.quote {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 10px 14px;
  margin: 16px 0;
  font-style: italic;
  color: #2a3a44;
  font-size: 15px;
}
.meta {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
  font-size: 15px;
}
th, td {
  border-bottom: 1px solid var(--border);
  padding: 8px 6px;
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
footer {
  margin-top: 48px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
footer a { color: var(--muted); }
@media (max-width: 600px) {
  .wrap { padding: 18px 14px 40px; }
  header h1 { font-size: 24px; }
  nav a { margin-right: 10px; }
}
