/* ============================================================================
   JNZ Insurance — Blog article page styles
   ============================================================================
   Loaded on every /blog/<slug>/ article page (shared across articles, the way
   coverage-spoke.css is shared across coverage spokes). Depends on /styles.css
   being loaded first. Hero, header, footer, buttons, section backgrounds,
   quote-cta, and scroll-reveal all come from /styles.css.

   This file owns: the article prose column, the hero meta line (date · read
   time), and the visible byline strip.
============================================================================ */

/* ============ Hero meta line (date · read time) ============ */
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.75);
}
.post-hero-meta span[aria-hidden] { color: rgba(255, 255, 255, 0.40); }

/* ============ Article prose column ============ */
.post-article {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--jnz-charcoal);
}
.post-article h2 {
  font-size: 28px;
  font-weight: var(--fw-bold);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--jnz-navy);
  margin: 44px 0 16px;
}
.post-article h2:first-child { margin-top: 0; }
.post-article h3 {
  font-size: 20px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--jnz-navy);
  margin: 30px 0 10px;
}
.post-article p { margin: 0 0 18px; }
.post-article a {
  color: var(--jnz-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--dur-fast) var(--ease-out);
}
.post-article a:hover { color: var(--jnz-navy); }
.post-article strong { font-weight: var(--fw-bold); color: var(--jnz-navy); }
.post-article ol, .post-article ul {
  margin: 0 0 18px;
  padding-left: 24px;
}
.post-article li { margin-bottom: 12px; }
.post-article li:last-child { margin-bottom: 0; }

/* ============ Visible byline (directly under the article prose) ============ */
.post-byline {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--jnz-slate);
  max-width: 760px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--divider);
}

/* ============ Responsive ============ */
@media (max-width: 600px) {
  .post-article { font-size: 16px; line-height: 1.7; }
  .post-article h2 { font-size: 24px; margin-top: 36px; }
  .post-article h3 { font-size: 18px; }
}
