:root {
  --text: #111;
  --muted: #555;
  --border: #e5e5e5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px;
}

.section { margin-bottom: 56px; }

h1 { font-size: 2rem; margin-bottom: 8px; }
h2 { font-size: 1.4rem; margin-bottom: 16px; }
h3 { font-size: 1.1rem; margin-bottom: 8px; }

.lead { font-size: 1.1rem; margin-bottom: 24px; }

ul { padding-left: 20px; }
li { margin-bottom: 8px; }

.card {
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 24px;
}

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

a { color: #000; text-decoration: underline; }
a:hover { text-decoration: none; }

#projects-inactive { display: none; }
