/* Silencing the Fields - site stylesheet */
:root {
  --ink: #26221c;
  --paper: #faf7f1;
  --accent: #7a4a1f;
  --accent-dark: #58350f;
  --rule: #d9d2c4;
  --soft: #6b6353;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}
header.site {
  border-bottom: 3px double var(--rule);
  padding: 1.6rem 1rem 1.1rem;
  text-align: center;
}
header.site .title {
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  margin: 0;
}
header.site .title a { color: var(--ink); text-decoration: none; }
header.site .tagline {
  color: var(--soft);
  font-style: italic;
  margin: 0.3rem 0 0;
  font-size: 0.98rem;
}
nav.site {
  border-bottom: 1px solid var(--rule);
  padding: 0.55rem 1rem;
  text-align: center;
  font-family: Verdana, Arial, sans-serif;
  font-size: 0.8rem;
}
nav.site a {
  color: var(--accent-dark);
  text-decoration: none;
  margin: 0 0.7rem;
  white-space: nowrap;
}
nav.site a:hover { text-decoration: underline; }
main {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.8rem 1.2rem 3rem;
}
h1 { font-size: 1.55rem; line-height: 1.25; margin: 0 0 0.4rem; }
h2 { font-size: 1.2rem; margin-top: 2rem; color: var(--accent-dark); }
p.kicker {
  color: var(--soft);
  font-style: italic;
  margin-top: 0;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1rem;
}
a { color: var(--accent); }
blockquote {
  margin: 1.2rem 0;
  padding: 0.6rem 1.1rem;
  border-left: 4px solid var(--rule);
  color: var(--soft);
  font-style: italic;
}
table { border-collapse: collapse; width: 100%; margin: 1.2rem 0; font-size: 0.93rem; }
th, td { border: 1px solid var(--rule); padding: 0.45rem 0.6rem; text-align: left; vertical-align: top; }
th { background: #f1ebdf; font-family: Verdana, Arial, sans-serif; font-size: 0.78rem; }
.note {
  background: #f3eee2;
  border: 1px solid var(--rule);
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  margin: 1.4rem 0;
}
footer.site {
  border-top: 3px double var(--rule);
  margin-top: 2rem;
  padding: 1.2rem 1rem 2rem;
  text-align: center;
  color: var(--soft);
  font-size: 0.82rem;
  font-family: Verdana, Arial, sans-serif;
}
footer.site a { color: var(--soft); }
@media (max-width: 600px) {
  body { font-size: 16px; }
  nav.site a { display: inline-block; margin: 0.15rem 0.45rem; }
}
