body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #f4f1ea;
  color: #222;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

.masthead {
  background: #fff;
  border-bottom: 4px solid #111;
  padding: 2rem 0 1.5rem;
  text-align: center;
}

.paper-title {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: -1px;
}

.tagline {
  margin-top: 0.4rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  background: #111;
}

.nav a {
  color: white;
  display: inline-block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.homepage {
  margin-top: 1.5rem;
}

.card {
  background: white;
  border: 1px solid #ddd;
  padding: 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: start;
}

.section-label {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b1e1e;
  font-weight: bold;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0.25rem 0 1rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.5;
}

.button {
  display: inline-block;
  background: #8b1e1e;
  color: white;
  padding: 0.75rem 1rem;
  text-decoration: none;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-right: 0.5rem;
}

.button.secondary {
  background: #444;
}

.issue-preview iframe {
  width: 100%;
  height: 560px;
  border: 1px solid #ccc;
  background: #eee;
}

.placeholder {
  height: 560px;
  display: grid;
  place-items: center;
  background: #eee;
  border: 1px dashed #aaa;
  color: #666;
  font-family: Arial, sans-serif;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.grid h2 {
  margin-top: 0;
}

.text-link {
  color: #8b1e1e;
  font-weight: bold;
}

.footer {
  text-align: center;
  color: #555;
  padding: 2rem 1rem;
}

@media (max-width: 900px) {
  .paper-title {
    font-size: 2.4rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .issue-preview iframe,
  .placeholder {
    height: 500px;
  }
}