:root {
  --mp-text: #1a1a1a;
  --mp-muted: #5c5c5c;
  --mp-bg: #fafafa;
  --mp-card: #fff;
  --mp-accent: #667eea;
  --mp-border: #e8e8e8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
  color: var(--mp-text);
  background: var(--mp-bg);
}
a { color: var(--mp-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 720px; margin: 0 auto; padding: 24px 16px 48px; }
.site-header {
  background: var(--mp-card);
  border-bottom: 1px solid var(--mp-border);
  padding: 14px 0;
  margin-bottom: 24px;
}
.site-header .inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo { font-weight: 700; font-size: 1.1rem; color: var(--mp-text); }
.logo:hover { text-decoration: none; }
.nav-home { font-size: 0.9rem; color: var(--mp-muted); }
.article {
  background: var(--mp-card);
  border: 1px solid var(--mp-border);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.article h1 {
  font-size: 1.65rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.article .lead {
  color: var(--mp-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.article h2 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: #111;
}
.article p, .article li { margin-bottom: 12px; }
.article ul { padding-left: 1.25rem; margin: 12px 0; }
.article li { margin-bottom: 8px; }
.meta-updated {
  font-size: 0.85rem;
  color: var(--mp-muted);
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--mp-border);
}
.footer-site {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 24px 16px;
  border-top: 1px solid var(--mp-border);
  font-size: 0.88rem;
  color: var(--mp-muted);
}
.footer-site h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--mp-text);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 12px 0 8px;
}
.footer-bottom-note { margin-top: 16px; font-size: 0.8rem; }
