/* ============================================================
   blog-post.css — the only CSS the 12 blog posts need beyond
   style.css. Loaded BEFORE style.css so that the shared sheet's
   @media tuning for .art-body / .pull / .np still overrides these
   base values, exactly as it did when this lived inline.

   Previously each post carried a full 44KB inline copy of an older
   style.css plus an 11KB copy of the mobile-rhythm block. Of the
   1,476 declarations in that copy, 1,321 were byte-identical to
   style.css and 24 were stale values style.css has since retuned
   (vertical tightening + the gold-a11y contrast pass); the posts
   now take those from the shared sheet. What is left is this file.
   ============================================================ */

/* anchored sections clear the fixed header */
section[id],header[id],div[id].pol-sec{scroll-margin-top:88px}
@media(max-width:768px){section[id],header[id],div[id].pol-sec{scroll-margin-top:70px}}

/* article */
/* .art-hero and .page-hero are both (0,1,0) and this sheet now loads BEFORE
   style.css, so the shared .page-hero{min-height:auto;padding:...4rem} would
   win on source order and the article hero would collapse to content height.
   Scoped to .page-hero.art-hero (0,2,0) so it wins on specificity instead,
   whichever order the two sheets end up in. */
.page-hero.art-hero{min-height:60vh;padding-bottom:3rem}
/* ...and below 768px the shared sheet collapses .page-hero to content height
   (min-height:auto; padding 6.6rem 1.2rem 2.8rem). The bump above would have
   outranked that and forced the article hero back to 60vh on a phone, so the
   mobile behaviour is restated here at the same (0,2,0). */
@media(max-width:768px){.page-hero.art-hero{min-height:auto;padding-bottom:2.8rem}}
.art-meta{display:flex;gap:1.6rem;flex-wrap:wrap;margin-top:2rem;font-size:.62rem;letter-spacing:.22em;text-transform:uppercase;font-weight:600;color:rgba(22,41,74,.5)}
.art-meta b{color:var(--gold);font-weight:600}
.art-body{max-width:720px;margin:0 auto}
.art-body p{font-size:1.08rem;font-weight:300;line-height:1.9;color:rgba(22,41,74,.82);margin-bottom:1.6rem}
.art-body p.stand{
  font-family:var(--serif);font-size:1.35rem;line-height:1.6;color:var(--navy);font-weight:500;
}
.art-body h2{
  font-family:var(--serif);font-weight:500;font-size:clamp(1.7rem,3vw,2.4rem);
  line-height:1.15;margin:3.4rem 0 1.2rem;
}
.art-body h2 em{font-style:italic;color:var(--gold)}
.art-body h3{font-family:var(--serif);font-weight:600;font-size:1.35rem;margin:2.4rem 0 .9rem}
.art-body ul,.art-body ol{margin:0 0 1.6rem 0;list-style:none}
.art-body li{
  font-size:1.02rem;font-weight:300;line-height:1.75;color:rgba(22,41,74,.78);
  padding:.5rem 0;display:flex;gap:1rem;
}
.art-body li::before{content:'\2013';color:var(--gold);flex-shrink:0}
.art-body ol{counter-reset:n}
.art-body ol li{counter-increment:n}
.art-body ol li::before{content:counter(n);font-family:var(--serif);color:var(--gold);font-size:1.1rem;line-height:1.5}
.pull{
  margin:3rem 0;padding:2.2rem 2.4rem;border-left:2px solid var(--gold);
  background:rgba(169,130,60,.06);border-radius:0 6px 6px 0;
}
.pull p{
  font-family:var(--serif);font-style:italic;font-weight:500;
  font-size:clamp(1.3rem,2.2vw,1.75rem);line-height:1.45;color:var(--navy);margin:0;
}
.art-note{
  margin-top:3.4rem;padding-top:2rem;border-top:1px solid rgba(22,41,74,.12);
  font-size:.92rem;font-weight:300;line-height:1.8;color:rgba(22,41,74,.6);
}
.art-share{display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem}
.art-share a{
  font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;font-weight:600;
  color:rgba(22,41,74,.55);text-decoration:none;border-bottom:1px solid transparent;
  padding-bottom:.2rem;transition:.3s;
}
.art-share a:hover{color:var(--gold);border-bottom-color:var(--gold)}
.next-posts{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;margin-top:3rem}
@media(max-width:900px){.next-posts{grid-template-columns:1fr}}
.np{
  display:block;text-decoration:none;color:var(--navy);background:#fff;
  border:1px solid rgba(22,41,74,.1);border-radius:6px;padding:1.8rem;
  transition:transform .4s,box-shadow .4s,border-color .4s;
}
.np:hover{transform:translateY(-5px);box-shadow:0 24px 54px rgba(22,41,74,.1);border-color:rgba(169,130,60,.45)}
.np .c{font-size:.54rem;letter-spacing:.24em;text-transform:uppercase;font-weight:700;color:var(--gold)}
/* 8.6px on a phone is below a readable floor. Mobile only. */
@media(max-width:768px){.np .c{font-size:.6rem}}
.np h4{font-family:var(--serif);font-weight:500;font-size:1.2rem;line-height:1.3;margin-top:.8rem}
.np .go{margin-top:1rem;font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;font-weight:700;color:rgba(22,41,74,.4);transition:color .3s}
.np:hover .go{color:var(--gold)}
