@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap");

:root {
  --ink: #091620;
  --navy: #04131d;
  --navy-soft: #0d2633;
  --orange: #f36a14;
  --paper: #f7f4ee;
  --white: #fff;
  --line: #d9d4ca;
  --muted: #667079;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--paper); scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
a:focus-visible { outline: 3px solid rgba(243,106,20,.45); outline-offset: 4px; }
h1, h2, h3, p, li, a { overflow-wrap: break-word; }

.insight-header { position: relative; z-index: 2; color: var(--white); background: rgba(4,19,29,.98); border-bottom: 1px solid rgba(255,255,255,.14); }
.insight-header__inner { width: min(1180px, calc(100% - 64px)); min-height: 78px; margin: auto; display: flex; align-items: center; gap: 42px; }
.insight-brand { width: 248px; }
.insight-brand img { width: 100%; height: 54px; object-fit: contain; object-position: left center; }
.insight-header nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-size: 13px; }
.insight-header nav a:not(.insight-nav-cta) { color: rgba(255,255,255,.78); }
.insight-header nav a:hover { color: var(--white); }
.insight-nav-cta { padding: 13px 18px; background: var(--orange); font-weight: 600; }

.insights-hero { color: var(--white); background: var(--navy-soft); }
.insights-hero > div { width: min(1180px, calc(100% - 64px)); margin: auto; padding: clamp(72px, 8vw, 120px) 0; }
.article-kicker { margin: 0; color: var(--orange); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.insights-hero h1, .article-hero h1, .article-cta h2 { margin: 18px 0 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.035em; text-wrap: balance; }
.insights-hero h1 { max-width: 820px; font-size: clamp(52px, 6.3vw, 88px); line-height: .94; }
.insights-hero p:last-child { max-width: 720px; margin: 26px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.7; }

.insights-categories { width: min(1180px, calc(100% - 64px)); margin: auto; padding: 46px 0 0; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,1.9fr); gap: 44px; align-items: end; }
.insights-categories h2 { max-width: 480px; margin: 12px 0 0; font-family: var(--serif); font-size: clamp(36px,4vw,56px); line-height: .96; letter-spacing: -.025em; }
.insights-categories ul { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 34px; list-style: none; border-top: 1px solid var(--line); }
.insights-categories li { min-width: 0; padding: 14px 2px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.insights-categories li strong { color: var(--orange); font-size: 12px; font-weight: 600; }

.insights-grid { width: min(1180px, calc(100% - 64px)); margin: auto; padding: clamp(56px, 7vw, 96px) 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; align-items: stretch; }
.article-card { min-width: 0; min-height: 100%; overflow: hidden; display: grid; grid-template-rows: auto 1fr; background: #fffdf9; border: 1px solid var(--line); transition: transform .24s ease, box-shadow .24s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(4,19,29,.1); }
.article-card--featured { grid-column: 1 / -1; grid-template-columns: minmax(0,1.18fr) minmax(360px,.82fr); grid-template-rows: minmax(420px, auto); }
.article-card:last-child:not(.article-card--featured) { grid-column: 1 / -1; grid-template-columns: minmax(0,1.18fr) minmax(360px,.82fr); grid-template-rows: minmax(320px, auto); }
.article-card__image { position: relative; display: block; min-width: 0; min-height: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.article-card--featured .article-card__image, .article-card:last-child:not(.article-card--featured) .article-card__image { height: 100%; aspect-ratio: auto; }
.article-card__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.78,.2,1); }
.article-card:hover .article-card__image img { transform: scale(1.035); }
.article-card__body { min-width: 0; padding: 30px 32px 34px; display: flex; flex-direction: column; align-items: flex-start; }
.article-card h2 { margin: 14px 0 0; font-family: var(--serif); font-size: clamp(30px, 2.45vw, 38px); line-height: 1.02; letter-spacing: -.018em; text-wrap: balance; }
.article-card--featured h2 { font-size: clamp(38px, 4vw, 54px); }
.article-card h2 a { transition: color .18s ease; }
.article-card h2 a:hover { color: #b94d09; }
.article-card__summary { margin: 18px 0 0; color: var(--muted); line-height: 1.65; }
.article-link { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-weight: 600; }
.article-link span { transition: transform .18s ease; }
.article-link:hover span { transform: translateX(4px); }
.empty-state { grid-column: 1 / -1; padding: 50px; text-align: center; border: 1px solid var(--line); }

.article-page { background: #fffdf9; }
.article-hero { display: grid; grid-template-columns: minmax(0,.94fr) minmax(0,1.06fr); min-height: 600px; background: var(--navy-soft); color: var(--white); }
.article-hero__copy { padding: clamp(64px, 7vw, 110px) max(32px, calc((100vw - 1180px)/2)); padding-right: clamp(36px,5vw,76px); display: flex; flex-direction: column; justify-content: center; }
.breadcrumbs { margin-bottom: 50px; display: flex; gap: 10px; color: rgba(255,255,255,.58); font-size: 12px; }
.breadcrumbs a:hover { color: var(--white); }
.article-hero h1 { font-size: clamp(44px, 5vw, 70px); line-height: .98; }
.article-deck { margin: 25px 0 0; max-width: 660px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.65; }
.article-meta { margin-top: 32px; display: flex; gap: 18px; color: rgba(255,255,255,.52); font-size: 12px; }
.article-hero figure { position: relative; margin: 0; min-height: 480px; overflow: hidden; background: #071c29; }
.article-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.article-hero figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; width: fit-content; max-width: calc(100% - 36px); padding: 9px 12px; color: rgba(255,255,255,.88); background: rgba(4,19,29,.82); border: 1px solid rgba(255,255,255,.2); font-size: 11px; line-height: 1.45; backdrop-filter: blur(8px); }

.article-layout { width: min(1120px, calc(100% - 64px)); margin: auto; padding: clamp(64px, 8vw, 108px) 0; display: grid; grid-template-columns: 220px minmax(0,760px); justify-content: space-between; gap: clamp(44px,6vw,72px); }
.article-aside { position: sticky; top: 28px; align-self: start; padding: 20px; border-top: 3px solid var(--orange); background: var(--paper); }
.article-aside p { margin: 0 0 14px; font-family: var(--serif); font-size: 23px; line-height: 1.05; }
.article-aside a { display: block; margin-top: 8px; color: var(--orange); font-size: 13px; font-weight: 600; }
.article-body { min-width: 0; font-size: 17px; line-height: 1.78; }
.article-body > p:first-child { margin-top: 0; font-size: 21px; line-height: 1.62; color: #263944; }
.article-body h2 { margin: 64px 0 18px; font-family: var(--serif); font-size: clamp(36px,4vw,50px); line-height: 1; letter-spacing: -.025em; }
.article-body h3 { margin: 38px 0 12px; font-family: var(--serif); font-size: 29px; line-height: 1.05; }
.article-body p { margin: 0 0 22px; }
.article-body ul, .article-body ol { margin: 0 0 26px; padding-left: 24px; }
.article-body li { margin: 9px 0; padding-left: 6px; }
.article-body a { color: #b94d09; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body blockquote { margin: 34px 0; padding: 22px 26px; border-left: 3px solid var(--orange); background: var(--paper); font-family: var(--serif); font-size: 26px; line-height: 1.25; }
.article-body code { padding: 2px 5px; background: var(--paper); font-size: .9em; }
.source-panel { margin-top: 68px; padding: 28px; background: var(--paper); border-top: 1px solid var(--line); }
.source-panel h2 { margin-top: 0; font-size: 34px; }
.source-panel > p { color: var(--muted); font-size: 14px; }
.source-panel ul { margin-bottom: 0; padding: 0; list-style: none; }
.source-panel li { padding: 12px 0; display: grid; gap: 2px; border-top: 1px solid var(--line); }
.source-panel li span { color: var(--muted); font-size: 12px; }
.ai-disclosure { margin-top: 24px; padding: 18px 20px; color: var(--muted); border: 1px solid var(--line); font-size: 12px; line-height: 1.55; }

.article-cta { padding: clamp(64px,7vw,96px) max(32px,calc((100vw - 1180px)/2)); color: var(--white); background: var(--navy); }
.article-cta h2 { max-width: 760px; font-size: clamp(44px,5vw,68px); line-height: .97; }
.article-cta > p:not(.article-kicker) { max-width: 720px; color: rgba(255,255,255,.66); line-height: 1.68; }
.article-cta > div { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.article-cta a { padding: 15px 20px; border: 1px solid rgba(255,255,255,.44); font-weight: 600; }
.article-cta a:first-child { background: var(--orange); border-color: var(--orange); }

.insight-footer { width: min(1180px, calc(100% - 64px)); min-height: 130px; margin: auto; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.insight-footer img { width: 220px; filter: invert(1); }
.insight-footer p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.insight-footer nav { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 13px; }
.insight-footer a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .insight-header__inner, .insights-hero > div, .insights-grid, .article-layout, .insight-footer { width: min(100% - 40px, 760px); }
  .insights-categories { width: min(100% - 40px, 760px); grid-template-columns: 1fr; gap: 24px; }
  .insight-header nav a:not(.insight-nav-cta) { display: none; }
  .article-card--featured, .article-hero { grid-template-columns: 1fr; }
  .article-card--featured, .article-card:last-child:not(.article-card--featured) { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .article-card--featured .article-card__image, .article-card:last-child:not(.article-card--featured) .article-card__image { height: auto; aspect-ratio: 16 / 10; }
  .article-hero figure { min-height: 420px; }
  .article-layout { grid-template-columns: 1fr; gap: 38px; }
  .article-aside { position: static; }
}

@media (max-width: 620px) {
  .insight-header__inner { min-height: 68px; }
  .insight-brand { width: 170px; }
  .insight-brand img { height: 38px; }
  .insight-nav-cta { padding: 11px 12px; font-size: 11px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-categories { width: calc(100% - 40px); }
  .insights-categories ul { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: auto; }
  .article-card__image, .article-card--featured .article-card__image { min-height: 0; aspect-ratio: 16 / 10; }
  .article-card__body { padding: 23px 22px 26px; }
  .article-card h2, .article-card--featured h2 { font-size: clamp(29px, 9vw, 38px); }
  .article-card__summary { margin-top: 14px; font-size: 14px; line-height: 1.58; }
  .article-link { padding-top: 19px; }
  .article-hero__copy { padding: 58px 20px 48px; }
  .article-hero figure { min-height: 300px; }
  .breadcrumbs { margin-bottom: 34px; }
  .article-layout { width: calc(100% - 40px); padding-block: 58px; }
  .article-body { font-size: 16px; }
  .article-body h2 { margin-top: 52px; }
  .article-cta { padding-inline: 20px; }
  .insight-footer { align-items: flex-start; flex-direction: column; }
  .insight-footer img { width: 190px; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
