/* ============================================
   INSIGHT PAGES — Shared Styles
   
   Long-form article pages with sticky sidebar
   nav on the left and content sections on the
   right. Used for thought leadership / insights.
   ============================================ */


/* ============================================
   INSIGHT HERO

   Reuses the app-hero approach with chips for
   reading time, date and theme metadata.
   ============================================ */

.insight-reading-progress {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 998;
  pointer-events: none;
}

.insight-reading-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #08312A, #A3AE9C);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .12s linear;
  box-shadow: 0 0 18px rgba(8,49,42,.18);
}

/* Inline button styled as a text link — used in summary paragraph */
.insight-inline-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: #08312A;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.insight-inline-trigger:hover {
  opacity: .75;
}

.insight-hero .app-hero__content h1 {
  max-width: 780px;
}

.insight-hero .app-hero__content p {
  max-width: 700px;
}


/* ============================================
   MASTER TWO-COLUMN LAYOUT
   
   Sidebar nav on left (~260px), content on right.
   Below 900px the sidebar hides and content goes
   full width.
   ============================================ */

.insight-body {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--container-padding);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

@media (max-width: 900px) {
  .insight-body {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


/* ============================================
   SIDEBAR NAV — "On this page"
   ============================================ */

.insight-sidebar {
  position: sticky;
  top: 24px;
  z-index: 40;
}

@media (max-width: 900px) {
  .insight-sidebar {
    display: none;
  }
}

.insight-sidebar__nav {
  background: #fff;
  border: 1px solid rgba(8,49,42,.12);
  border-radius: 12px;
  padding: 14px 12px;
  box-shadow: 0 14px 38px rgba(8,49,42,.07);
}

.insight-sidebar__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-mid-grey);
  margin: 0 0 8px 0;
  font-family: var(--font-body);
}

.insight-sidebar__links {
  display: grid;
  gap: 4px;
}

.insight-sidebar__link {
  display: block;
  text-decoration: none;
  color: var(--color-mid-grey);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 10px 10px 14px;
  border-left: 3px solid transparent;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
  font-family: var(--font-body);
}

.insight-sidebar__link:hover {
  color: #08312A;
  background: rgba(8,49,42,.05);
}

.insight-sidebar__link.is-active {
  color: #08312A;
  background: rgba(8,49,42,.07);
  border-left-color: #08312A;
}


/* ============================================
   CONTENT COLUMN
   ============================================ */

.insight-content {
  min-width: 0;
  display: grid;
  gap: clamp(48px, 6vw, 80px);
}

/* Scroll targets for sidebar nav */
.insight-content .scroll-target {
  scroll-margin-top: 36px;
}


/* ============================================
   STATS BAR — 4 metric cards
   ============================================ */

.insight-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .insight-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.8vw, 20px);
  }
}

.insight-stat {
  background: #fff;
  border: 1px solid rgba(8,49,42,.12);
  border-radius: 8px;
  padding: clamp(16px, 1.6vw, 20px);
  display: grid;
  gap: 4px;
  color: #08312A;
  box-shadow: 0 10px 30px rgba(8,49,42,.04);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.insight-stat:hover {
  background: color-mix(in srgb, #08312A 6%, white);
  border-color: rgba(8,49,42,.22);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8,49,42,.1);
}

.insight-stat__value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #08312A;
  font-family: var(--font-heading);
}

.insight-stat__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #08312A;
  opacity: .9;
  font-family: var(--font-body);
}

.insight-stat__desc {
  font-size: 13px;
  line-height: 1.4;
  color: #08312A;
  opacity: .9;
}


/* ============================================
   KEY TAKEAWAYS
   ============================================ */

.insight-takeaways {
  display: grid;
  gap: clamp(14px, 1.8vw, 18px);
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(8,49,42,.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,249,248,.9)),
    radial-gradient(circle at top right, rgba(163,174,156,.22), transparent 34%);
  box-shadow: 0 18px 44px rgba(8,49,42,.08);
}

.insight-takeaways__eyebrow {
  margin: 0;
  color: #5E6B66;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.insight-takeaways__grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 760px) {
  .insight-takeaways__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-takeaway {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 4px 0 4px 18px;
  color: #08312A;
}

.insight-takeaway::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: #A3AE9C;
}

.insight-takeaway strong {
  color: #08312A;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.insight-takeaway span {
  color: #5E6B66;
  font-size: 14px;
  line-height: 1.55;
}


/* ============================================
   TEXT SECTIONS — headings, paragraphs, lists
   ============================================ */

.insight-section {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.insight-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #08312A;
  margin: 0;
  font-family: var(--font-heading);
}

.insight-section > p {
  font-size: 16px;
  line-height: 1.7;
  color: #08312A;
  margin: 0;
}

.insight-section ul,
.insight-section ol {
  padding-left: 20px;
  margin: 0;
  color: #08312A;
  font-size: 16px;
  line-height: 1.7;
}

.insight-section li {
  margin-bottom: 8px;
}

.insight-section li:last-child {
  margin-bottom: 0;
}


/* ============================================
   CALLOUT BOX
   ============================================ */

.insight-callout {
  background: color-mix(in srgb, #08312A 6%, white);
  border: 1px solid rgba(8,49,42,.12);
  border-radius: 8px;
  padding: clamp(16px, 1.6vw, 20px);
  color: #08312A;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 12px 32px rgba(8,49,42,.05);
}

.insight-callout p {
  margin: 0;
}

.insight-callout strong {
  font-weight: 700;
}

.insight-pullquote {
  margin: 0;
  padding: clamp(20px, 2.5vw, 30px);
  border-left: 4px solid #A3AE9C;
  background: #fff;
  color: #08312A;
  box-shadow: 0 18px 44px rgba(8,49,42,.08);
}

.insight-pullquote p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  .insight-reading-progress__bar,
  .insight-stat,
  .insight-card {
    transition: none;
  }
}


/* ============================================
   3-COLUMN CARDS WITH GREEN HEADER STRIP
   ============================================ */

.insight-cards {
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
}

@media (min-width: 820px) {
  .insight-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-card {
  background: #fff;
  border: 1px solid rgba(8,49,42,.12);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 10px 30px rgba(8,49,42,.04);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.insight-card:hover {
  background: color-mix(in srgb, #08312A 6%, white);
  border-color: rgba(8,49,42,.22);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8,49,42,.1);
}

.insight-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px clamp(16px, 1.8vw, 22px);
  background: #08312A;
  color: #fff;
  border-bottom: 3px solid #FFD55A;
}

.insight-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  font-family: var(--font-body);
}

.insight-card__body {
  padding: 12px clamp(16px, 1.8vw, 22px) clamp(16px, 1.8vw, 22px);
}

.insight-card__body h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: #08312A;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.insight-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}


/* ============================================
   TWO-COLUMN GRID — image + content
   Alternates image left/right per section.
   ============================================ */

.insight-grid {
  display: grid;
  gap: clamp(20px, 2vw, 28px);
}

@media (min-width: 900px) {
  .insight-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .insight-grid--img-left figure { order: 1; }
  .insight-grid--img-left .insight-grid__content { order: 2; }

  .insight-grid--img-right figure { order: 2; }
  .insight-grid--img-right .insight-grid__content { order: 1; }
}

.insight-grid figure {
  margin: 0;
  display: grid;
  gap: 8px;
}

.insight-grid figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(8,49,42,.08);
}

.insight-grid figcaption {
  font-size: 13px;
  color: #08312A;
  opacity: .9;
}

.insight-table-card {
  overflow-x: auto;
  border: 1px solid rgba(8,49,42,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8,49,42,.06);
}

.insight-table-card table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: #08312A;
  font-size: 14px;
}

.insight-table-card th,
.insight-table-card td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(8,49,42,.1);
  text-align: left;
  vertical-align: top;
}

.insight-table-card th {
  background: #08312A;
  color: #fff;
  font-weight: 700;
}

.insight-table-card tbody tr:nth-child(odd) {
  background: #f8faf9;
}

.insight-table-card tr:last-child td {
  border-bottom: 0;
}

.insight-table-note {
  margin: 12px 16px 16px;
  color: #5E6B66;
  font-size: 13px;
  line-height: 1.55;
}


/* ============================================
   TECHNICAL PROOF VISUALS
   ============================================ */

.insight-proof-flow {
  display: grid;
  gap: 12px;
  counter-reset: proof-step;
}

@media (min-width: 820px) {
  .insight-proof-flow {
    grid-template-columns: repeat(4, 1fr);
  }
}

.insight-proof-flow__step {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  padding: clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(8,49,42,.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8faf8 100%);
  box-shadow: 0 14px 34px rgba(8,49,42,.06);
}

@media (min-width: 820px) {
  .insight-proof-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 31px;
    right: -12px;
    width: 12px;
    height: 1px;
    background: rgba(8,49,42,.28);
  }
}

.insight-proof-flow__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 34px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: #08312A;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

.insight-proof-flow__step h3 {
  margin: 0;
  color: #08312A;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
}

.insight-proof-flow__step p {
  margin: 0;
  color: #5E6B66;
  font-size: 14px;
  line-height: 1.55;
}

.insight-proof-flow--standards .insight-proof-flow__label {
  background: #A3AE9C;
  color: #08312A;
}

.insight-proof-flow--install .insight-proof-flow__label {
  background: #FFD55A;
  color: #08312A;
}

.insight-proof-flow--lifecycle .insight-proof-flow__step {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,249,248,.9)),
    radial-gradient(circle at top left, rgba(163,174,156,.2), transparent 42%);
}

.insight-grid__content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  color: #08312A;
  font-size: 16px;
  line-height: 1.7;
}

.insight-grid__content li {
  margin-bottom: 8px;
}


/* ============================================
   SIMPLE CARDS (no header strip)
   Used in lifecycle, installation sections
   ============================================ */

.insight-simple-cards {
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
  margin-top: clamp(20px, 2vw, 32px);
}

@media (min-width: 820px) {
  .insight-simple-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-simple-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  padding: clamp(16px, 1.6vw, 20px);
  display: grid;
  gap: 8px;
  color: #08312A;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.insight-simple-card:hover {
  background: color-mix(in srgb, #08312A 6%, white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.insight-simple-card h3 {
  font-size: 18px;
  margin: 0;
  color: #08312A;
  font-weight: 700;
  font-family: var(--font-heading);
}

.insight-simple-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #08312A;
  opacity: .95;
}

/* Card with centred icon */
.insight-simple-card .insight-card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

/* Card with meta links */
.insight-simple-card .insight-meta-links {
  display: grid;
  gap: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.insight-simple-card .insight-meta-links a {
  color: #08312A;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ============================================
   PROOF CARDS — stat + label + description
   Used in performance & compliance section
   ============================================ */

.insight-proof-cards {
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
  margin-top: clamp(16px, 1.6vw, 20px);
}

@media (min-width: 700px) {
  .insight-proof-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.insight-proof-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  padding: clamp(16px, 1.6vw, 20px);
  display: grid;
  gap: 6px;
  color: #08312A;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.insight-proof-card:hover {
  background: color-mix(in srgb, #08312A 6%, white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.insight-proof-card__value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #08312A;
  font-family: var(--font-heading);
}

.insight-proof-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .9;
}

.insight-proof-card__desc {
  font-size: 14px;
  line-height: 1.55;
  opacity: .95;
}


/* ============================================
   LINK CARDS ROW
   ============================================ */

.insight-link-cards {
  display: grid;
  gap: 12px;
  margin-top: clamp(16px, 1.6vw, 20px);
}

@media (min-width: 720px) {
  .insight-link-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px clamp(16px, 1.6vw, 20px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: #08312A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.insight-link-card:hover {
  background: color-mix(in srgb, #08312A 6%, white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}


/* ============================================
   NUMBERED STEPS
   ============================================ */

.insight-steps {
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #08312A;
}

.insight-steps li {
  list-style: none;
  position: relative;
  padding-left: 42px;
}

.insight-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #08312A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}


/* ============================================
   LIGHT FAQs — white background variant
   ============================================ */

.insight-faqs {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.insight-faqs h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 650;
  color: #08312A;
  margin: 0;
  font-family: var(--font-heading);
}

.insight-faqs > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-mid-grey);
  margin: 0;
}

.insight-faqs__grid {
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
}

@media (min-width: 960px) {
  .insight-faqs__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.insight-faqs__grid details {
  border: 1px solid rgba(8,49,42,.2);
  background: #fff;
  border-radius: 4px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.insight-faqs__grid details[open] {
  border-color: rgba(8,49,42,.35);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.insight-faqs__grid summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 44px 14px 14px;
  color: #08312A;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  margin: 0;
  font-family: var(--font-body);
}

.insight-faqs__grid summary::-webkit-details-marker {
  display: none;
}

.insight-faqs__grid summary::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #08312A;
  border-bottom: 2px solid #08312A;
  transform: translateY(-50%) rotate(-45deg);
  transition: .2s ease;
}

.insight-faqs__grid details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.insight-faqs__grid .answer {
  font-size: 16px;
  line-height: 1.6;
  padding: 0 14px 14px;
  color: var(--color-text);
  margin: 0;
}

.insight-faqs__grid .answer strong {
  color: #08312A;
}


/* ============================================
   SUMMARY + CTA PANEL
   ============================================ */

.insight-summary {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
}

.insight-summary h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #08312A;
  margin: 0;
  font-family: var(--font-heading);
}

.insight-summary > p {
  font-size: 16px;
  line-height: 1.7;
  color: #08312A;
  margin: 0;
}

.insight-summary > p a {
  color: #08312A;
  text-decoration: underline;
}

.insight-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  background: linear-gradient(90deg, #13372e, #0f2f27);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  color: #fff;
}

@media (min-width: 780px) {
  .insight-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.insight-cta-panel h3 {
  margin: 0 0 6px 0;
  font-size: 22px;
  color: #fff;
  font-weight: 650;
  font-family: var(--font-heading);
}

.insight-cta-panel p {
  margin: 0;
  color: #e7f4ee;
  font-size: 14px;
  line-height: 1.6;
}

.insight-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

@media (min-width: 780px) {
  .insight-cta-btns {
    justify-content: flex-end;
  }
}

.insight-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 9999px;
  background: #fff;
  color: #08312A;
  border: 2px solid #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
  min-width: 180px;
  text-align: center;
  font-family: var(--font-body);
}

.insight-cta-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

@media (max-width: 640px) {
  .insight-cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .insight-cta-btn {
    width: 100%;
    min-width: 0;
  }
}


/* ============================================
   MORE INSIGHTS
   ============================================ */

.insight-more {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  margin-top: clamp(12px, 2vw, 20px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(0,0,0,.1);
}

.insight-more__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.insight-more__copy {
  display: grid;
  gap: 8px;
}

.insight-more h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #08312A;
  font-family: var(--font-heading);
}

.insight-more__intro {
  margin: 0;
  max-width: 64ch;
  color: #5E6B66;
  font-size: 16px;
  line-height: 1.65;
  font-family: var(--font-body);
}

.insight-more__controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.insight-more__control {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #08312A;
  border-radius: 999px;
  background: #fff;
  color: #08312A;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.insight-more__control:hover {
  background: #08312A;
  color: #fff;
}

.insight-more__control:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.insight-more__viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: -18px -24px -30px;
  padding: 18px 24px 30px;
  scroll-padding-inline: 24px;
}

.insight-more__viewport::-webkit-scrollbar {
  display: none;
}

.insight-more__track {
  display: flex;
  gap: 12px;
  min-width: 100%;
}

@media (min-width: 700px) {
  .insight-more__track {
    gap: 16px;
  }
}

.insight-more__card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  flex: 0 0 min(82vw, 360px);
  scroll-snap-align: start;
  transition: border-color .25s ease, box-shadow .25s ease;
}

@media (min-width: 700px) {
  .insight-more__card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (min-width: 1020px) {
  .insight-more__card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (hover: hover) {
  .insight-more__card:hover {
    border-color: rgba(8,49,42,.26);
    box-shadow: 0 16px 36px rgba(0,0,0,.12);
  }
}

.insight-more__thumb-wrap {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(0,0,0,.05), rgba(0,0,0,.02));
  overflow: hidden;
}

.insight-more__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

@media (hover: hover) {
  .insight-more__card:hover .insight-more__thumb {
    transform: scale(1.04);
  }
}

.insight-more__body {
  padding: 16px;
}

.insight-more__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.insight-more__pill {
  display: inline-block;
  margin-bottom: 6px;
  color: #1F3B2D;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.insight-more__title {
  color: #0F1412;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  font-family: var(--font-heading);
}

.insight-more__current {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8,49,42,.18);
  border-radius: 999px;
  padding: 4px 8px;
  background: color-mix(in srgb, #08312A 7%, white);
  color: #08312A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.insight-more__card[aria-current="page"] {
  border-color: rgba(8,49,42,.32);
}

.insight-more__card:focus-visible {
  outline: 3px solid #08312A;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .insight-more__header {
    align-items: stretch;
  }

  .insight-more__controls {
    display: none;
  }
}


/* ============================================
   INSIGHT PAGE OVERRIDES
   ============================================ */

.page-insight .app-hero {
  border-top: none;
}

.air-asset-placeholder {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border: 1px dashed rgba(8,49,42,.34);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(233,239,232,.88)),
    repeating-linear-gradient(45deg, rgba(8,49,42,.055) 0 1px, transparent 1px 14px);
  color: #08312A;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.74), 0 16px 40px rgba(8,49,42,.06);
}

.air-asset-placeholder__block {
  width: min(150px, 46%);
  aspect-ratio: 1;
  align-self: center;
  margin: auto auto 12px;
  border-radius: 6px;
  background: #A3AE9C;
  box-shadow:
    0 0 0 10px rgba(163,174,156,.18),
    0 24px 48px rgba(8,49,42,.16);
}

.air-asset-placeholder span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(8,49,42,.62);
}

.air-asset-placeholder strong {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.35;
  font-family: var(--font-heading);
}

.air-asset-placeholder--hero {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: clamp(24px, 4vw, 56px);
  background:
    linear-gradient(115deg, #082f28 0%, #173f35 42%, #9da997 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
  color: rgba(255,255,255,.82);
  box-shadow: none;
}

.air-asset-placeholder--hero span {
  color: rgba(255,255,255,.68);
}

/* Remove default section padding/borders
   from the insight body wrapper */
.insight-body section {
  padding: 0;
  border-top: none;
}
