/* Blog article layout (shared by /post/* pages and /blog/) */
.page-head { background: var(--ink); color: var(--white); padding: 4rem 0 3.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.crumbs { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 1rem; }
.crumbs a { color: rgba(255,255,255,.6); }
.crumbs a:hover { color: var(--yellow); }
.page-head h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 3.8vw, 2.7rem); line-height: 1.1; letter-spacing: -.02em; max-width: 860px; }
.art-meta { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: 1rem; }
.article { max-width: 760px; font-size: 1.05rem; line-height: 1.8; color: rgba(22,22,22,.85); }
.article p { margin-bottom: 1.15rem; }
.article a { color: var(--red); font-weight: 600; }
.article h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; color: var(--ink); margin: 2.2rem 0 .8rem; line-height: 1.25; }
.article h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); margin: 1.6rem 0 .6rem; }
.article ul, .article ol { margin: 0 0 1.15rem 1.4rem; }
.article li { margin-bottom: .45rem; }
.article blockquote { border-left: 3px solid var(--yellow); padding: .4rem 0 .4rem 1.2rem; margin: 1.4rem 0; color: rgba(22,22,22,.7); font-style: italic; }
.art-related { max-width: 760px; margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(0,0,0,.12); display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; align-items: center; }
.art-related a { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--red); }
.art-related .eyebrow { margin: 0; padding-top: 0; }
.art-related .eyebrow::before { display: none; }
/* Blog listing cards */
.post-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 980px; }
@media (max-width: 820px){ .post-grid { grid-template-columns: 1fr; } }
.post-card { display: block; background: var(--white); border: 1px solid rgba(0,0,0,.12); border-top: 2px solid var(--yellow); border-radius: 12px; padding: 1.7rem 1.8rem; transition: transform .15s, box-shadow .15s; }
a.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.10); }
.post-card .cat { font-family: var(--font-display); font-weight: 700; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .45rem; }
.post-card h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); line-height: 1.3; margin-bottom: .55rem; }
.post-card p { font-size: .9rem; color: rgba(22,22,22,.72); line-height: 1.6; margin: 0 0 .8rem; }
.post-card .pmeta { font-size: .78rem; color: var(--muted); }
