/* BLOG POST ARTICLE TEMPLATE — shared across all /blog-*.html articles */

.post-hero{position:relative;height:380px;overflow:hidden;background:var(--dark);display:flex;align-items:flex-end}
.post-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.55}
.post-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(17,20,24,.95) 0%,rgba(17,20,24,.35) 60%)}
.post-hero-content{position:relative;z-index:1;padding:2.5rem 0 2rem;max-width:760px;margin:0 auto;width:100%}
.post-hero-content .breadcrumb{color:rgba(255,255,255,.45)}
.post-hero-content .post-category{font-size:11px;letter-spacing:2.5px;text-transform:uppercase;color:var(--gold);font-weight:500;margin:.8rem 0 .6rem}
.post-hero-content h1{font-family:'Playfair Display',serif;color:white;font-size:clamp(1.8rem,4vw,2.6rem);font-weight:700;line-height:1.25;margin-bottom:1rem}
.post-hero-meta{display:flex;align-items:center;gap:12px;font-size:12px;color:rgba(255,255,255,.65)}
.post-hero-meta .author-avatar{width:32px;height:32px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:var(--dark);flex-shrink:0}
.post-hero-meta .post-date{margin-left:auto}

.post-layout{display:grid;grid-template-columns:1fr 280px;gap:3rem;align-items:start;margin-top:2.5rem}
.post-article{max-width:760px}
.post-article p{font-size:14.5px;line-height:1.9;color:var(--text-dark);margin-bottom:1.3rem}
.post-article h2{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:700;margin:2rem 0 1rem;color:var(--text-dark)}
.post-article h3{font-family:'Playfair Display',serif;font-size:1.15rem;font-weight:600;margin:1.6rem 0 .8rem;color:var(--text-dark)}
.post-article ul{margin:0 0 1.3rem 1.2rem}
.post-article li{font-size:14.5px;line-height:1.85;color:var(--text-dark);margin-bottom:.5rem}
.post-article strong{color:var(--text-dark)}

.post-cta{background:var(--gray-light);border:1px solid var(--gray-mid);border-radius:4px;padding:1.5rem 1.75rem;margin:2rem 0}
.post-cta h4{font-family:'Playfair Display',serif;font-size:1.05rem;margin-bottom:.5rem;color:var(--text-dark)}
.post-cta p{font-size:13.5px;color:var(--gray-text);margin-bottom:1rem}
.post-cta-actions{display:flex;gap:.75rem;flex-wrap:wrap}
.btn-secondary{display:inline-block;padding:11px 22px;border:1px solid var(--gray-mid);border-radius:2px;font-size:13px;color:var(--text-dark);text-decoration:none;transition:border-color .2s,color .2s;background:white}
.btn-secondary:hover{border-color:var(--gold);color:var(--gold)}

.post-share{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin:2rem 0 0;padding-top:1.5rem;border-top:1px solid var(--gray-mid)}
.post-share>span{font-size:11px;color:var(--gray-text);text-transform:uppercase;letter-spacing:1px}
.post-tags-inline{display:flex;gap:6px;flex-wrap:wrap;margin-left:auto}

@media(max-width:1024px){.post-layout{grid-template-columns:1fr}}
@media(max-width:700px){.post-hero{height:300px}}
