/* css/pages.css */
/* The style sheet for the articles and statement pages. */

body {
  background: var(--paper);
}

.article-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.article-container h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-family: var(--display);
}

.article-meta {
  font-family: 'DM Mono', monospace;
  color: var(--red);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.article-container h2 {
  margin-top: 2rem;
  color: var(--red);
}

.article-container h1, 
.article-container h2, 
.article-container h3 {
  text-align: left;
}

.article-container p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  text-align: justify;
}

.back-link {
  display: inline-block;
  margin-top: 3rem;
  font-family: 'DM Mono', monospace;
}

.back-link a {
  color: var(--red);
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}