/* ════════════════════════════════════════════════════════════════
 *  NOMADIC SYSTEMS — POST PERSONALITY
 *  Thin personality layer; system.css provides nav, footer, base
 * ════════════════════════════════════════════════════════════════ */

/* ─── Post Header (dark hero) ─── */
.post-header { background: var(--dark); padding: 80px 32px 64px; }
.post-header-inner { max-width: var(--max); margin: 0 auto; }
.back-link { display: block; font-size: 13px; color: var(--primary); text-decoration: none; margin-bottom: 24px; font-weight: 500; transition: opacity 0.2s; }
.back-link:hover { opacity: 0.75; }
.post-category-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); background: rgba(53,93,122,0.12); border: 1px solid rgba(53,93,122,0.2); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.post-headline { font-size: clamp(28px, 4vw, 48px); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; color: white; margin-bottom: 24px; }
.post-header-meta { display: flex; gap: 24px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.6); }
.post-date, .post-location { display: flex; align-items: center; }
.post-location::before { content: '—'; margin-right: 10px; opacity: 0.4; }

/* ─── Post Hero Image ─── */
.post-hero { max-width: var(--max); margin: -32px auto 0; padding: 0 32px; position: relative; z-index: 1; }
.post-hero img { width: 100%; height: auto; border-radius: 6px; display: block; border: 1px solid var(--border); }

/* ─── Post Article ─── */
.post-article { padding: 60px 32px; background: white; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body p { font-size: 17px; line-height: 1.8; color: var(--dark); margin-bottom: 24px; }
.post-body h2 { font-size: 22px; font-weight: 600; color: var(--dark); margin: 40px 0 16px; letter-spacing: -0.01em; }
.post-body h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin: 32px 0 12px; letter-spacing: -0.01em; }
.post-body blockquote { border-left: 3px solid var(--primary); padding: 12px 24px; color: var(--mid); font-style: italic; margin: 32px 0; background: rgba(53,93,122,0.04); }
.post-body strong { font-weight: 600; }
.post-body em { font-style: italic; }

/* ─── Post Footer Nav ─── */
.post-footer-nav { background: white; border-top: 1px solid var(--border); padding: 24px 32px; }
.post-footer-nav-inner { max-width: var(--max); margin: 0 auto; }
.back-to-journal { font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; transition: opacity 0.2s; }
.back-to-journal:hover { opacity: 0.75; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .post-header { padding: 64px 24px 48px; }
  .post-article { padding: 48px 24px; }
  .post-body { max-width: 100%; }
}
@media (max-width: 640px) {
  .post-header { padding: 56px 20px 40px; }
  .post-article { padding: 32px 20px; }
  .post-body p { font-size: 16px; }
  .post-headline { font-size: 28px; }
  .post-header-meta { flex-direction: column; gap: 8px; }
  .post-location::before { content: ''; margin: 0; }
}
