/* ZEITGEIST — Digital Broadsheet */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #faf8f5;
  color: #2a2a2a;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.65;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

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

.masthead h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2a2a2a;
  margin: 0;
}

.masthead-rule {
  border: none;
  border-top: 3px double #2a2a2a;
  margin: 0.75rem 0;
}

.masthead-meta {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navigation */
nav {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

nav a {
  color: #2a2a2a;
  text-decoration: none;
  margin: 0 1rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Stories */
.dispatch {
  margin-top: 1rem;
}

.story {
  padding: 1.75rem 0;
}

.story-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 1.75rem;
}

.story h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.story p {
  margin-bottom: 1rem;
}

.story p:last-child {
  margin-bottom: 0;
}

.source-attribution {
  font-style: italic;
  color: #555;
}

/* Dispatch footer */
.dispatch-footer {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 2rem 0 1rem;
  border-top: 3px double #2a2a2a;
  margin-top: 2rem;
  color: #666;
}

/* Archive */
.archive-list {
  list-style: none;
  padding: 0;
}

.archive-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0ddd8;
}

.archive-list a {
  color: #2a2a2a;
  text-decoration: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

.archive-list a:hover {
  text-decoration: underline;
}

.archive-list .archive-date {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: #888;
  display: block;
}

/* Story pages */
.story-page {
  max-width: 720px;
  margin: 0 auto;
}

.story-page .back-link {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-page .back-link a {
  color: #888;
  text-decoration: none;
}

.story-page .back-link a:hover {
  color: #2a2a2a;
}

.story-page .story-timestamp {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: #888;
  margin-top: 1.5rem;
}

/* Footer */
footer {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  padding: 2rem 0 1rem;
  margin-top: 3rem;
  border-top: 1px solid #e0ddd8;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 1rem;
  }

  .masthead h1 {
    font-size: 2.5rem;
  }

  .story h2 {
    font-size: 1.15rem;
  }
}
