/* LLNVD – colors from logo.svg on white */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --muted: #64748b;
  --bg: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: "Orbitron", "Courier New", monospace;
  font-weight: bold;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
}

/* Top menu */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
  padding: 0.75rem 1.5rem;
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  display: block;
  height: 2.5rem;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  font-family: "Orbitron", "Courier New", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.site-nav a:hover {
  color: var(--primary);
}

/* Main content */
.main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-title {
  margin-top: 0;
  font-size: 1.5rem;
}

/* Blog list */
.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}
.post-list li:last-child {
  border-bottom: none;
}
.post-list a {
  color: var(--text);
}
.post-list a:hover {
  color: var(--primary);
}
.post-list time {
  color: var(--text-muted);
  font-size: 0.875rem;
}
