:root {
  --ink: #111;
  --muted-ink: #555;
  --paper: #f7f5f2;
  --rule: #222;
  --rule-light: #bbb;
  --accent: #7a1f1f;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Libre Baskerville", serif;
  line-height: 1.6;
}

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

a:hover { text-decoration: underline; }

/* Masthead */
.masthead {
  text-align: center;
  padding: 1.5rem 1rem;
}

.paper-title {
  font-family: "Old Standard TT", serif;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  margin: 0.25rem 0;
}

.tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-ink);
}

.dateline {
  font-size: 0.85rem;
  color: var(--muted-ink);
}

/* Rules */
.rule-thick {
  border: none;
  border-top: 3px solid var(--rule);
}

.rule-light {
  border: none;
  border-top: 1px solid var(--rule-light);
}

/* Layout */
.page {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 2rem;
}

/* Article */
.headline {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

.dek {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.byline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.article-body {
  column-count: 2;
  column-gap: 2.5rem;
  column-rule: 1px solid var(--rule-light);
  text-align: justify;
}

.article-body p:first-of-type::first-letter {
  float: left;
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
  padding-right: 0.4rem;
}

/* Sidebar */
.section-title {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--rule);
  font-size: 1rem;
}

.meta {
  font-size: 0.8rem;
  color: var(--muted-ink);
}

/* Ads */
.print-ad {
  border: 2px solid var(--rule);
  padding: 1rem;
  margin: 2rem 0;
  text-align: center;
  font-family: "Old Standard TT", serif;
}

/* Classifieds */
.classifieds ul {
  list-style: none;
  padding: 0;
}

.classifieds li {
  border-bottom: 1px dotted var(--rule-light);
  padding: 0.4rem 0;
}

/* Extras */
.pull-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin: 2rem 1rem;
}

.corrections {
  border: 1px solid var(--rule);
  padding: 1rem;
  margin-top: 2rem;
  background: #faf8f5;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 0.2rem 0.4rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-ink);
  padding: 1rem;
}
