:root {
  --ink: #1a1a1a;
  --paper: #faf7f0;
  --rule: #1a1a1a;
  --accent: #7a1f1f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

.masthead {
  border-bottom: 4px double var(--rule);
  padding: 1.5rem 1rem 1rem;
  text-align: center;
}

.masthead-title {
  font-size: 2.75rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.tagline {
  margin: 0.25rem 0 0;
  font-style: italic;
  color: #555;
}

main {
  max-width: 760px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.meeting-list { list-style: none; margin: 0; padding: 0; }

.meeting-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #ccc;
}

.meeting-item h2 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}

.meeting-item a {
  color: var(--ink);
  text-decoration: none;
}

.meeting-item a:hover { text-decoration: underline; }

.meta {
  color: #666;
  font-size: 0.9rem;
  font-family: Helvetica, Arial, sans-serif;
}

article h1 {
  font-size: 2.1rem;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.summary h3 { font-size: 1.1rem; }

footer {
  max-width: 760px;
  margin: 3rem auto 2rem;
  padding: 1rem;
  border-top: 1px solid #ccc;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #666;
}

.empty { color: #666; font-style: italic; }
