/* ─── MC Abstract · Post Personality ─── */

/* ─── Post Header ─── */
.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-family: var(--font-accent); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); background: rgba(217,79,48,0.12); border: 1px solid rgba(217,79,48,0.2); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.post-headline { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 700; 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 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-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--dark); margin: 40px 0 16px; }
.post-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--dark); margin: 32px 0 12px; }
.post-body blockquote { border-left: 3px solid var(--primary); padding: 12px 24px; color: var(--mid); font-style: italic; margin: 32px 0; background: rgba(217,79,48,0.04); }
.post-body strong { font-weight: 600; }
.post-body em { font-style: italic; }

/* Inline painting placeholders */
.painting-block { width: 100%; margin: 32px 0; }
.painting-image { width: 100%; height: 400px; background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 60%, var(--secondary) 100%); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 14px; }
.painting-caption { font-size: 13px; color: var(--mid); margin-top: 8px; text-align: center; font-style: italic; }

/* Gallery grids */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.gallery-item { aspect-ratio: 1; border-radius: 4px; overflow: hidden; }
.gallery-item-1 { background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%); }
.gallery-item-2 { background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%); }
.gallery-item-3 { background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%); }

/* Material notes */
.material-note { background: var(--dark); color: white; padding: 24px; border-radius: 4px; margin: 32px 0; border-left: 4px solid var(--primary); }
.material-label { font-family: var(--font-accent); font-size: 11px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 14px; }
.material-list { display: flex; flex-wrap: wrap; gap: 24px; font-size: 15px; }
.material-item { flex: 1; min-width: 150px; }
.material-item-label { font-family: var(--font-accent); font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; font-weight: 600; margin-bottom: 4px; letter-spacing: 0.05em; }
.material-item-value { color: white; font-weight: 500; }

/* Pull quote */
.pull-quote { border-left: 4px solid var(--primary); padding-left: 24px; margin: 32px 0; font-family: var(--font-display); font-size: 20px; font-style: italic; line-height: 1.6; color: var(--mid); }

/* Tags */
.tags { display: flex; gap: 10px; margin: 32px 0; flex-wrap: wrap; }
.tag { font-family: var(--font-accent); font-size: 13px; padding: 6px 14px; background: var(--light); color: var(--primary); border-radius: 100px; text-decoration: none; font-weight: 500; border: 1px solid var(--border); transition: background 0.2s; }
.tag:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Related stories */
.related-stories { margin: 40px 0; }
.related-stories-title { font-family: var(--font-accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.related-card { background: var(--dark); border-radius: 6px; overflow: hidden; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; border: 1px solid rgba(255,255,255,0.06); }
.related-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.related-card-image { width: 100%; height: 120px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.related-card-content { padding: 14px; }
.related-card-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--primary); line-height: 1.4; }

/* CTA strip */
.cta-strip { background: var(--dark); color: white; padding: 28px; border-radius: 6px; margin-top: 32px; text-align: center; border-left: 4px solid var(--primary); }
.cta-strip-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.cta-strip p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }

/* ─── 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-family: var(--font-accent); 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%; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@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; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .post-header-meta { flex-direction: column; gap: 8px; }
  .post-location::before { content: ''; margin: 0; }
  .gallery { grid-template-columns: 1fr; }
  .material-list { flex-direction: column; gap: 12px; }
}
