/* ─────────────────────────────────────────────
   23 MARTINI — INSIGHTS / ARTICLE TEMPLATE
   Used by /insights/index.html and every
   individual essay page.
───────────────────────────────────────────── */

/* ─── MINI HERO (article header band) ─── */
.hero-mini {
  background: var(--black);
  color: var(--white);
  padding: 56px 28px 48px;
  text-align: center;
}

.hero-mini .eyebrow {
  color: var(--blue);
}

.hero-mini h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.18;
  max-width: 760px;
  margin: 0 auto;
  color: var(--white);
}

.hero-mini .dek {
  max-width: 620px;
  margin: 18px auto 0;
  color: #c7cdd1;
  font-size: 16px;
  line-height: 1.6;
}

/* ─── ARTICLE BODY (narrow reading column) ─── */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 28px 40px;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 27px);
  line-height: 1.25;
  margin: 44px 0 16px;
  color: var(--black);
}

.article-body p {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.8;
  color: #333;
}

.article-body p:first-of-type {
  font-size: 18px;
  color: var(--black);
}

.article-body strong { color: var(--black); }

/* ─── BACK LINK ─── */
.back-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.back-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-mini .back-link {
  color: #9fb0b8;
  margin-bottom: 18px;
  display: inline-block;
}

.hero-mini .back-link:hover { color: var(--blue); }

.article-footer-nav {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px 64px;
}

/* ─── INSIGHTS LISTING PAGE ─── */
.insight-list {
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}

.insight-item {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}

.insight-item .insight-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 25px);
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 10px;
  transition: color .2s;
}

.insight-item:hover .insight-title { color: var(--blue); }

.insight-item .insight-teaser {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mid);
  max-width: 640px;
}

.insight-item .insight-read {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
