/* ============================================================
   Whitakr — Insights (blog) styles
   ============================================================ */

/* ---- shared content-page nav (reused from legal) ---- */
.insights-main { padding-top: clamp(7rem, 16vh, 10rem); padding-bottom: var(--section-pad); }

/* ---- index ---- */
.insights-head { max-width: 48rem; margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.insights-head .section__title { margin-top: 0.4rem; }
.insights-head__sub { margin-top: 1.2rem; color: var(--ink-muted); font-size: var(--fs-lead); line-height: 1.5; }

.post-list { max-width: 50rem; margin: 0 auto; display: flex; flex-direction: column; }
.post-card {
  display: block; padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-top: 1px solid var(--line);
  transition: padding-left .5s var(--ease-out);
}
.post-card:last-child { border-bottom: 1px solid var(--line); }
.post-card:hover { padding-left: clamp(0.4rem, 1.5vw, 1.2rem); }
.post-card__meta { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.post-card__title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; line-height: 1.12; color: var(--ink); margin: 0.6rem 0 0.7rem; }
.post-card__excerpt { color: var(--ink-muted); max-width: 42rem; line-height: 1.6; }
.post-card__more { display: inline-block; margin-top: 1rem; font-size: var(--fs-small); color: var(--accent); }
.post-card:hover .post-card__more { text-decoration: underline; text-underline-offset: 3px; }

/* ---- article ---- */
.article { max-width: 43rem; margin: 0 auto; }
.article__eyebrow { justify-content: flex-start; }
.article__title { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 380; line-height: 1.04; letter-spacing: -0.012em; color: var(--ink); margin-top: 0.6rem; }
.article__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; align-items: center; margin-top: 1.4rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); font-size: var(--fs-small); color: var(--ink-muted); }
.article__byline { color: var(--ink-rich); }
.article__dot { color: var(--line-strong); }

.article__body { margin-top: 2.2rem; }
.article__body > p:first-of-type { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink); }
.article__body p { font-size: var(--fs-body); line-height: 1.78; color: var(--ink-rich); margin-bottom: 1.2rem; }
.article__body h2 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; color: var(--ink); line-height: 1.1; margin: 2.6rem 0 0.9rem; }
.article__body ul { margin: 0 0 1.3rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; list-style: disc; color: var(--ink-rich); }
.article__body li { line-height: 1.7; }
.article__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article__body blockquote {
  margin: 2rem 0; padding-left: 1.5rem; border-left: 2px solid var(--accent);
  font-family: var(--font-display); font-style: italic; font-size: var(--fs-h4); line-height: 1.4; color: var(--ink);
}

.article__cta {
  max-width: 43rem; margin: clamp(3rem, 6vw, 5rem) auto 0;
  background: var(--paper-card); border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(1.6rem, 4vw, 2.6rem); text-align: center;
}
.article__cta h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; color: var(--ink); line-height: 1.1; }
.article__cta p { color: var(--ink-muted); margin: 0.7rem auto 1.4rem; max-width: 32rem; }
.article__cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.article__back { max-width: 43rem; margin: 2.5rem auto 0; font-size: var(--fs-small); }
.article__back a { color: var(--ink-muted); }
.article__back a:hover { color: var(--accent); }
