:root {
  color-scheme: dark;
  --insight-deep: #001f23;
  --insight-teal: #00373d;
  --insight-mid: #07535a;
  --insight-aqua: #54f6ed;
  --insight-mint: #bff7ee;
  --insight-paper: #f4f8f7;
  --insight-white: #ffffff;
  --insight-ink: #0a272b;
  --insight-muted: #52666a;
  --insight-line: #cbdad8;
  --insight-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--insight-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--insight-deep);
  color: var(--insight-white);
  font-family: "Funnel Sans", "Segoe UI", sans-serif;
}

body.is-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
summary {
  font: inherit;
}

.insights-page {
  min-height: 100vh;
  background: var(--insight-deep);
}

.insights-container {
  width: min(var(--insight-width), calc(100% - 72px));
  margin: 0 auto;
}

.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1200;
  width: 0;
  height: 3px;
  background: var(--insight-aqua);
  pointer-events: none;
}

.insights-hero {
  position: relative;
  min-height: 794px;
  overflow: hidden;
  isolation: isolate;
  background: var(--insight-deep);
  color: var(--insight-white);
}

.insights-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.insights-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 31, 35, 0.78);
}

.insights-hero.is-article {
  min-height: 794px;
}

.insights-hero.is-article::after {
  background: rgba(0, 25, 29, 0.72);
}

.insights-hero .hero-shell {
  position: relative;
  min-height: inherit;
  padding-top: 67px;
}

.insights-brand {
  position: relative;
  z-index: 30;
  display: inline-flex;
}

.insights-brand img {
  width: 118px;
  height: 26px;
  object-fit: contain;
}

.insights-hero-copy {
  position: absolute;
  right: 0;
  bottom: 176px;
  left: 0;
  max-width: 910px;
}

.insights-hero.is-article .insights-hero-copy {
  max-width: 980px;
  bottom: 176px;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.article-breadcrumbs a:hover {
  color: var(--insight-mint);
}

.article-breadcrumbs span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.38);
}

.article-category,
.insights-eyebrow {
  min-height: 34px;
  width: max-content;
  margin: 0 0 25px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--insight-mid);
  color: var(--insight-aqua);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.insights-hero.is-article h1 {
  max-width: 980px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
}

.insights-hero-summary {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 300;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.article-meta strong {
  color: var(--insight-white);
  font-weight: 500;
}

.article-meta-separator {
  color: rgba(255, 255, 255, 0.34);
}

.hub-main {
  padding: 94px 0 120px;
}

.section-label {
  margin: 0 0 18px;
  color: var(--insight-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hub-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 42px;
}

.hub-section-heading h2,
.topic-hub-header h2,
.faq-section h2 {
  margin: 0;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1;
}

.hub-section-heading p,
.topic-hub-header p {
  max-width: 510px;
  margin: 0;
  color: var(--insight-muted);
  line-height: 1.5;
}

.featured-pillar {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 430px;
  border: 1px solid rgba(84, 246, 237, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: var(--insight-teal);
  color: var(--insight-white);
}

.featured-pillar-copy {
  padding: clamp(42px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.featured-pillar h2 {
  max-width: 600px;
  margin: 0;
  color: var(--insight-white);
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.02;
}

.featured-pillar p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.45;
}

.featured-pillar-media {
  min-height: 430px;
}

.featured-pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-feature-list {
  display: grid;
  gap: 30px;
}

.pillar-feature {
  min-height: 390px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar-feature:hover {
  border-color: rgba(84, 246, 237, 0.55);
  transform: translateY(-3px);
}

.pillar-feature:nth-child(even) .featured-pillar-copy {
  order: 2;
}

.pillar-feature:nth-child(even) .featured-pillar-media {
  order: 1;
}

.pillar-feature .featured-pillar-media {
  min-height: 390px;
}

.pillar-feature .featured-pillar-copy {
  padding: clamp(38px, 5vw, 62px);
}

.pillar-feature h2 {
  font-size: clamp(34px, 3.5vw, 52px);
}

.text-link,
.article-button {
  min-height: 46px;
  margin-top: 34px;
  padding: 0 20px;
  border: 1px solid rgba(191, 247, 238, 0.34);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--insight-white);
  font-size: 13px;
  font-weight: 500;
}

.text-link::after,
.article-button::after {
  content: "→";
  color: var(--insight-aqua);
}

.all-articles {
  margin-top: 112px;
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.article-filter {
  min-height: 40px;
  border: 1px solid var(--insight-line);
  border-radius: 999px;
  padding: 0 17px;
  background: transparent;
  color: var(--insight-ink);
  cursor: pointer;
}

.article-filter:hover,
.article-filter.is-active {
  border-color: var(--insight-teal);
  background: var(--insight-teal);
  color: var(--insight-white);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.article-card {
  min-width: 0;
  border: 1px solid var(--insight-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--insight-teal);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
  border-color: var(--insight-mid);
  transform: translateY(-3px);
}

.article-card[hidden] {
  display: none;
}

.article-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--insight-teal);
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.025);
}

.article-card-copy {
  padding: 26px 26px 28px;
}

.article-card-category {
  color: var(--insight-mid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 15px 0 0;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.06;
}

.article-card p {
  margin: 18px 0 0;
  color: var(--insight-muted);
  font-size: 14px;
  line-height: 1.45;
}

.article-card-meta {
  margin-top: 25px;
  color: #75878a;
  font-size: 11px;
}

.future-topics {
  margin-top: 112px;
  padding-top: 68px;
  border-top: 1px solid var(--insight-line);
}

.future-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--insight-line);
  border: 1px solid var(--insight-line);
}

.future-topic {
  min-height: 150px;
  padding: 28px;
  background: var(--insight-teal);
}

.future-topic strong {
  display: block;
  color: var(--insight-white);
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.future-topic span {
  display: block;
  margin-top: 12px;
  color: var(--insight-muted);
  font-size: 13px;
  line-height: 1.4;
}

.article-main {
  padding: 88px 0 118px;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: clamp(48px, 7vw, 92px);
}

.article-toc {
  position: sticky;
  top: 28px;
  min-width: 0;
}

.article-toc-title {
  margin: 0 0 18px;
  color: var(--insight-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.article-toc nav {
  display: grid;
  border-top: 1px solid var(--insight-line);
}

.article-toc nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--insight-line);
  color: var(--insight-muted);
  font-size: 13px;
  line-height: 1.25;
}

.article-toc nav a:hover,
.article-toc nav a.is-current {
  color: var(--insight-teal);
}

.toc-contact {
  margin-top: 30px;
  padding: 24px;
  border-radius: 8px;
  background: var(--insight-teal);
  color: var(--insight-white);
}

.toc-contact strong {
  font-size: 16px;
  font-weight: 500;
}

.toc-contact p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.4;
}

.toc-contact a {
  display: inline-block;
  margin-top: 16px;
  color: var(--insight-aqua);
  font-size: 12px;
  font-weight: 600;
}

.article-prose {
  min-width: 0;
  font-size: 18px;
  line-height: 1.72;
}

.article-dek {
  margin: 0 0 44px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--insight-line);
  color: #344f53;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 300;
  line-height: 1.35;
}

.article-prose section {
  scroll-margin-top: 28px;
}

.article-prose h2 {
  margin: 68px 0 24px;
  color: var(--insight-ink);
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.06;
}

.article-prose h3 {
  margin: 36px 0 14px;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}

.article-prose p {
  margin: 0 0 24px;
}

.article-prose a:not(.article-button) {
  color: #006b70;
  text-decoration: underline;
  text-decoration-color: rgba(0, 107, 112, 0.35);
  text-underline-offset: 3px;
}

.article-prose ul,
.article-prose ol {
  margin: 20px 0 28px;
  padding-left: 24px;
}

.article-prose li {
  margin: 9px 0;
}

.key-takeaways {
  margin: 0 0 62px;
  padding: 34px 36px;
  border-radius: 8px;
  background: var(--insight-teal);
  color: var(--insight-white);
}

.key-takeaways h2 {
  margin: 0 0 20px;
  color: var(--insight-white);
  font-size: 30px;
}

.key-takeaways ul {
  margin: 0;
  padding-left: 20px;
}

.key-takeaways li {
  color: rgba(255, 255, 255, 0.84);
}

.key-takeaways li::marker {
  color: var(--insight-aqua);
}

.article-related-links {
  margin: 0 0 62px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 64px);
  border-top: 1px solid rgba(84, 246, 237, 0.24);
  border-bottom: 1px solid rgba(84, 246, 237, 0.24);
}

.article-related-intro p {
  margin: 0;
  color: var(--insight-aqua);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-related-intro span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.article-related-links nav {
  min-width: 0;
  display: grid;
}

.article-prose .article-related-links a {
  min-width: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.article-prose .article-related-links a:first-child {
  padding-top: 0;
}

.article-prose .article-related-links a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-related-links a > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.article-related-links small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-related-links strong {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.article-related-links i {
  flex: 0 0 auto;
  color: var(--insight-aqua);
  font-size: 16px;
  font-style: normal;
  transition: transform 0.2s ease;
}

.article-related-links a:hover {
  color: #ffffff;
}

.article-related-links a:hover i {
  transform: translateX(3px);
}

.comparison-table-wrap {
  margin: 30px 0 36px;
  overflow-x: auto;
  border: 1px solid var(--insight-line);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--insight-teal);
  font-size: 14px;
  line-height: 1.35;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  border-right: 1px solid var(--insight-line);
  border-bottom: 1px solid var(--insight-line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #e4efed;
  color: var(--insight-teal);
  font-weight: 600;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

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

.contextual-cta {
  margin: 58px 0;
  padding: 34px 36px;
  border: 1px solid #2a686e;
  border-radius: 8px;
  background: #e7f1ef;
}

.contextual-cta strong {
  display: block;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.contextual-cta p {
  margin: 14px 0 0;
  color: var(--insight-muted);
  font-size: 15px;
  line-height: 1.45;
}

.contextual-cta .article-button {
  margin-top: 22px;
  border-color: var(--insight-teal);
  background: var(--insight-teal);
}

.source-note {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--insight-line);
  color: #6d8083;
  font-size: 12px;
  line-height: 1.5;
}

.faq-section {
  padding: 88px 0;
  background: #e7efed;
}

.faq-list {
  max-width: 920px;
  margin: 42px auto 0;
  border-top: 1px solid #adc3c0;
}

.faq-item {
  border-bottom: 1px solid #adc3c0;
}

.faq-item summary {
  position: relative;
  padding: 24px 48px 24px 0;
  list-style: none;
  cursor: pointer;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 28px;
  height: 28px;
  border: 1px solid #74918f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--insight-teal);
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 48px 25px 0;
  color: var(--insight-muted);
  line-height: 1.55;
}

.topic-hub {
  padding: 96px 0 112px;
  background: transparent;
}

.topic-hub-header {
  max-width: 740px;
}

.topic-hub-header p {
  margin-top: 20px;
}

.topic-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.topic-link {
  min-height: 154px;
  padding: 26px;
  border: 1px solid var(--insight-line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--insight-teal);
}

.topic-link.is-current {
  border-color: var(--insight-mid);
  background: #e3f1ef;
}

.topic-link span {
  color: var(--insight-mid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topic-link strong {
  margin-top: 20px;
  color: var(--insight-white);
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.12;
}

.final-insights-cta {
  padding: 104px 0 112px;
  background: var(--insight-teal);
  color: var(--insight-white);
  text-align: center;
}

.final-insights-cta h2 {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Funnel Display", "Funnel Sans", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1;
}

.final-insights-cta p {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.45;
}

.final-insights-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.final-insights-actions a {
  min-height: 48px;
  border: 1px solid rgba(191, 247, 238, 0.38);
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--insight-white);
  font-size: 13px;
  font-weight: 500;
}

.final-insights-actions a:first-child {
  border-color: var(--insight-mint);
  background: var(--insight-mint);
  color: var(--insight-deep);
}

.insights-page .jump-footer {
  background: var(--insight-deep) !important;
}

.insights-page .jump-footer::before {
  display: none;
}

/* Keep the editorial system on the same deep-teal surface as the main site. */
.hub-main,
.article-main,
.topic-hub {
  background: transparent;
  color: var(--insight-white);
}

.hub-section-heading h2,
.topic-hub-header h2,
.faq-section h2,
.article-prose h2,
.article-prose h3,
.article-card h3,
.topic-link strong {
  color: var(--insight-white);
}

.section-label,
.article-card-category,
.article-toc-title,
.topic-link span {
  color: var(--insight-aqua);
}

.hub-section-heading p,
.topic-hub-header p,
.article-card p,
.article-card-meta,
.article-dek,
.article-toc nav a,
.source-note,
.faq-answer {
  color: rgba(255, 255, 255, 0.68);
}

.article-filter {
  border-color: rgba(191, 247, 238, 0.28);
  color: rgba(255, 255, 255, 0.82);
}

.article-filter:hover,
.article-filter.is-active {
  border-color: var(--insight-mint);
  background: var(--insight-mint);
  color: var(--insight-deep);
}

.article-card,
.topic-link {
  border-color: rgba(84, 246, 237, 0.2);
  background: var(--insight-teal);
  color: var(--insight-white);
}

.article-card:hover,
.topic-link:hover {
  border-color: rgba(84, 246, 237, 0.58);
}

.article-prose {
  color: rgba(255, 255, 255, 0.84);
}

.article-dek,
.article-toc nav,
.article-toc nav a,
.source-note {
  border-color: rgba(191, 247, 238, 0.2);
}

.article-toc nav a:hover,
.article-toc nav a.is-current,
.article-prose a:not(.article-button) {
  color: var(--insight-mint);
}

.article-prose a:not(.article-button) {
  text-decoration-color: rgba(191, 247, 238, 0.42);
}

.key-takeaways,
.toc-contact {
  border: 1px solid rgba(84, 246, 237, 0.24);
  background: #00363c;
}

.comparison-table-wrap {
  border-color: rgba(191, 247, 238, 0.24);
}

.comparison-table {
  background: var(--insight-teal);
  color: rgba(255, 255, 255, 0.82);
}

.comparison-table th,
.comparison-table td {
  border-color: rgba(191, 247, 238, 0.18);
}

.comparison-table th {
  background: var(--insight-mid);
  color: var(--insight-white);
}

.contextual-cta {
  border-color: rgba(84, 246, 237, 0.4);
  background: var(--insight-teal);
  color: var(--insight-white);
}

.contextual-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.contextual-cta .article-button {
  border-color: var(--insight-mint);
  background: var(--insight-mint);
  color: var(--insight-deep);
}

.faq-section {
  background: rgba(0, 55, 61, 0.72);
  color: var(--insight-white);
}

.faq-list,
.faq-item {
  border-color: rgba(191, 247, 238, 0.22);
}

.faq-item summary::after {
  border-color: rgba(191, 247, 238, 0.45);
  color: var(--insight-aqua);
}

.topic-link.is-current {
  border-color: var(--insight-aqua);
  background: var(--insight-mid);
}

@media (max-width: 1080px) {
  .article-grid,
  .topic-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 230px minmax(0, 700px);
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .insights-container {
    width: min(760px, calc(100% - 56px));
  }

  .insights-hero,
  .insights-hero.is-article {
    min-height: max(760px, 100svh);
  }

  .insights-hero .desktop-language-switcher {
    display: none;
  }

  .insights-hero-copy,
  .insights-hero.is-article .insights-hero-copy {
    bottom: 76px;
  }

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

  .featured-pillar-media {
    min-height: 340px;
    order: -1;
  }

  .pillar-feature:nth-child(even) .featured-pillar-copy {
    order: 0;
  }

  .pillar-feature:nth-child(even) .featured-pillar-media {
    order: -1;
  }

  .article-layout {
    display: block;
    max-width: 760px;
    margin: 0 auto;
  }

  .article-toc {
    position: static;
    margin-bottom: 48px;
    padding: 26px;
    border: 1px solid rgba(191, 247, 238, 0.24);
    border-radius: 8px;
    background: var(--insight-teal);
  }

  .toc-contact {
    display: none;
  }

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

}

@media (max-width: 640px) {
  .insights-container {
    width: calc(100% - 40px);
  }

  .insights-hero,
  .insights-hero.is-article {
    min-height: 100svh;
  }

  .insights-hero .hero-shell {
    min-height: 100svh !important;
    padding-top: max(48px, calc(env(safe-area-inset-top) + 42px)) !important;
  }

  .insights-brand img {
    width: 82px;
    height: 18px;
  }

  .insights-hero-copy,
  .insights-hero.is-article .insights-hero-copy {
    bottom: max(58px, calc(env(safe-area-inset-bottom) + 42px));
  }

  .article-breadcrumbs {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .article-breadcrumbs .breadcrumb-current {
    display: none;
  }

  .article-category,
  .insights-eyebrow {
    min-height: 28px;
    margin-bottom: 20px;
    padding: 0 12px;
    font-size: 8px;
  }

  .insights-hero h1,
  .insights-hero.is-article h1 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.02;
  }

  .insights-hero-summary {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.35;
  }

  .article-meta {
    margin-top: 22px;
    gap: 7px 10px;
    font-size: 11px;
  }

  .hub-main,
  .article-main {
    padding: 64px 0 82px;
  }

  .hub-section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .hub-section-heading p {
    margin-top: 18px;
  }

  .featured-pillar-media {
    min-height: 240px;
  }

  .featured-pillar-copy {
    padding: 30px 26px 34px;
  }

  .featured-pillar h2 {
    font-size: 36px;
  }

  .featured-pillar p {
    font-size: 15px;
  }

  .all-articles,
  .future-topics {
    margin-top: 76px;
  }

  .article-grid,
  .topic-hub-grid,
  .future-topic-grid {
    grid-template-columns: 1fr;
  }

  .article-card h3 {
    font-size: 25px;
  }

  .article-toc {
    margin-bottom: 38px;
    padding: 22px;
  }

  .article-prose {
    font-size: 16px;
    line-height: 1.65;
  }

  .article-dek {
    margin-bottom: 34px;
    padding-bottom: 30px;
    font-size: 24px;
  }

  .article-prose h2 {
    margin-top: 54px;
    font-size: 34px;
  }

  .article-prose h3 {
    font-size: 23px;
  }

  .key-takeaways,
  .contextual-cta {
    padding: 28px 24px;
  }

  .article-related-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-section,
  .topic-hub {
    padding: 72px 0 80px;
  }

  .faq-item summary {
    font-size: 18px;
  }

  .final-insights-cta {
    padding: 80px 0 86px;
  }

  .final-insights-cta h2 {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
