:root {
  --text: #1a1a1a;
  --muted: #666;
  --accent: #c00a35;
  --rule: #e5e5e5;
}

* { box-sizing: border-box; }

body {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
}

header { margin-bottom: 3rem; }

h1 { margin: 0; font-size: 2rem; letter-spacing: -0.02em; }

.tagline { margin: 0.25rem 0 0; color: var(--muted); }

h2 {
  font-size: 1.35rem;
  margin: 3rem 0 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rule);
}

h3 {
  font-size: 1rem;
  color: var(--accent);
  margin: 2rem 0 0.5rem;
}

#publications ul { list-style: none; margin: 0; padding: 0; }

#publications li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--rule);
}

.title { display: block; font-weight: 500; }

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

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