/* news-post.css — page-unique styles for a single news ARTICLE.
   Shared post chrome (.post-topheader / .post-hero / .post-divider /
   .post-date / .post-share / .post-back) lives in main.css. */

/* featured image + caption */
.post-featured img{border-radius:var(--radius-lg);width:100%;aspect-ratio:16/9;object-fit:cover;box-shadow:var(--shadow-lg)}
.post-caption{max-width:820px;margin:2rem auto 0;text-align:center;color:var(--ink-soft);font-size:1.08rem;font-style:italic}

/* body: alternating image / text blocks (grid = shared .split) */
.post-block{gap:3.5rem;margin-bottom:4.5rem}
.post-block:last-of-type{margin-bottom:0}
.post-block img{border-radius:var(--radius-lg);aspect-ratio:4/3;object-fit:cover;box-shadow:var(--shadow-md)}
.post-block .text h2{font-size:1.5rem;font-weight:800;color:var(--orange-deep);margin-bottom:1rem}
.post-block .text p{color:var(--ink-soft);font-size:1.05rem}
.post-block .text p+p{margin-top:1rem}
.post-block.reverse .media{order:2}
.post-block.reverse .text{order:1}

@media(max-width:1020px){
  .post-block.reverse .media{order:1}
  .post-block.reverse .text{order:2}
}
