/* =========================================================
   LEGACY INTELLIGENCE
   INSIGHTS — MASTER STYLESHEET

   Contains:
   1. Insights listing page (.insights-*)
   2. Individual insight articles (.insight-article-*)
========================================================= */


/* =========================================================
   INSIGHTS PAGE
========================================================= */

.insights-page {
  --insights-bg: #f1efe3;
  --insights-text: #11110e;
  --insights-line: rgba(17, 17, 15, 0.15);
  --insights-card-bg: rgba(255, 255, 255, 0.06);

  width: 100%;
  overflow: hidden;
  background: var(--cream, #f1efe3);
  color: var(--insights-text);
}

/* =========================================================
   GLOBAL INSIGHTS HELPERS
========================================================= */

.insights-page *,
.insights-page *::before,
.insights-page *::after {
  box-sizing: border-box;
}

.insights-page img {
  display: block;
  width: 100%;
}

.insights-page a {
  color: inherit;
  text-decoration: none;
}

.insights-page button,
.insights-page input {
  font: inherit;
}

.insights-page .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;
}


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

.insights-hero {
  position: relative;
  min-height: 560px;
  border-bottom: 1px solid var(--insights-line);
  background: var(--dark);
}

.insights-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 42%);
  min-height: 560px;
}

.insights-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 90px clamp(30px, 5.5vw, 110px) 72px;
}

.insights-hero-copy h1 {
  margin: 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(86px, 10vw, 178px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.07em;
  color: var(--cream);
}

.insights-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  margin-top: 34px;
   color: var(--cream);
}

.insights-symbol img {
  width: 100%;
  height: auto;
}

.insights-hero-copy p {
  max-width: 540px;
  margin: 25px 0 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(25px, 2vw, 39px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
   color: var(--cream);
}

.insights-hero-art {
  position: relative;
  overflow: hidden;
   color: var(--cream);
}

.insights-hero-art svg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 115%;
  height: 100%;
}


/* =========================================================
   FEATURED INSIGHT
========================================================= */

.featured-insight {
  border-bottom: 1px solid var(--insights-line);
}

.featured-insight-link {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr);
  min-height: 520px;
}

.featured-insight-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #151515;
}

.featured-insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}

.featured-insight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 5vw, 90px);
  border-left: 1px solid var(--insights-line);
}

.insight-category {
  display: inline-block;
  color: #4c5527;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-insight-content h2 {
  max-width: 560px;
  margin: 22px 0 30px;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(52px, 5.2vw, 90px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.featured-insight-content > p {
  max-width: 580px;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.featured-insight-line {
  width: 42px;
  height: 1px;
  margin: 34px 0 22px;
  background: var(--insights-text);
  opacity: 0.35;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-insight-link:hover .featured-insight-image img {
  transform: scale(1.035);
  filter: brightness(0.9);
}


/* =========================================================
   LIBRARY / FILTERS
========================================================= */

.insights-library {
  padding: 0 clamp(24px, 5vw, 90px) clamp(80px, 8vw, 140px);
}

.insights-library-inner {
  width: 100%;
}

.insights-toolbar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  min-height: 92px;
  border-bottom: 1px solid var(--insights-line);
}

.insights-filters {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.4vw, 58px);
  overflow-x: auto;
  scrollbar-width: none;
}

.insights-filters::-webkit-scrollbar {
  display: none;
}

.insights-filter {
  position: relative;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  color: var(--insights-text);
  cursor: pointer;
  font-family: "Canela", "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  white-space: nowrap;
}

.insights-filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -31px;
  width: 100%;
  height: 1px;
  background: var(--insights-text);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.insights-filter:hover::after,
.insights-filter.is-active::after {
  transform: scaleX(1);
}

.insights-search-toggle {
  flex: 0 0 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--insights-line);
  background: transparent;
  color: var(--insights-text);
  cursor: pointer;
}

.insights-search-toggle svg {
  width: 22px;
  height: 22px;
  transition: transform 0.35s ease;
}

.insights-search-toggle:hover svg {
  transform: scale(1.1);
}


/* =========================================================
   GRID
========================================================= */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--insights-line);
  border-left: 1px solid var(--insights-line);
}

.insight-card {
  min-width: 0;
  border-right: 1px solid var(--insights-line);
  border-bottom: 1px solid var(--insights-line);
  background: var(--insights-card-bg);
  transition:
    background-color 0.35s ease,
    transform 0.35s ease;
}

.insight-card > a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.insight-card-image {
  position: relative;
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  background: #d8d3c7;
}

.insight-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 10, 0.05);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.insight-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 230px;
  padding: 24px 24px 22px;
}

.insight-card-content h3 {
  margin: 14px 0 30px;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(27px, 2.1vw, 39px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.insight-card-content .insight-meta {
  margin-top: auto;
}

.insight-card:hover {
  background: rgba(255, 255, 255, 0.22);
}

.insight-card:hover .insight-card-image img {
  transform: scale(1.045);
  filter: brightness(0.92);
}

.insight-card:hover .insight-card-image::after {
  opacity: 1;
}


/* JS FILTER SUPPORT */

.insight-card.is-hidden {
  display: none;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.insights-newsletter {
  background: var(--dark);
  color: #f3efe4;
}

.insights-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  align-items: center;
  min-height: 190px;
  padding: 38px clamp(24px, 5vw, 90px);
}

.insights-newsletter-heading {
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.insights-newsletter-heading h2 {
  margin: 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(39px, 3.6vw, 66px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.insights-newsletter-copy {
  padding: 0 clamp(32px, 4vw, 74px);
}

.insights-newsletter-copy p {
  max-width: 420px;
  margin: 0;
  color: rgba(243, 239, 228, 0.8);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.insights-newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.insights-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f3efe4;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
}

.insights-newsletter-form input::placeholder {
  color: rgba(243, 239, 228, 0.45);
}

.insights-newsletter-form button {
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f3efe4;
  cursor: pointer;
}

.insights-newsletter-form button svg {
  width: 31px;
  transition: transform 0.35s ease;
}

.insights-newsletter-form button:hover svg {
  transform: translateX(5px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.insights-bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--insights-line);
}

.insights-cta-block {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 170px;
  padding: 38px clamp(30px, 5vw, 90px);
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
}

.insights-cta-block + .insights-cta-block {
  border-left: 1px solid var(--insights-line);
}

.insights-cta-icon {
  width: 24px;
}

.insights-cta-title {
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(29px, 2.5vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.insights-cta-arrow {
  width: 46px;
}

.insights-cta-arrow svg {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.insights-cta-block:hover {
  background: var(--insights-text);
  color: var(--insights-bg);
}

.insights-cta-block:hover .insights-cta-arrow svg {
  transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

  .insights-hero {
    min-height: 500px;
  }

  .insights-hero-inner {
    min-height: 500px;
    grid-template-columns: 1fr 38%;
  }

  .featured-insight-link {
    grid-template-columns: 1.35fr 1fr;
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-newsletter-inner {
    grid-template-columns: 0.9fr 1fr 1.1fr;
  }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

  .insights-hero,
  .insights-hero-inner {
    min-height: 460px;
  }

  .insights-hero-inner {
    grid-template-columns: 1fr;
  }

  .insights-hero-copy {
    padding: 75px 30px 54px;
  }

  .insights-hero-art {
    position: absolute;
    inset: 0 0 0 42%;
    opacity: 0.65;
  }

  .featured-insight-link {
    grid-template-columns: 1fr;
  }

  .featured-insight-image {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .featured-insight-content {
    border-top: 1px solid var(--insights-line);
    border-left: 0;
  }

  .featured-insight-content h2 br {
    display: none;
  }

  .insights-toolbar {
    gap: 16px;
  }

  .insights-filters {
    gap: 30px;
  }

  .insights-filter::after {
    bottom: -31px;
  }

  .insights-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .insights-newsletter-heading {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .insights-newsletter-copy {
    padding: 0;
  }

  .insights-bottom-cta {
    grid-template-columns: 1fr;
  }

  .insights-cta-block + .insights-cta-block {
    border-top: 1px solid var(--insights-line);
    border-left: 0;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 640px) {

  .insights-hero,
  .insights-hero-inner {
    min-height: 420px;
  }

  .insights-hero-copy {
    justify-content: flex-end;
    padding: 70px 20px 42px;
  }

  .insights-hero-copy h1 {
    font-size: clamp(70px, 22vw, 108px);
    line-height: 0.88;
  }

  .insights-symbol {
    width: 18px;
    margin-top: 26px;
  }

  .insights-hero-copy p {
    max-width: 310px;
    margin-top: 20px;
    font-size: 25px;
  }

  .insights-hero-copy p br {
    display: none;
  }

  .insights-hero-art {
    inset: 0 0 0 18%;
    opacity: 0.42;
  }

  .featured-insight-content {
    padding: 38px 20px 42px;
  }

  .featured-insight-content h2 {
    margin-top: 18px;
    font-size: clamp(48px, 15vw, 72px);
  }

  .featured-insight-content > p {
    font-size: 15px;
  }

  .insights-library {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 80px;
  }

  .insights-toolbar {
    min-height: 78px;
  }

  .insights-filters {
    gap: 26px;
    padding-right: 10px;
  }

  .insights-filter {
    font-size: 16px;
  }

  .insights-filter::after {
    bottom: -25px;
  }

  .insights-search-toggle {
    flex-basis: 54px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .insight-card-content {
    min-height: 205px;
    padding: 22px 18px 20px;
  }

  .insight-card-content h3 {
    font-size: 31px;
  }

  .insights-newsletter-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .insights-newsletter-heading h2 {
    font-size: 46px;
  }

  .insights-cta-block {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    min-height: 145px;
    padding: 28px 20px;
  }

  .insights-cta-icon {
    width: 20px;
  }

  .insights-cta-title {
    font-size: 31px;
  }

  .insights-cta-arrow {
    width: 40px;
  }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .insights-hero-copy h1 {
    font-size: 70px;
  }

  .insights-hero-copy p {
    font-size: 22px;
  }

  .featured-insight-content h2 {
    font-size: 45px;
  }

  .insight-card-content h3 {
    font-size: 28px;
  }

  .insights-cta-title {
    font-size: 27px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .insights-page *,
  .insights-page *::before,
  .insights-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* =========================================================
   SINGLE INSIGHT ARTICLE
========================================================= */

.insight-article-page {
  --article-bg: #f1efe3;
  --article-text: #11110e;
  --article-muted: #747168;
  --article-line: rgba(17, 17, 15, 0.15);
  --article-green: #17231a;

  background: var(--cream, #f1efe3);
  color: var(--article-text);
  overflow: hidden;
}

.insight-article-page *,
.insight-article-page *::before,
.insight-article-page *::after {
  box-sizing: border-box;
}

.insight-article-page img {
  display: block;
  width: 100%;
}

.insight-article-page a {
  color: inherit;
  text-decoration: none;
}


/* HERO */

.insight-article-hero {
  border-bottom: 1px solid var(--article-line);
   background: var(--dark);
     color: var(--white);
}

.insight-article-hero-inner {
  position: relative;
  min-height: 690px;
  padding: 120px clamp(24px, 6vw, 120px) 80px;
}

.insight-article-heading {
  max-width: 1200px;
}

.insight-back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-back-link span {
  transition: transform 0.3s ease;
}

.insight-back-link:hover span {
  transform: translateX(-5px);
}

.insight-article-category {
  display: block;
  margin-bottom: 25px;
  color: #4d572d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insight-article-heading h1 {
  max-width: 1280px;
  margin: 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(70px, 8.3vw, 150px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.insight-article-intro {
  max-width: 760px;
  margin: 55px 0 36px;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 35px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.insight-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-article-mark {
  position: absolute;
  top: 125px;
  right: clamp(24px, 6vw, 120px);
  width: 28px;
}


/* MAIN IMAGE */

.insight-article-image {
  height: min(72vw, 900px);
  min-height: 520px;
  overflow: hidden;
}

.insight-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* CONTENT */

.insight-article-body {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: clamp(45px, 9vw, 170px);
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(80px, 9vw, 160px) clamp(24px, 6vw, 100px);
}

.insight-article-sidebar {
  align-self: start;
  position: sticky;
  top: 140px;
}

.insight-sidebar-item {
  padding: 22px 0;
  border-top: 1px solid var(--article-line);
}

.insight-sidebar-item:last-child {
  border-bottom: 1px solid var(--article-line);
}

.insight-sidebar-item span,
.insight-sidebar-item strong {
  display: block;
  font-family: "Inter", sans-serif;
}

.insight-sidebar-item span {
  margin-bottom: 8px;
  color: var(--article-muted);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insight-sidebar-item strong {
  font-size: 13px;
  font-weight: 400;
}

.insight-article-copy {
  max-width: 820px;
}

.insight-article-copy > p {
  margin: 0 0 31px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.insight-article-copy .insight-article-lead {
  margin-bottom: 48px;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(31px, 3vw, 51px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.insight-article-copy h2 {
  margin: 95px 0 34px;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(47px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.insight-article-copy blockquote {
  margin: 85px 0;
  padding: 55px 0;
  border-top: 1px solid var(--article-text);
  border-bottom: 1px solid var(--article-text);
}

.insight-article-copy blockquote p {
  margin: 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.insight-article-highlight {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 35px 0;
  border-top: 1px solid var(--article-line);
}

.insight-article-highlight:last-of-type {
  border-bottom: 1px solid var(--article-line);
}

.insight-article-highlight > span {
  color: var(--article-muted);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.insight-article-highlight h3 {
  margin: 0 0 12px;
  font-family: "Canela", "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.insight-article-highlight p {
  max-width: 640px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.insight-article-conclusion {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 32px;
  margin-top: 95px;
  padding: 55px;
  background: var(--article-green);
  color: var(--article-bg);
}

.insight-article-conclusion img {
  width: 27px;
  filter: invert(1);
}

.insight-article-conclusion p {
  margin: 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}


/* SHARE */

.insight-share-section {
  background: var(--dark);
  color: var(--white);
}

.insight-share-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 170px);
  padding: clamp(75px, 8vw, 135px) clamp(24px, 6vw, 120px);
}

.insight-share-heading > span {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.insight-share-heading h2 {
  margin: 28px 0 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.insight-share-actions {
  align-self: end;
  border-top: 1px solid rgba(255,255,255,0.28);
}

.insight-share-link,
.insight-native-share {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  text-align: left;
}

.insight-share-link span:last-child,
.insight-native-share span {
  transition: transform 0.3s ease;
}

.insight-share-link:hover span:last-child,
.insight-native-share:hover span {
  transform: translate(4px, -4px);
}

.insight-native-share {
  display: none;
}


/* RELATED */

.related-insights {
  padding: clamp(80px, 8vw, 140px) clamp(24px, 6vw, 120px);
}

.related-insights-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 35px;
  margin-bottom: 55px;
}

.related-insights-heading > span,
.related-insights-heading > a {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related-insights-heading h2 {
  margin: 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.related-insights-heading a {
  display: flex;
  gap: 12px;
}

.related-insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--article-line);
  border-left: 1px solid var(--article-line);
}

.related-insight-card {
  border-right: 1px solid var(--article-line);
  border-bottom: 1px solid var(--article-line);
}

.related-insight-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.related-insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.related-insight-card:hover img {
  transform: scale(1.04);
}

.related-insight-content {
  min-height: 240px;
  padding: 27px;
}

.related-insight-content > span {
  color: #4d572d;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.related-insight-content h3 {
  margin: 18px 0 38px;
  font-family: "Canela", "Times New Roman", serif;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.related-insight-content p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .insight-article-heading h1 br {
    display: none;
  }

  .insight-article-body {
    grid-template-columns: 1fr;
  }

  .insight-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .insight-sidebar-item {
    border-bottom: 1px solid var(--article-line);
  }

  .insight-share-inner {
    grid-template-columns: 1fr;
  }

  .related-insights-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {

  .insight-article-hero-inner {
    min-height: auto;
    padding: 90px 20px 55px;
  }

  .insight-back-link {
    margin-bottom: 65px;
  }

  .insight-article-heading h1 {
    font-size: 60px;
  }

  .insight-article-intro {
    font-size: 25px;
  }

  .insight-article-mark {
    top: 92px;
    right: 20px;
    width: 21px;
  }

  .insight-article-image {
    min-height: 340px;
    height: 68vw;
  }

  .insight-article-body {
    padding: 70px 20px;
  }

  .insight-article-sidebar {
    grid-template-columns: 1fr;
  }

  .insight-article-copy > p {
    font-size: 16px;
  }

  .insight-article-copy h2 {
    margin-top: 70px;
  }

  .insight-article-highlight {
    grid-template-columns: 40px 1fr;
  }

  .insight-article-conclusion {
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }

  .insight-share-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .insight-native-share {
    display: flex;
  }

  .related-insights {
    padding-right: 20px;
    padding-left: 20px;
  }

  .related-insights-grid {
    grid-template-columns: 1fr;
  }
}