/* Insights-specific layout on top of legacy site tokens */

/* Used by insights-index.js to show/hide cards (do not rely on Tailwind bundle alone) */
.hidden {
  display: none !important;
}

/* ── Insights: hero spacing and section bands (width uses styles.css .container) ── */
body.insights-page main {
  width: 100%;
  max-width: none;
}

/* Index hero: same left-text / right-image blend as Home, Solutions, About (styles.css) */
.insights-index-main .hero.insights-hero {
  position: relative;
  overflow: hidden;
}

.insight-article-hero.hero {
  position: relative;
  min-height: 0;
  padding: calc(var(--header-height, 64px) + 48px) 0 36px;
  overflow: hidden;
}

/* Tighter band below article hero (overrides .hero + .section { padding-top: 48px }) */
.insight-article-hero.hero + .insight-article-actions.section {
  padding-top: 1.25rem;
}

/* Article pages: compact hero, no side image */
body.insights-page .insight-article-hero .hero-bg::after {
  height: 120px;
}

.insights-hero-search {
  margin-top: 1.25rem;
  max-width: 28rem;
}

.insights-search-wrap {
  margin-top: 0;
  max-width: none;
}

.insights-search-input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--color-border-subtle);
  border-radius: 6px;
  background: var(--color-paper, #fff) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%237B8580' stroke-width='2'%3E%3Ccircle cx='8' cy='8' r='5'/%3E%3Cpath d='m12 12 4 4'/%3E%3C/svg%3E") 0.75rem center no-repeat;
  color: var(--color-ink, #1f2421);
}

.insights-search-input:focus {
  outline: 2px solid var(--color-brand-accent);
  outline-offset: 1px;
  border-color: var(--color-brand-accent);
}

.insights-search-hint {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.insights-filters-section {
  position: sticky;
  top: var(--header-height, 64px);
  z-index: 40;
  padding-bottom: 1.5rem;
}

/* No gold accent bar on Insights sections without .section-header (filters, catalog, article body) */
body.insights-page .section:not(.hero):not(.cta):not(.founder) > .container:not(:has(.section-header))::before {
  content: none;
  display: none;
}

.insights-catalog-filters {
  margin: 0;
}

.insights-catalog-section {
  padding: 2.5rem 0 5rem;
}

.insights-filter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem 1.25rem;
}

.insights-filter-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  flex: 1 1 12rem;
}

.insights-filter-group legend {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
  padding: 0;
}

.insights-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.insights-catalog-filters .filter-chip {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--color-border-ui, rgba(28, 53, 45, 0.14));
  background: #fff;
  color: var(--color-brand-primary);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.insights-catalog-filters .filter-chip:hover {
  border-color: var(--color-brand-accent, #cc8a24);
  background: var(--color-accent-soft, #fbf1dd);
}

.insights-catalog-filters .filter-chip[aria-pressed='true'] {
  background: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  color: #fff;
}

.insights-catalog-filters .filter-chip[aria-pressed='true']:hover {
  border-color: var(--color-brand-primary);
  background: var(--color-brand-primary);
}

.insights-filter-sort {
  flex: 0 0 auto;
  margin-left: auto;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  min-width: 9.5rem;
}

.insights-filter-sort__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.insights-filter-sort__label {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.insights-filter-sort select {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  width: 100%;
  min-width: 9.5rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--color-border-ui);
  border-radius: 4px;
  background: #fff;
  color: var(--color-brand-primary);
}

.insights-filter-sort [data-clear-filters].btn {
  width: 100%;
  padding: 5px 12px;
  font-size: 0.8125rem;
  line-height: 1.25;
  box-shadow: 0 2px 0 0 var(--gray-300), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.insights-filter-sort [data-clear-filters].btn:hover {
  box-shadow: 0 1px 0 0 var(--gray-500), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.insights-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .insights-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .insights-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insights-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-text-secondary);
}

.insights-empty__clear {
  margin-left: 0.5rem;
  vertical-align: middle;
  padding: 6px 14px;
  font-size: 0.8125rem;
  line-height: 1.25;
}

.insights-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.insights-pagination .btn {
  min-width: 2.5rem;
  padding: 8px 14px;
  font-size: 0.875rem;
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 1.25rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  color: inherit;
}

.insight-card:hover {
  border-color: var(--color-brand-accent);
  box-shadow: 0 8px 24px rgba(28, 53, 45, 0.08);
}

.insight-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-accent-strong);
}

.insight-type-badge__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--color-brand-accent-strong);
}

.insight-card__badge {
  margin-bottom: 0.5rem;
}

.insight-article-kicker.insight-type-badge {
  margin-bottom: 1rem;
  color: var(--zanor-red);
}

.insight-article-kicker.insight-type-badge .insight-type-badge__icon {
  color: var(--zanor-red);
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.insight-card__title-link {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.insight-card__title-link:hover {
  color: var(--zanor-red);
}

.insight-card__summary {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.insight-card__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.insight-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.insight-chip {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--color-brand-light, #e8efeb);
  color: var(--color-brand-primary);
}

.insight-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.insight-card__actions .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
  flex: 1 1 auto;
  min-width: 5.5rem;
  text-align: center;
}

.insight-card__btn-pdf {
  flex: 0 1 auto;
}

.insight-article-hero .hero-layout--article {
  display: block;
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
}

.insight-article-hero .hero-content--article {
  max-width: none;
  position: relative;
  z-index: 1;
}

/* Article hero — align with home page type scale (Outfit + DM Sans) */
.insight-article-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.insight-article-hero .hero-tagline.insight-article-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.85rem !important;
}

.insight-article-hero .hero-subtitle.insight-article-byline {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 0 !important;
}

.insight-article-subtitle {
  margin-bottom: 1rem !important;
}

.insight-article-byline {
  margin-bottom: 0 !important;
}

.insight-author-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--zanor-red);
  text-underline-offset: 0.15em;
}

.insight-author-link:hover {
  color: var(--zanor-red);
}

.insight-author-card .insight-author-link {
  color: var(--color-brand-primary);
}

.insight-article-actions {
  padding: 1.25rem 0 1.25rem;
  content-visibility: visible;
}

.insight-article-actions > .container::before {
  display: none;
}

.insight-article-actions__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.insight-article-actions__keywords,
.insight-article-actions__tools {
  min-width: 0;
}

.insight-article-keywords {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.insight-article-topics,
.insight-article-audiences,
.insight-article-industries {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.insight-article-keywords__legend {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.insight-article-topic,
.insight-article-audience,
.insight-article-industry {
  cursor: default;
}

.insight-article-actions__tools {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.insight-article-actions__tools-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.insight-article-actions__tools-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insight-article-actions__tools .insight-reading-team {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--color-border-subtle, rgba(28, 53, 45, 0.12));
}

.insight-article-actions__tools .insight-reading-team__control {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  gap: 0.35rem;
}

.insight-article-actions__tools .share-bar--merged {
  margin: 0;
}

.insight-article-actions__tools .share-bar--merged .share-bar__actions {
  gap: 0.5rem;
}

@media (min-width: 900px) {
  .insight-article-actions__layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    column-gap: 2rem;
    align-items: start;
  }

  .insight-article-actions__keywords {
    grid-column: 1;
    justify-self: start;
    align-self: start;
    max-width: 100%;
  }

  .insight-article-actions__tools {
    grid-column: 2;
    justify-self: end;
    align-self: start;
    width: 100%;
    min-width: 220px;
    max-width: 280px;
  }

  .insight-article-actions__tools-title {
    text-align: right;
  }

  .insight-article-actions__tools .share-bar--merged .share-bar__actions {
    align-items: flex-end;
  }

  .insight-article-actions__tools .share-bar--merged .share-bar__row {
    justify-content: flex-end;
    max-width: 100%;
  }

  .insight-article-actions__tools .share-bar__chip {
    padding: 5px 8px;
    font-size: 0.6875rem;
  }

  .insight-article-actions__tools .insight-reading-team {
    display: flex;
    justify-content: flex-end;
  }
}

.share-bar--band {
  margin: 0;
}

.share-bar--band .share-bar__title {
  margin-bottom: 0.65rem;
}

.share-bar__hint {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.insight-article-body {
  padding: 1.75rem 0 5rem;
  background: var(--gray-50);
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

/* Let position:sticky work on article TOC (overflow-x:hidden on html breaks it) */
html:has(body.insight-article-page) {
  overflow-x: clip;
}

body.insight-article-page {
  overflow-x: clip;
  /* Site header + optional compact title bar (set in articleCompactHeader.ts) + gap */
  --toc-rail-offset-top: calc(
    var(--header-height, 64px) +
    var(--article-compact-header-gap, 0px) +
    var(--article-compact-header-height, 0px) +
    1rem
  );
  --toc-rail-offset-bottom: 1.5rem;
}

.insight-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem 3rem;
  align-items: stretch;
}

.insight-article-layout--with-toc .insight-article-main {
  min-width: 0;
}

.insight-article-main .insight-prose {
  margin-bottom: 0;
}

.insight-author-card {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--color-brand-light, #e8efeb);
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
}

.insight-author-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-brand-primary);
  margin: 0 0 0.75rem;
}

.insight-author-card__text {
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.forward-to-sponsor {
  margin-top: 2.5rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--color-border-ui, rgba(28, 53, 45, 0.14));
  border-radius: 12px;
  background: var(--color-paper, #fff);
}

.forward-to-sponsor__label {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.forward-to-sponsor__btn {
  display: inline-flex;
}

.forward-to-sponsor__hint {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  max-width: 36rem;
}

.insight-related {
  margin-top: 2.5rem;
}

.insight-related__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-brand-primary);
  margin: 0 0 0.75rem;
}

.insight-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.insight-related__list a {
  color: var(--color-brand-primary);
  text-decoration: underline;
}

/* Reading-team toggle — minimal label + switch */
.insight-reading-team {
  margin-top: 0;
}

.insight-reading-team__control {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  user-select: none;
}

.insight-reading-team__label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.2;
  white-space: nowrap;
}

.insight-reading-team.is-on .insight-reading-team__label {
  color: var(--color-brand-primary);
  font-weight: 600;
}

.insight-reading-team .zanor-switch__input:checked + .zanor-switch__track {
  background: var(--color-brand-accent, #cc8a24);
  border-color: var(--color-brand-accent-strong, #a36c1c);
}

.zanor-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
}

.zanor-switch__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.zanor-switch__track {
  display: block;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--gray-300, #c5cbc7);
  border: 1px solid rgba(28, 53, 45, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.zanor-switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.zanor-switch__input:focus-visible + .zanor-switch__track {
  outline: 2px solid rgba(204, 138, 36, 0.55);
  outline-offset: 2px;
}

.zanor-switch__input:checked + .zanor-switch__track {
  background: var(--zanor-green, #4caf50);
  border-color: rgba(28, 53, 45, 0.18);
}

.zanor-switch__input:checked + .zanor-switch__track .zanor-switch__thumb {
  transform: translateX(1.25rem);
}

.zanor-switch__track {
  position: relative;
}

/* Share bar */
.share-bar {
  margin-top: 0;
}

.share-bar__title {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 0.55rem;
}

.share-bar__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.share-bar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.share-bar__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: var(--zanor-red);
  background: #fff;
  border: 1px solid rgba(28, 53, 45, 0.14);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

button.share-bar__chip {
  appearance: none;
  -webkit-appearance: none;
}

/* Hover guide — desktop pointer only; aria-label covers screen readers */
@media (hover: hover) and (pointer: fine) {
  .share-bar__chip[data-share-tip] {
    position: relative;
  }

  .share-bar__chip[data-share-tip]::after {
    content: attr(data-share-tip);
    position: absolute;
    z-index: 20;
    bottom: calc(100% + 8px);
    left: 50%;
    width: max-content;
    max-width: 16rem;
    padding: 0.45rem 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    color: var(--color-ink, #1f2421);
    background: var(--white);
    border: 1px solid rgba(28, 53, 45, 0.14);
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(28, 53, 45, 0.12);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  }

  .share-bar__chip[data-share-tip]::before {
    content: '';
    position: absolute;
    z-index: 21;
    bottom: calc(100% + 2px);
    left: 50%;
    border: 5px solid transparent;
    border-top-color: var(--white);
    filter: drop-shadow(0 1px 0 rgba(28, 53, 45, 0.1));
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: opacity 0.15s ease, visibility 0.15s ease;
  }

  .share-bar__chip[data-share-tip]:hover::after,
  .share-bar__chip[data-share-tip]:hover::before,
  .share-bar__chip[data-share-tip]:focus-visible::after,
  .share-bar__chip[data-share-tip]:focus-visible::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.share-bar__chip:hover {
  background: var(--gray-50, #f5f6f5);
  color: var(--zanor-red-dark);
  border-color: rgba(204, 138, 36, 0.35);
}

.share-bar--rail {
  display: none;
}

/* Share bar — end of article (tablet) */
.share-bar--footer {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border-subtle);
}

.share-bar--footer .share-bar__title {
  font-size: 0.75rem;
  margin-bottom: 0.65rem;
}

.share-bar--footer .share-bar__row {
  gap: 0.4rem;
}

.insight-prose > h2:last-of-type,
.insight-prose > h2:nth-last-of-type(2) {
  scroll-margin-top: 6rem;
}

.insights-hero-search .hero-cred-strip + &,
.insights-hero-search {
  margin-top: 1.25rem;
}

.back-to-top.btn {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 50;
  padding: 10px 18px;
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .back-to-top.btn {
    bottom: 2rem;
  }
}

/* Floating glass TOC panel */
.floating-toc {
  display: none;
}

@media (max-width: 1023px) {
  .insight-article-layout {
    grid-template-columns: 1fr;
  }

  .insight-article-layout--with-toc {
    display: flex;
    flex-direction: column;
  }

  .insight-article-layout--with-toc .floating-toc {
    display: block;
    order: -1;
    position: static !important;
    top: auto !important;
    right: auto !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto;
    max-width: none;
    margin: 0 0 1rem;
    padding: 0;
    z-index: auto;
  }

  .insight-article-layout--with-toc .floating-toc__drawer {
    border: 1px solid var(--color-border-subtle, rgba(28, 53, 45, 0.12));
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(28, 53, 45, 0.06);
  }

  .insight-article-layout--with-toc .floating-toc__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.7rem 0.95rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-brand-primary, #1c352d);
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  .insight-article-layout--with-toc .floating-toc__summary::-webkit-details-marker {
    display: none;
  }

  .insight-article-layout--with-toc .floating-toc__summary::after {
    content: '';
    flex-shrink: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid var(--color-brand-accent, #cc8a24);
    border-bottom: 2px solid var(--color-brand-accent, #cc8a24);
    transform: rotate(45deg);
    margin-top: -0.15rem;
    transition: transform 0.2s ease;
  }

  .insight-article-layout--with-toc .floating-toc__drawer[open] .floating-toc__summary::after {
    transform: rotate(-135deg);
    margin-top: 0.15rem;
  }

  .insight-article-layout--with-toc .floating-toc__panel {
    max-height: min(50vh, 14rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    margin: 0;
    padding: 0.5rem 0.85rem 0.85rem;
    border: 0;
    border-radius: 0;
    border-top: 1px solid var(--color-border-subtle, rgba(28, 53, 45, 0.1));
    box-shadow: none;
  }

  .insight-article-layout--with-toc .floating-toc__drawer:not([open]) .floating-toc__panel {
    display: none;
  }

  .insight-article-layout--with-toc .floating-toc__glass {
    display: none;
  }

  .insight-article-layout--with-toc .floating-toc__panel .article-toc__heading {
    display: none;
  }

  .insight-article-layout--with-toc .floating-toc .article-toc__subs {
    display: none;
  }

  .insight-article-layout--with-toc .floating-toc .article-toc__link {
    font-size: 0.75rem;
    padding: 0.3rem 0.45rem 0.3rem 0.55rem;
  }

  .insight-article-layout--with-toc .insight-article-main {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .share-bar--footer,
  .share-bar--rail {
    display: none;
  }

  /* Prose + in-flow sticky TOC (same row top as article; stops at layout bottom before footer) */
  .insight-article-layout--with-toc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
    gap: 2rem 1.25rem;
    align-items: stretch;
    max-width: none;
  }

  .insight-article-layout--with-toc .insight-article-main {
    max-width: none;
  }

  .insight-article-layout--with-toc .insight-prose {
    max-width: none;
  }

  .insight-article-layout--with-toc .floating-toc {
    display: block;
    position: relative;
    align-self: stretch;
    width: 100%;
    max-width: 240px;
    min-height: 0;
    margin: 0;
    padding: 0;
    z-index: 90;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.25s ease;
  }

  .insight-article-layout--with-toc .floating-toc__drawer {
    display: block;
    position: sticky;
    top: var(--toc-rail-offset-top);
    width: 100%;
    max-height: calc(100dvh - var(--toc-rail-offset-top) - var(--toc-rail-offset-bottom));
    overflow: visible;
  }

  .insight-article-layout--with-toc .floating-toc__summary {
    display: none;
  }

  .insight-article-layout--with-toc .floating-toc__drawer .floating-toc__panel {
    display: block !important;
  }

  .insight-article-layout--with-toc .floating-toc__panel {
    position: relative;
    top: auto;
    width: 100%;
    max-height: calc(100dvh - var(--toc-rail-offset-top) - var(--toc-rail-offset-bottom) - 0.5rem);
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.floating-toc__panel {
  position: relative;
  isolation: isolate;
  pointer-events: auto;
  overflow-y: visible;
  overscroll-behavior: contain;
  padding: 0.85rem 0.95rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 40px rgba(28, 53, 45, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.floating-toc__panel::-webkit-scrollbar {
  display: none;
}

.floating-toc__glass {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
}

@media (min-width: 1024px) {
  .floating-toc__glass {
    mix-blend-mode: multiply;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .floating-toc__glass {
    background: rgba(255, 255, 255, 0.94);
  }
}

.floating-toc__panel .article-toc {
  position: relative;
  z-index: 1;
}

.floating-toc__panel .article-toc--floating .article-toc__heading {
  margin-bottom: 0.65rem;
  color: var(--color-brand-accent-strong, #a36c1c);
}

.article-toc {
  margin: 0;
  padding: 0;
  border: none;
}

.article-toc__heading {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 0.85rem;
}

.article-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc-section;
}

.article-toc__section {
  counter-increment: toc-section;
  margin-bottom: 0.15rem;
}

.article-toc__section:last-child {
  margin-bottom: 0;
}

.article-toc__link {
  display: block;
  color: var(--color-text-primary, #212121);
  text-decoration: none;
  font-size: 0.8125rem;
  line-height: 1.45;
  padding: 0.35rem 0.5rem 0.35rem 0.65rem;
  border-left: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.article-toc__link--h2 {
  font-weight: 700;
  color: var(--color-text-primary, #212121);
}

.article-toc__link--h2::before {
  content: counter(toc-section) '. ';
  font-weight: 700;
  color: var(--color-text-primary, #212121);
}

.article-toc__link:hover {
  color: var(--zanor-red);
}

.article-toc__section.is-current-section > .article-toc__link--h2,
.article-toc__link--h2.is-active {
  color: var(--color-brand-accent-strong, #a36c1c);
  border-left-color: var(--color-brand-accent, #cc8a24);
  background: rgba(251, 241, 221, 0.55);
}

.article-toc__section.is-current-section > .article-toc__link--h2::before,
.article-toc__link--h2.is-active::before {
  color: var(--color-brand-accent-strong, #a36c1c);
}

.article-toc__subs {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0.35rem 1.15rem;
  counter-reset: toc-sub;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
}

.article-toc__section.is-current-section .article-toc__subs {
  max-height: 32rem;
  opacity: 1;
  padding-bottom: 0.5rem;
}

.article-toc__sub {
  counter-increment: toc-sub;
  margin: 0.1rem 0;
}

.article-toc__link--h3 {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.22rem 0.5rem 0.22rem 0.4rem;
  border-left-width: 2px;
}

.article-toc__link--h3::before {
  content: counter(toc-sub) '. ';
  font-weight: 500;
}

.article-toc__link--h3.is-active {
  color: var(--color-brand-primary);
  font-weight: 600;
  border-left-color: var(--color-brand-accent, #cc8a24);
  background: rgba(251, 241, 221, 0.35);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-brand-accent);
  width: 0;
  z-index: 100;
  transition: width 0.1s linear;
}

.callout-block {
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  padding: 24px;
  margin: 3rem 0;
  break-inside: avoid;
  page-break-inside: avoid;
}

.callout-block__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.callout-block__body {
  font-family: var(--font-sans);
  font-size: inherit;
  font-style: italic;
  text-align: justify;
  margin: 0;
  line-height: 1.58;
}

.callout-block--case {
  background: var(--color-accent-soft, #fbf1dd);
  border-color: var(--color-brand-accent);
}

.callout-block--case .callout-block__title {
  color: var(--color-brand-accent-strong);
}

.callout-block--industry {
  background: var(--color-brand-light, #e8efeb);
  border-color: var(--color-brand-accent);
}

.callout-block--industry .callout-block__title {
  color: var(--color-brand-accent-strong);
}

.callout-block--peer {
  background: var(--color-surface-quote, #f1f5f2);
  border-color: var(--color-brand-primary);
}

.callout-block--peer .callout-block__title {
  color: var(--color-brand-primary);
}

.callout-sources {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--color-text-muted);
}

.pull-quote {
  margin: 1.25rem 0;
  padding: 0.45rem 1.25rem 0.45rem 0.9rem;
  border-left: 3px solid var(--color-brand-accent, #cc8a24);
}

.pull-quote__content {
  margin: 0;
  padding: 0 0 0 0.35rem;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: var(--color-brand-primary, #1c352d);
  line-height: 1.32;
}

.pull-quote__cite {
  display: block;
  margin: 0.4rem 0 0 0.35rem;
  padding-left: 0.35rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--color-text-muted);
}

/* Publisher footer — distinct from article prose */
.insight-about-zanor {
  margin: 3rem 0 0;
  padding: 1.15rem 1.35rem 1.25rem;
  border: 1px solid var(--color-border-subtle, rgba(28, 53, 45, 0.1));
  border-radius: 6px;
  background: var(--color-brand-light, #e8efeb);
  max-width: 42rem;
}

.insight-about-zanor__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-accent-strong, #a66d12);
}

.insight-about-zanor__body {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-secondary, #4a5650);
}

.insight-about-zanor__body > :first-child {
  margin-top: 0;
}

.insight-about-zanor__body > :last-child {
  margin-bottom: 0;
}

.insight-about-zanor__body p {
  margin: 0;
}

.insight-about-zanor__more {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(28, 53, 45, 0.1);
}

.insight-about-zanor__more a {
  color: var(--color-brand-primary, #1c352d);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.insight-about-zanor__more a:hover {
  color: var(--color-brand-accent-strong, #a66d12);
}

@media (max-width: 640px) {
  .insight-about-zanor {
    margin-top: 2rem;
    padding: 1rem 1.1rem 1.1rem;
    max-width: none;
    border-radius: 4px;
  }
}

/* Section breaks between major H2 blocks */
.section-divider {
  position: relative;
  height: 1px;
  margin: 2.5rem 0 2rem;
  background: var(--color-brand-light, #e8efeb);
  border: 0;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--color-brand-accent, #cc8a24);
}

/* Heading copy-link (# on hover) */
.insight-prose h2.has-heading-link,
.insight-prose h3.has-heading-link {
  position: relative;
  padding-right: 1.75rem;
}

.heading-copy-link {
  position: absolute;
  right: 0;
  top: 0.15em;
  padding: 0.1rem 0.35rem;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.insight-prose h2:hover .heading-copy-link,
.insight-prose h3:hover .heading-copy-link,
.insight-prose h2:focus-within .heading-copy-link,
.insight-prose h3:focus-within .heading-copy-link,
.heading-copy-link:focus-visible {
  opacity: 1;
}

.heading-copy-link:hover {
  color: var(--color-brand-accent-strong, #a36c1c);
}

.heading-copy-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0.35rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--color-brand-primary);
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.heading-copy-link.is-copied .heading-copy-tooltip {
  opacity: 1;
}

/* Capability framework diagram (§5.1) */
.capability-diagram {
  margin: 2rem 0;
}

.capability-diagram__caption,
.maturity-ladder__caption {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.capability-diagram__chart {
  position: relative;
  max-width: 22rem;
  margin: 0 auto 1.25rem;
}

.capability-diagram__svg {
  display: block;
  width: 100%;
  height: auto;
}

.capability-diagram__wedge--technical {
  fill: rgba(232, 239, 235, 0.95);
}

.capability-diagram__wedge--operational {
  fill: rgba(197, 214, 206, 0.95);
}

.capability-diagram__wedge--leadership {
  fill: rgba(168, 193, 182, 0.95);
}

.capability-diagram__spoke {
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.5;
}

.capability-diagram__hub {
  fill: var(--color-brand-primary, #1c352d);
  stroke: #fff;
  stroke-width: 2;
}

.capability-diagram__hub-label {
  fill: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.capability-diagram__vertex-label {
  fill: var(--color-brand-primary, #1c352d);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.capability-diagram__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 40rem;
}

.capability-diagram__col-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  margin: 0 0 0.35rem;
}

.capability-diagram__col[data-dimension='technical'] .capability-diagram__col-title {
  color: #3d5c50;
}

.capability-diagram__col[data-dimension='operational'] .capability-diagram__col-title {
  color: #2a4a3e;
}

.capability-diagram__col[data-dimension='leadership'] .capability-diagram__col-title {
  color: var(--color-brand-primary);
}

.capability-diagram__col ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

@media screen and (max-width: 720px) {
  .capability-diagram__grid {
    grid-template-columns: 1fr;
  }

  .capability-diagram__chart {
    max-width: 18rem;
  }
}

@media print {
  .capability-diagram__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.65rem 0.75rem;
    max-width: 100%;
  }

  .capability-diagram__chart {
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Maturity ladder (§5.3) — vertical ladder + stacked bands */
.maturity-ladder {
  margin: 2rem 0;
}

.maturity-ladder__viz {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  column-gap: 0.65rem;
  max-width: 34rem;
  align-items: stretch;
}

.maturity-ladder__spine {
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.maturity-ladder__ladder {
  width: 100%;
  height: 100%;
  min-height: 0;
  color: #b8c4be;
  --maturity-arrow-color: var(--color-brand-accent, #cc8a24);
}

.maturity-ladder__bands {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.maturity-ladder__band {
  display: grid;
  grid-template-columns: minmax(6.25rem, 7.25rem) minmax(0, 1fr);
  gap: 0;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(28, 53, 45, 0.12);
  box-shadow: 0 1px 3px rgba(28, 53, 45, 0.05);
}

.maturity-ladder__tag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  padding: 0.45rem 0.55rem;
  color: #fff;
  background: var(--color-brand-primary, #1c352d);
}

.maturity-ladder__band[data-level='1'] .maturity-ladder__tag {
  background: #5a7268;
}

.maturity-ladder__band[data-level='2'] .maturity-ladder__tag {
  background: #3d5c50;
}

.maturity-ladder__band[data-level='3'] .maturity-ladder__tag {
  background: #2a4a3e;
}

.maturity-ladder__band[data-level='4'] .maturity-ladder__tag {
  background: var(--color-brand-primary, #1c352d);
}

.maturity-ladder__level {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand-accent, #cc8a24);
}

.maturity-ladder__tag .maturity-ladder__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.maturity-ladder__signal-tag {
  margin: 0.1rem 0 0;
  font-size: 0.625rem;
  font-style: italic;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.88);
}

.maturity-ladder__body {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.6rem;
  background: var(--gray-50, #f7f6f2);
}

.maturity-ladder__band[data-level='2'] .maturity-ladder__body {
  background: var(--color-brand-light, #e8efeb);
}

.maturity-ladder__band[data-level='3'] .maturity-ladder__body {
  background: #eef3f0;
}

.maturity-ladder__band[data-level='4'] .maturity-ladder__body {
  background: var(--color-accent-soft, #fbf1dd);
}

.maturity-ladder__summary {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

@media (max-width: 560px) {
  .maturity-ladder__viz {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    column-gap: 0.5rem;
  }

  .maturity-ladder__band {
    grid-template-columns: 1fr;
  }

  .maturity-ladder__tag {
    padding: 0.5rem 0.65rem;
  }

  .maturity-ladder__body {
    padding: 0.55rem 0.65rem;
  }
}

/* Compact article header (after hero scroll) */
:root {
  --article-compact-header-height: 0px;
  --article-compact-header-gap: 0px;
}

.article-compact-header {
  position: fixed;
  top: calc(var(--header-height, 64px) + 12px);
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(28, 53, 45, 0.1);
  box-shadow: 0 4px 16px rgba(28, 53, 45, 0.07);
  backdrop-filter: blur(10px);
}

.article-compact-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 3.25rem;
  padding: 0.7rem 0;
}

.article-compact-header__title {
  flex: 1;
  margin: 0;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--color-brand-primary, #1c352d);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.article-compact-header__meta {
  flex-shrink: 0;
  margin: 0;
}

.article-compact-header__chip {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 53, 45, 0.14);
  background: var(--color-brand-light, #e8efeb);
  color: var(--color-brand-primary, #1c352d);
  white-space: nowrap;
}

body.article-header-compact .site-header {
  box-shadow: none;
}

@media (max-width: 640px) {
  .article-compact-header__inner {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    min-height: 0;
    padding: 0.65rem 0;
  }

  .article-compact-header__title {
    flex: 1 1 100%;
    -webkit-line-clamp: 2;
  }

  .article-compact-header__meta {
    margin-left: auto;
  }
}

.article-print-header,
.print-running-header {
  display: none;
}

@media print {
  /* @page margin boxes for running header/footer; body gap via margin-box padding + .insight-prose. */
  @page {
    margin: 16mm 14mm 17mm;
  }

  @page :first {
    margin-top: 12mm;
    margin-bottom: 17mm;
  }

  .print-running-header {
    display: none !important;
  }

  .article-print-header {
    display: block !important;
    margin: 10mm 0 1.35rem;
    padding: 0 0 1.1rem;
    border-bottom: 1pt solid #c5cbc7;
    background: #fff !important;
  }

  .article-print-header__kicker {
    margin-bottom: 0.35rem;
  }

  .article-print-header__title {
    font-family: var(--font-display);
    font-size: 21pt;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #1c352d;
    margin: 0.15rem 0 0;
    max-width: none;
  }

  .article-print-header__subtitle {
    font-family: var(--font-sans);
    font-size: 11pt;
    font-weight: 600;
    line-height: 1.4;
    color: #3d4a44;
    margin: 0.45rem 0 0;
  }

  .article-print-header__byline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.2rem 0.35rem;
    font-family: var(--font-sans);
    font-size: 9.5pt;
    line-height: 1.45;
    color: #5a7268;
    margin: 1.1rem 0 0;
    padding-top: 0.85rem;
    border-top: 0.5pt solid #e5e3d8;
  }

  .article-print-header__author {
    font-weight: 600;
    color: #1c352d;
  }

  .article-print-header__sep {
    color: #9aa8a1;
  }

  /* Running header/footer in @page margin boxes (content set per article in InsightLayout). */
  @page {
    @top-left {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 8pt;
      line-height: 1.2;
      color: #1c352d;
      vertical-align: top;
      padding-top: 3.5mm;
      padding-bottom: 2.5mm;
    }

    @top-right {
      font-family: var(--font-sans);
      font-size: 8pt;
      line-height: 1.2;
      color: #5a7268;
      text-align: right;
      vertical-align: top;
      padding-top: 3.5mm;
      padding-bottom: 2.5mm;
    }

    @bottom-left {
      font-family: var(--font-sans);
      font-size: 8pt;
      line-height: 1.2;
      color: #5a7268;
      vertical-align: bottom;
      padding-top: 2.5mm;
      padding-bottom: 3.5mm;
    }

    @bottom-center {
      vertical-align: bottom;
      padding-top: 2mm;
      padding-bottom: 3.5mm;
    }

    @bottom-right {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 8pt;
      line-height: 1.2;
      color: #1c352d;
      text-align: right;
      vertical-align: bottom;
      padding-top: 2.5mm;
      padding-bottom: 3.5mm;
    }
  }

  .insight-prose {
    padding-top: 2mm;
    padding-bottom: 2mm;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .share-bar--footer {
    margin-bottom: 1rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

