/* insights4vc blog distribution + reading utilities */
.article-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 20px;
}
.article-copy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0, 66, 38, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--green, #004226);
  font-family: var(--font, Inter, system-ui, sans-serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.article-copy-link:hover,
.article-copy-link:focus-visible {
  background: var(--green, #004226);
  color: var(--cream, #FBF4E2);
  border-color: var(--green, #004226);
  transform: translateY(-1px);
  outline: none;
}
.article-copy-link.is-copied {
  background: var(--green, #004226);
  color: var(--cream, #FBF4E2);
  border-color: var(--green, #004226);
}
.article-toc {
  position: fixed;
  top: 50%;
  left: clamp(18px, 3vw, 48px);
  z-index: 46;
  width: min(220px, 16vw);
  max-height: min(56vh, 520px);
  padding: 16px 16px 16px 0;
  border-right: 1px solid rgba(0, 66, 38, 0.18);
  opacity: 0;
  transform: translateY(calc(-50% + 8px));
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.article-toc.is-visible {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}
.article-toc__title {
  margin: 0 0 12px;
  color: var(--green, #004226);
  font-family: var(--font, Inter, system-ui, sans-serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.article-toc__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: calc(min(56vh, 520px) - 40px);
  overflow: hidden;
}
.article-toc__link {
  display: block;
  max-width: 100%;
  color: rgba(17, 17, 17, 0.48);
  font-family: var(--font, Inter, system-ui, sans-serif);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 0;
  transition: color 160ms ease, transform 160ms ease;
}
/* Active TOC item moves slightly right to indicate the current section. */
.article-toc__link:hover,
.article-toc__link:focus-visible,
.article-toc__link.is-active {
  color: var(--green, #004226);
  transform: translateX(4px);
  outline: none;
}
.article-body h2[id] {
  scroll-margin-top: 110px;
}
@media (max-width: 1320px) {
  .article-toc { display: none; }
}
@media (max-width: 760px) {
  .article-actions { margin-top: 16px; }
  .article-copy-link { min-height: 32px; padding: 0 12px; font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .article-copy-link,
  .article-toc,
  .article-toc__link { transition: none; }
  .article-copy-link:hover,
  .article-copy-link:focus-visible,
  .article-toc__link:hover,
  .article-toc__link:focus-visible,
  .article-toc__link.is-active { transform: none; }
}

/* Hide legacy section position indicator now that article navigation owns the left rail */
.section-indicator { display: none !important; }


/* Article hero copy link contrast */
.article-hero .article-copy-link {
  border-color: rgba(255,255,255,.34);
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.08);
}
.article-hero .article-copy-link:hover,
.article-hero .article-copy-link:focus-visible,
.article-hero .article-copy-link.is-copied {
  background: var(--white, #fff);
  border-color: var(--white, #fff);
  color: var(--green, #004226);
}

/* Final article header refinements */
.article-hero .article-reading-time {
  color: rgba(255,255,255,.92) !important;
}
.article-hero .article-reading-time::before {
  background: currentColor !important;
  opacity: .62 !important;
}
.article-toc {
  left: clamp(18px, 3vw, 48px) !important;
  right: auto !important;
  border-right: 1px solid rgba(0,66,38,.18) !important;
  border-left: 0 !important;
  padding: 16px 16px 16px 0 !important;
}
.section-indicator { display: none !important; }


/* Article share links */
.article-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: var(--green, #004226);
  font-family: var(--font, Inter, system-ui, sans-serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 0;
  opacity: .76;
  transition: opacity 180ms ease, color 180ms ease, transform 180ms ease;
}
.article-share-link:hover,
.article-share-link:focus-visible {
  opacity: 1;
  color: var(--green, #004226);
  transform: translateY(-1px);
  outline: none;
}
.article-actions::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(0,66,38,.18);
  order: 1;
}
.article-copy-link { order: 0; }
.article-share-link { order: 2; }


/* Final article nav/header contrast fixes */
.article-page .site-nav.is-scrolled {
  background: rgba(251,244,226,.96) !important;
  color: var(--text, #111) !important;
  border-bottom-color: rgba(17,17,17,.08) !important;
  backdrop-filter: blur(14px) !important;
}
.article-page .site-nav.is-scrolled .nav-links a:not(.nav-contact) {
  color: rgba(17,17,17,.72) !important;
}
.article-page .site-nav.is-scrolled .nav-links a:not(.nav-contact):hover,
.article-page .site-nav.is-scrolled .nav-links a.is-active:not(.nav-contact) {
  color: var(--green, #004226) !important;
  opacity: 1 !important;
}
.article-page .site-nav.is-scrolled .nav-contact {
  color: var(--green, #004226) !important;
  border-color: rgba(17,17,17,.18) !important;
  background: transparent !important;
}
.article-page .site-nav.is-scrolled .nav-contact:hover,
.article-page .site-nav.is-scrolled .nav-contact:focus-visible,
.article-page .site-nav.is-scrolled .nav-contact.is-active {
  background: var(--green, #004226) !important;
  color: var(--white, #fff) !important;
  border-color: var(--green, #004226) !important;
}
.article-page .site-nav.is-scrolled .nav-logo {
  filter: invert(1) !important;
  opacity: .92 !important;
}

/* Keep article hero actions white on dark covers */
.article-hero .article-copy-link {
  color: var(--white, #fff) !important;
  border-color: rgba(255,255,255,.68) !important;
  background: rgba(255,255,255,.10) !important;
}
.article-hero .article-copy-link:hover,
.article-hero .article-copy-link:focus-visible,
.article-hero .article-copy-link.is-copied {
  background: var(--white, #fff) !important;
  border-color: var(--white, #fff) !important;
  color: var(--green, #004226) !important;
}
.article-hero .article-share-link {
  color: rgba(255,255,255,.88) !important;
}
.article-hero .article-share-link:hover,
.article-hero .article-share-link:focus-visible {
  color: var(--white, #fff) !important;
}
.article-hero .article-actions::before {
  background: rgba(255,255,255,.24) !important;
}

@media (max-width: 760px) {
  .article-actions::before { display: none; }
  .article-share-link { min-height: 32px; font-size: 9px; }
}


/* Final user-requested article polish 2026-07-04 */
.article-hero::before {
  background:
    linear-gradient(0deg, rgba(0,0,0,.15), rgba(0,0,0,.15)),
    linear-gradient(180deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.32) 34%, rgba(0,0,0,.70) 100%),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.045), rgba(0,0,0,0) 36%) !important;
}
.article-hero .article-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0 !important;
  color: rgba(255,255,255,.84) !important;
}
.article-hero .article-meta > span {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}
.article-hero .article-meta > span:not(:last-child)::after {
  content: "·";
  display: inline-block;
  margin: 0 10px;
  color: rgba(255,255,255,.62);
}
.article-hero .article-reading-time {
  color: rgba(255,255,255,.92) !important;
}
.article-hero .article-reading-time::before {
  display: none !important;
}
.article-hero .article-copy-link {
  color: var(--white, #fff) !important;
  border-color: rgba(255,255,255,.76) !important;
  background: rgba(255,255,255,.08) !important;
}
.article-hero .article-copy-link:hover,
.article-hero .article-copy-link:focus-visible,
.article-hero .article-copy-link.is-copied {
  color: var(--white, #fff) !important;
  border-color: var(--white, #fff) !important;
  background: rgba(255,255,255,.16) !important;
}
.article-hero .article-share-link {
  color: rgba(255,255,255,.88) !important;
}
.article-hero .article-share-link:hover,
.article-hero .article-share-link:focus-visible {
  color: var(--white, #fff) !important;
}
.article-hero .article-actions::before {
  background: rgba(255,255,255,.24) !important;
}
html body.article-page .site-nav.is-scrolled {
  background: rgba(251,244,226,.96) !important;
  color: var(--text, #111) !important;
  border-bottom: 1px solid rgba(17,17,17,.08) !important;
  backdrop-filter: blur(14px) !important;
}
html body.article-page .site-nav.is-scrolled .nav-links a:not(.nav-contact) {
  color: rgba(17,17,17,.74) !important;
  opacity: .78 !important;
}
html body.article-page .site-nav.is-scrolled .nav-links a:not(.nav-contact):hover,
html body.article-page .site-nav.is-scrolled .nav-links a.is-active:not(.nav-contact) {
  color: var(--green, #004226) !important;
  opacity: 1 !important;
}
html body.article-page .site-nav.is-scrolled .nav-contact {
  color: var(--green, #004226) !important;
  border-color: rgba(17,17,17,.18) !important;
  background: transparent !important;
}
html body.article-page .site-nav.is-scrolled .nav-contact:hover,
html body.article-page .site-nav.is-scrolled .nav-contact:focus-visible,
html body.article-page .site-nav.is-scrolled .nav-contact.is-active {
  color: var(--white, #fff) !important;
  background: var(--green, #004226) !important;
  border-color: var(--green, #004226) !important;
}
html body.article-page .site-nav.is-scrolled .nav-logo {
  filter: invert(1) !important;
  opacity: .92 !important;
}
.article-tags {
  margin: clamp(42px, 6vw, 72px) 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0,66,38,.16);
  font-family: var(--font, Inter, system-ui, sans-serif);
}
.article-tags__label {
  margin: 0 0 10px !important;
  color: var(--green, #004226);
  font-family: var(--font, Inter, system-ui, sans-serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.article-tags__list {
  margin: 0 !important;
  color: rgba(17,17,17,.58);
  font-family: var(--font, Inter, system-ui, sans-serif);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .04em;
}
.article-toc {
  left: clamp(18px, 3vw, 48px) !important;
  right: auto !important;
  border-right: 1px solid rgba(0,66,38,.18) !important;
  border-left: 0 !important;
  padding: 16px 16px 16px 0 !important;
}
.article-toc__title {
  text-transform: uppercase !important;
}
.section-indicator { display: none !important; }


/* Final article polish: header, meta row copy link, and TOC position */
.article-page .site-nav.is-scrolled,
.article-page .site-nav.scrolled {
  height: 68px !important;
  background: rgba(251, 244, 226, .96) !important;
  color: var(--text, #111) !important;
  border-bottom: 1px solid rgba(17, 17, 17, .08) !important;
  backdrop-filter: blur(14px) !important;
}
.article-page .site-nav.is-scrolled .nav-links a:not(.nav-contact),
.article-page .site-nav.scrolled .nav-links a:not(.nav-contact) {
  color: rgba(17, 17, 17, .74) !important;
  opacity: .76 !important;
}
.article-page .site-nav.is-scrolled .nav-links a:not(.nav-contact):hover,
.article-page .site-nav.is-scrolled .nav-links a.is-active:not(.nav-contact),
.article-page .site-nav.scrolled .nav-links a:not(.nav-contact):hover,
.article-page .site-nav.scrolled .nav-links a.is-active:not(.nav-contact) {
  color: var(--green, #004226) !important;
  opacity: 1 !important;
}
.article-page .site-nav.is-scrolled .nav-contact,
.article-page .site-nav.scrolled .nav-contact {
  color: var(--green, #004226) !important;
  border-color: rgba(17, 17, 17, .18) !important;
  background: transparent !important;
}
.article-page .site-nav.is-scrolled .nav-contact:hover,
.article-page .site-nav.is-scrolled .nav-contact:focus-visible,
.article-page .site-nav.is-scrolled .nav-contact.is-active,
.article-page .site-nav.scrolled .nav-contact:hover,
.article-page .site-nav.scrolled .nav-contact:focus-visible,
.article-page .site-nav.scrolled .nav-contact.is-active {
  color: var(--white, #fff) !important;
  background: var(--green, #004226) !important;
  border-color: var(--green, #004226) !important;
}
.article-page .site-nav.is-scrolled .nav-logo,
.article-page .site-nav.scrolled .nav-logo {
  filter: invert(1) !important;
  opacity: .92 !important;
}
.article-hero .article-meta {
  align-items: center !important;
  gap: 10px 12px !important;
}
.article-hero .article-meta .article-copy-link {
  margin-left: 4px !important;
  min-height: 30px !important;
  padding: 0 13px !important;
  border-color: var(--white, #fff) !important;
  background: var(--white, #fff) !important;
  color: var(--green, #004226) !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .16) !important;
}
.article-hero .article-meta .article-copy-link:hover,
.article-hero .article-meta .article-copy-link:focus-visible,
.article-hero .article-meta .article-copy-link.is-copied {
  border-color: var(--white, #fff) !important;
  background: var(--white, #fff) !important;
  color: var(--green, #004226) !important;
  transform: translateY(-1px) !important;
}
.article-actions {
  margin-top: 18px !important;
}
.article-actions::before {
  display: none !important;
}
.article-hero .article-actions .article-share-link {
  color: rgba(255,255,255,.88) !important;
}
.article-hero .article-actions .article-share-link:hover,
.article-hero .article-actions .article-share-link:focus-visible {
  color: var(--white, #fff) !important;
}
.article-toc {
  left: clamp(18px, 3vw, 48px) !important;
  right: auto !important;
  border-right: 1px solid rgba(0,66,38,.18) !important;
  border-left: 0 !important;
  padding: 16px 16px 16px 0 !important;
}
.article-toc__title::before {
  content: "" !important;
}
.section-indicator {
  display: none !important;
}

/* Final share row polish 2026-07-04 */
.article-hero .article-meta .article-copy-link {
  display: none !important;
}
.article-hero .article-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px 14px !important;
  margin-top: 18px !important;
}
.article-hero .article-actions .article-copy-link {
  order: 0 !important;
  min-height: 30px !important;
  padding: 0 13px !important;
  border: 1px solid rgba(255,255,255,.9) !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  opacity: .92 !important;
}
.article-hero .article-actions .article-copy-link:hover,
.article-hero .article-actions .article-copy-link:focus-visible,
.article-hero .article-actions .article-copy-link.is-copied {
  border-color: #fff !important;
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}
.article-hero .article-actions .article-share-link {
  order: 2 !important;
  color: rgba(255,255,255,.88) !important;
}
.article-hero .article-actions .article-share-link:hover,
.article-hero .article-actions .article-share-link:focus-visible {
  color: #fff !important;
}


/* Logo aspect ratio safety fix */
.nav-logo, .hero-logo, .footer-hero-logo { height: auto; object-fit: contain; flex-shrink: 0; }

/* Article Read next cards */
.article-read-next {
  margin: clamp(48px, 7vw, 92px) 0 0;
  padding-top: clamp(28px, 4.5vw, 42px);
  border-top: 1px solid rgba(0,66,38,.16);
  font-family: var(--font, Inter, system-ui, sans-serif);
}
.article-read-next__header {
  display: block;
  margin-bottom: clamp(20px, 3.2vw, 30px);
}
.article-read-next__eyebrow {
  margin: 0 !important;
  color: var(--green, #004226);
  font-family: var(--serif, Georgia, serif) !important;
  font-size: clamp(30px, 4.2vw, 48px) !important;
  font-weight: 400 !important;
  line-height: .96 !important;
  letter-spacing: -.055em !important;
  text-transform: none !important;
}
.article-read-next__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
  align-items: stretch;
}
.article-read-next-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,66,38,.14);
  border-radius: 22px;
  background: rgba(251,244,226,.46);
  color: inherit;
  text-decoration: none !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.04);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}
.article-read-next-card:hover,
.article-read-next-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0,66,38,.30);
  background: rgba(251,244,226,.66);
  box-shadow: 0 24px 58px rgba(0,0,0,.075);
  outline: none;
}
.article-read-next-card__image-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(0,66,38,.08);
}
.article-read-next-card__image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center 46% !important;
  transform-origin: center center;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 520ms cubic-bezier(0.16, 1, 0.3, 1);
}
.article-read-next-card:hover .article-read-next-card__image,
.article-read-next-card:focus-visible .article-read-next-card__image {
  transform: scale(1.025);
  opacity: .96;
}
.article-read-next-card__copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.8vw, 24px);
  padding-bottom: clamp(42px, 4vw, 50px);
}
.article-read-next-card__meta {
  color: rgba(17,17,17,.50);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-read-next-card__title {
  color: var(--text, #111);
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.article-read-next-card__text {
  color: rgba(17,17,17,.62);
  font-size: 13px;
  line-height: 1.55;
}
.article-read-next-card__arrow {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--green, #004226);
  font-size: 18px;
  line-height: 1;
  transition: transform 220ms ease;
}
.article-read-next-card:hover .article-read-next-card__arrow,
.article-read-next-card:focus-visible .article-read-next-card__arrow {
  transform: translateX(3px);
}
@media (max-width: 760px) {
  .article-read-next {
    margin-top: 46px;
    padding-top: 26px;
  }
  .article-read-next__eyebrow {
    font-size: clamp(25px, 7.7vw, 34px) !important;
  }
  .article-read-next__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .article-read-next-card__image-wrap {
    aspect-ratio: 16 / 9;
  }
}
@media (prefers-reduced-motion: reduce) {
  .article-read-next-card,
  .article-read-next-card__image,
  .article-read-next-card__arrow {
    transition: none !important;
  }
  .article-read-next-card:hover,
  .article-read-next-card:focus-visible,
  .article-read-next-card:hover .article-read-next-card__image,
  .article-read-next-card:focus-visible .article-read-next-card__image,
  .article-read-next-card:hover .article-read-next-card__arrow,
  .article-read-next-card:focus-visible .article-read-next-card__arrow {
    transform: none !important;
  }
}

/* ARTICLE READING COLUMN + TOC FINAL SEPARATION FIX 2026-07-16 */
@media (min-width: 900px) {
  html body.article-page .article-after-hero > .article-body,
  html body.article-page article.article-body {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 1360px) {
  html body.article-page .article-toc {
    display: block !important;
    position: fixed !important;
    top: 50% !important;
    left: max(22px, calc(50vw - 690px)) !important;
    right: auto !important;
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
    padding: 16px 16px 16px 0 !important;
    border-left: 0 !important;
    border-right: 1px solid rgba(0, 66, 38, .18) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html body.article-page .article-toc__links {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  html body.article-page .article-toc__link {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
}

@media (max-width: 1359px) {
  html body.article-page .article-toc {
    display: none !important;
  }
}
/* ARTICLE READING COLUMN + TOC FINAL SEPARATION FIX 2026-07-16 END */
