/* Insights (blog) styles — extends styles.css, matches the TVF navy-and-gold system */

.post-hero {
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line-dark);
}
.post-hero .eyebrow { color: var(--gold-soft); }
.post-hero h1 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 10px 0 18px;
  max-width: 22ch;
}
.post-hero h1 em { color: var(--gold-soft); font-style: italic; }
.post-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
}
.post-meta a { color: var(--gold-soft); }

/* Article body */
.post-body { padding: clamp(48px, 6vw, 88px) 0; background: var(--white); }
.post-body .container.narrow { max-width: 760px; }
.post-body p { font-size: 18px; line-height: 1.72; color: var(--text); margin: 0 0 22px; }
.post-body h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  margin: 44px 0 14px;
  color: var(--ink);
}
.post-body h2 em { color: var(--gold); font-style: italic; }
.post-body strong { font-weight: 700; }
.post-body em { font-style: italic; }
.post-body ul { margin: 0 0 22px; padding-left: 22px; }
.post-body li { margin: 0 0 10px; line-height: 1.65; }
.post-body .post-lead { font-size: 20px; color: var(--text-soft); font-style: italic; margin-bottom: 30px; }
.post-body hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.post-disclaimer { font-size: 13px; font-style: italic; color: var(--muted); line-height: 1.6; }

/* Inline CTA inside an article */
.post-cta {
  margin: 44px 0 0;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.post-cta h3 { margin: 0 0 8px; font-size: 21px; color: var(--ink); }
.post-cta p { margin: 0 0 18px; font-size: 16px; color: var(--text-soft); }

/* Index grid */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 8px;
}
.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 28px;
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.insight-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(11,25,41,0.10);
}
.insight-card .ic-tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 12px;
}
.insight-card h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.25; color: var(--ink); }
.insight-card p { margin: 0 0 18px; font-size: 15px; color: var(--text-soft); line-height: 1.6; flex: 1; }
.insight-card .ic-read { font-size: 14px; font-weight: 600; color: var(--gold); }
.insight-card:hover .ic-read { color: var(--gold-soft); }

.back-link { display: inline-block; margin-bottom: 18px; font-size: 14px; color: var(--gold-soft); text-decoration: none; }
.back-link:hover { color: #fff; }
