/* Article extras — the "Keep reading" cluster at the foot of each article.
   Uses the shared tokens from styles.css so it inherits the site palette. */

.article-meta time {
  color: #6f6a62;
  font-size: 12px;
  font-weight: 750;
}

.related-reading {
  margin: 46px 0 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line, #dedbd2);
}

.related-reading h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.related-card {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line, #dedbd2);
  border-radius: 16px;
  background: var(--paper, #f8f5ec);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 23, 23, .18);
  box-shadow: var(--shadow-sm, 0 12px 32px rgba(20, 20, 20, .08));
}

.related-kind {
  color: #887000;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.related-card strong {
  font-family: "Archivo", ui-sans-serif, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
  text-wrap: balance;
}

.related-blurb {
  color: var(--muted, #69665f);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .related-grid { grid-template-columns: minmax(0, 1fr); }
}

@media print {
  .related-reading { display: none; }
}
