/* ============================================================
   INSIGHT ARTICLE PAGE
   Path: /insights/:slug
   Reference: prototype `.insight-page`
   ============================================================ */

.screen--insight { display: none; }
.screen--insight.active { display: block; }

.insight-scroll {
  height: calc(100vh - var(--nav-h, 56px));
  overflow-y: auto;
  background: var(--ink);
  color: var(--text);
}

.insight-doc {
  display: block;
}

.insight-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 48px 60px;
}
.insight-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--be-yellow);
  margin-bottom: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.insight-eyebrow .divider { opacity: 0.3; }
.insight-eyebrow .date { color: var(--text-mute); }
.insight-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  max-width: 20ch;
  color: var(--text);
}
.insight-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--be-yellow);
}
.insight-dek {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.45;
  color: var(--text-mute);
  max-width: 52ch;
  margin: 0 0 48px;
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}
.insight-meta .author-avatar {
  width: 36px;
  height: 36px;
  background: var(--be-yellow);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.insight-meta .author-name {
  color: var(--text);
  font-weight: 500;
  font-family: var(--mono);
}

.insight-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 48px 80px;
}
.insight-body p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
}
.insight-body p:first-child::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 72px;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--be-yellow);
}
.insight-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 48px 0 20px;
  color: var(--text);
}
.insight-body blockquote {
  margin: 48px -48px;
  padding: 32px 48px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--be-yellow);
}
.insight-body blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.insight-endcta {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 64px 48px 72px;
  border-top: 1px solid var(--ink-line);
  text-align: left;
}
.insight-endcta__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--be-yellow);
  margin-bottom: 20px;
}
.insight-endcta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--text);
}
.insight-endcta__title em {
  font-style: italic;
  color: var(--be-yellow);
  font-weight: 400;
}
.insight-endcta__lede {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 52ch;
  margin: 0 0 32px;
}
.insight-endcta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--be-yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.insight-endcta__btn:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.insight-related {
  max-width: 1040px;
  margin: 0 auto;
  padding: 60px 48px 120px;
  border-top: 1px solid var(--ink-line);
}
.insight-related-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 32px;
}
.insight-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.related-item {
  padding: 24px 0;
  border-top: 1px solid var(--ink-line);
  cursor: pointer;
  transition: color .2s ease;
  text-align: left;
  background: transparent;
  width: 100%;
  display: block;
}
.related-item:hover { color: var(--be-yellow); }
.related-item .category {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.related-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  color: inherit;
}

@media (max-width: 900px) {
  .insight-hero, .insight-body, .insight-related, .insight-endcta { padding-left: 24px; padding-right: 24px; }
  .insight-body blockquote { margin: 36px -24px; padding: 24px; }
  .insight-related-grid { grid-template-columns: 1fr; }
}
