/* ── Post header ── */
.post-header {
  padding: 6rem 2rem 2rem;
  border-bottom: 1px solid rgba(212,136,58,0.15);
  max-width: 720px;
  margin: 0 auto;
}
.back-link {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
  padding: 0.4rem 0;
}
.back-link:hover { color: var(--muted); }

/* Override shared post-meta margin for the large-header context */
.post-header .post-meta { margin-bottom: 1.25rem; }

/* ── Post title & subhead ── */
.post-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 1rem;
}
.post-subhead {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
}

/* ── Post body ── */
.post-body {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.post-body p {
  font-family: 'Cormorant', serif;
  font-size: 1.3rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.post-body p:last-child { margin-bottom: 0; }

.post-body h3 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 2.75rem;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.post-body h3::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: rgba(212,136,58,0.3);
}
.post-body a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,136,58,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.post-body a:hover {
  color: var(--gold);
  border-color: rgba(232,197,71,0.4);
}

/* ── Responsive (page-specific) ── */
@media (max-width: 640px) {
  .post-header { padding: 4rem 1.2rem 2rem; }
  .back-link   { margin-bottom: 2rem; }
  .post-body   { padding: 2.5rem 1.2rem 4rem; }
  .post-body p { font-size: 1.15rem; line-height: 1.8; }
}
