/* ═══════════════════════════════════════════════════════
   BLOG — article + index styles
   Loaded only on /blog/ pages. Tokens inherited from main.css
   ═══════════════════════════════════════════════════════ */

/* ── Article header ──────────────────────────────────── */
.article-head {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: calc(var(--section-pad) * 0.72) 0 calc(var(--section-pad) * 0.6);
  border-bottom: 1px solid var(--gold-border);
}
.article-head__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.article-head h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.12;
  color: var(--white);
  margin: 14px 0 18px;
}
.article-head h1 em { color: var(--gold-light); font-style: italic; }
.article-head__standfirst {
  color: var(--text-mid);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 62ch;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.article-meta__dot { color: var(--gold); }

/* ── Article body ────────────────────────────────────── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.article-body > * + * { margin-top: 1.35em; }
.article-body p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-mid);
}
.article-body h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  line-height: 1.25;
  color: var(--navy-deep);
  margin-top: 2.1em;
  padding-top: 0.2em;
}
.article-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-top: 1.9em;
}
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body li {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 0.55em;
}
.article-body li::marker { color: var(--gold); }
.article-body a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--gold); }
.article-body strong { font-weight: 700; color: var(--navy-deep); }

/* Key takeaway callout */
.callout {
  border-left: 3px solid var(--gold);
  background: rgba(201, 148, 58, 0.07);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 2em 0;
}
.callout p { margin: 0; font-size: 1.02rem; }
.callout__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Inline CTA */
.article-cta {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius, 16px);
  padding: clamp(26px, 4vw, 38px);
  margin: 2.6em 0 0;
  text-align: center;
}
.article-cta h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 10px;
}
.article-cta p {
  color: var(--text-mid);
  font-size: 0.98rem;
  margin: 0 0 22px;
  max-width: 48ch;
  margin-inline: auto;
}

/* ── Blog index ──────────────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(16, 41, 96, 0.1);
  border-radius: 14px;
  padding: 30px 28px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.post-card__tag {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.post-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.42rem;
  line-height: 1.24;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a::after {
  content: '';
  position: absolute;
  inset: 0;
}
.post-card { position: relative; }
.post-card__excerpt {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-mid);
  flex-grow: 1;
}
.post-card__more {
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.post-card:hover .post-card__more { color: var(--gold); }

/* ── Breadcrumb ──────────────────────────────────────── */
.crumb {
  font-size: 0.8rem;
  color: var(--text-mid);
}
.crumb a { color: var(--gold-light); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

/* ── Related ─────────────────────────────────────────── */
.related {
  border-top: 1px solid rgba(16, 41, 96, 0.12);
  padding-top: 30px;
  margin-top: 3em;
}
.related__label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.related ul { list-style: none; padding: 0; }
.related li { margin-bottom: 10px; }
.related a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy-deep);
  text-decoration: none;
}
.related a:hover { color: var(--gold); text-decoration: underline; }

@media (max-width: 680px) {
  .post-grid { grid-template-columns: 1fr; }
  .article-body p, .article-body li { font-size: 1.01rem; }
}
