/* Draft Journal (blog listing) redesign. Reuses ../style.css for nav /
   tokens / closing-CTA pattern so it stays visually identical to the
   homepage redesign; only the hero and post-grid are page-specific. */

/* ── HERO ── */
.rj-hero { padding: 6rem 0 4rem; border-bottom: 1px solid var(--line); }

.rj-hero-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* ── POSTS ── */
.rj-posts { padding: 4.5rem 0; border-bottom: 1px solid var(--line); }

.rj-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.rj-post-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.75rem 1.6rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

.rj-post-card:hover { border-color: var(--brass); }

.rj-post-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin-bottom: 0.9rem;
}

.rj-post-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.rj-post-excerpt {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.rj-post-readmore {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--brass-text);
}

.rj-post-card:hover .rj-post-readmore { color: var(--ink); }

/* ── CLOSING (page-specific tweaks on top of ../style.css .rd-closing) ── */
.rd-closing .btn-primary { text-decoration: none; }
.rj-inline-link { color: var(--brass-text); text-decoration: underline; text-underline-offset: 3px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .rj-hero { padding: 5rem 0 3rem; }
  .rj-posts { padding: 3.5rem 0; }
  .rj-posts-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
