/* Insights + Settlement Glossary content styles.
   Built on the live site's design tokens (var(--frame-*) / var(--font-*)),
   with hex fallbacks from brand-tokens.ts so colours are correct even if a
   token name differs. Loaded only by the Resource layout, so #main scoping
   is safe. Light, editorial, body text >=17px per brand. */

:root {
  --ins-ink: var(--frame-ironworks, #111418);
  --ins-forge: var(--frame-forge, #343A42);
  --ins-foundry: var(--frame-foundry, #5F6771);
  --ins-galv: var(--frame-galvanized, #8F98A3);
  --ins-coldroll: var(--frame-coldroll, #DDE1E6);
  --ins-clearspan: var(--frame-clearspan, #F3F4F5);
  --ins-deepwater: var(--frame-deepwater, #0F4C81);
  --ins-ballast: var(--frame-ballast, #0B3559);
  --ins-conduit: var(--frame-conduit, #639DCD);
  --ins-patina: var(--frame-patina, #2F6F73);
  --ins-display: var(--font-display, "Big Shoulders Display", sans-serif);
  --ins-body: var(--font-body, "IBM Plex Sans", system-ui, sans-serif);
  --ins-cond: var(--font-condensed, "IBM Plex Sans Condensed", sans-serif);
  --ins-mono: var(--font-mono, "IBM Plex Mono", ui-monospace, monospace);
}

/* The whole resources surface is light. */
#main {
  background: #fff;
  color: var(--ins-ink);
  font-family: var(--ins-body);
}

/* The site nav is built dark-first: transparent with light text over the
   homepage's dark hero, gaining a dark bar only on scroll. These pages are
   light from the top, so lock the nav into its solid dark-bar state (the same
   look it has when scrolled anywhere on the site) so the logo and links stay
   legible. Uses a dedicated class so core.js's is-solid toggle can't undo it. */
.nav.nav--onlight {
  background: rgba(7, 9, 12, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-1, rgba(255, 255, 255, 0.08));
}

.ins-skip {
  position: absolute;
  left: -9999px;
}
.ins-skip:focus {
  left: 16px;
  top: 16px;
  z-index: 60;
  background: var(--ins-ink);
  color: #fff;
  padding: 10px 16px;
  outline: 2px solid var(--ins-conduit);
}

/* Width wrappers (the site's .wrap sets the page gutter; these set reading
   measures inside it). */
.ins-narrow { max-width: 780px; margin-inline: auto; }
.ins-wide { max-width: 980px; margin-inline: auto; }

/* Clear the fixed nav. */
.ins-hero {
  padding-top: calc(var(--nav-h, 80px) + clamp(44px, 7vh, 92px));
  padding-bottom: clamp(28px, 4vw, 48px);
}
.ins-body-section { padding-bottom: clamp(72px, 10vw, 128px); }
/* Article / term page: nav clearance on top, generous bottom. */
.ins-page {
  padding-top: calc(var(--nav-h, 80px) + clamp(44px, 7vh, 92px));
  padding-bottom: clamp(72px, 10vw, 128px);
}
.ins-breadcrumb li { display: inline-flex; align-items: center; }

.ins-eyebrow {
  font-family: var(--ins-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--ins-deepwater);
  margin: 0;
}

.ins-h1 {
  font-family: var(--ins-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--ins-ink);
  margin: 14px 0 0;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  text-wrap: balance;
}
.ins-h1--lg { font-size: clamp(3rem, 8vw, 5.5rem); }

/* The lead definition — the block answer engines lift. */
.ins-lead {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--ins-deepwater);
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--ins-forge);
  max-width: 42ch;
}
.ins-intro {
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--ins-forge);
  max-width: 60ch;
}
.ins-count {
  margin: 16px 0 0;
  font-family: var(--ins-mono);
  font-size: 13px;
  color: var(--ins-galv);
}

/* Breadcrumbs. */
.ins-breadcrumb {
  font-family: var(--ins-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--ins-foundry);
}
.ins-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}
.ins-breadcrumb a { color: inherit; text-decoration: none; }
.ins-breadcrumb a:hover { color: var(--ins-deepwater); }
.ins-breadcrumb [aria-current="page"] { color: var(--ins-galv); }
.ins-breadcrumb .sep { color: var(--ins-coldroll); }

/* Article prose (the MDX body). */
.ins-prose { margin-top: 44px; font-size: 17px; line-height: 1.65; color: var(--ins-forge); }
.ins-prose > * + * { margin-top: 24px; }
.ins-prose h2 {
  font-family: var(--ins-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--ins-ink);
  margin-top: 48px;
  font-size: clamp(26px, 3.4vw, 32px);
}
.ins-prose h3 {
  font-family: var(--ins-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ins-ink);
  margin-top: 36px;
  font-size: clamp(21px, 2.6vw, 24px);
}
.ins-prose p { font-size: 17px; line-height: 1.65; }
.ins-prose a {
  color: var(--ins-deepwater);
  text-decoration: underline;
  text-decoration-color: var(--ins-coldroll);
  text-underline-offset: 2px;
}
.ins-prose a:hover { text-decoration-color: var(--ins-deepwater); }
.ins-prose strong { font-weight: 600; color: var(--ins-ink); }
.ins-prose ul, .ins-prose ol { padding-left: 24px; }
.ins-prose li { font-size: 17px; line-height: 1.6; }
.ins-prose li + li { margin-top: 8px; }
.ins-prose blockquote {
  border-left: 2px solid var(--ins-conduit);
  padding-left: 20px;
  color: var(--ins-forge);
}
.ins-prose code {
  font-family: var(--ins-mono);
  font-size: 15px;
  background: var(--ins-clearspan);
  color: var(--ins-ballast);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Sub-sections under an article (FAQ, related, sources). */
.ins-block { margin-top: 64px; border-top: 1px solid var(--ins-coldroll); padding-top: 44px; }
.ins-block__h {
  font-family: var(--ins-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--ins-foundry);
  margin: 0;
}
.ins-block__h--display {
  font-family: var(--ins-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.4vw, 32px);
  color: var(--ins-ink);
}

/* FAQ. */
.ins-faq { margin-top: 32px; display: grid; gap: 32px; }
.ins-faq dt { font-size: 18px; font-weight: 500; line-height: 1.4; color: var(--ins-ink); }
.ins-faq dd { margin: 8px 0 0; font-size: 17px; line-height: 1.6; color: var(--ins-forge); }

/* Related term chips. */
.ins-chips { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.ins-chip {
  display: inline-block;
  border: 1px solid var(--ins-coldroll);
  padding: 8px 16px;
  font-size: 15px;
  color: var(--ins-forge);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.ins-chip:hover { border-color: var(--ins-deepwater); color: var(--ins-deepwater); }

/* Sources. */
.ins-sources { margin-top: 24px; padding-left: 20px; display: grid; gap: 12px; }
.ins-sources li { font-size: 15px; line-height: 1.5; color: var(--ins-foundry); }
.ins-sources a {
  color: var(--ins-deepwater);
  text-decoration: underline;
  text-decoration-color: var(--ins-coldroll);
  text-underline-offset: 2px;
}
.ins-sources a:hover { text-decoration-color: var(--ins-deepwater); }

.ins-reviewed { margin-top: 64px; font-family: var(--ins-mono); font-size: 12px; color: var(--ins-galv); }
.ins-back { margin-top: 8px; }
.ins-back a { color: var(--ins-deepwater); font-size: 15px; text-decoration: none; }
.ins-back a:hover { text-decoration: underline; }

/* Glossary index — category groups. */
.ins-cat { margin-top: 56px; }
.ins-cat__h {
  font-family: var(--ins-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--ins-foundry);
  border-bottom: 1px solid var(--ins-coldroll);
  padding-bottom: 12px;
  margin: 0;
}
.ins-termlist { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 24px 32px; }
@media (min-width: 720px) { .ins-termlist { grid-template-columns: 1fr 1fr; } }
.ins-term {
  display: block;
  border-left: 2px solid transparent;
  padding-left: 16px;
  text-decoration: none;
  transition: border-color .15s;
}
.ins-term:hover { border-left-color: var(--ins-deepwater); }
.ins-term__name {
  display: inline-block;
  font-size: 19px;
  font-weight: 500;
  color: var(--ins-ink);
  background-image: linear-gradient(92deg, var(--ins-ballast), var(--ins-deepwater) 55%, var(--ins-conduit));
  -webkit-background-clip: text;
  background-clip: text;
  transition: color .25s ease;
}
.ins-term:hover .ins-term__name { color: transparent; }
.ins-term__def { display: block; margin-top: 4px; font-size: 15px; line-height: 1.5; color: var(--ins-foundry); }

/* Insights hub — feature card + strands. */
.ins-card {
  display: block;
  background: var(--ins-clearspan);
  padding: clamp(28px, 4vw, 48px);
  text-decoration: none;
  transition: background .15s;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 96% 100%, 0 100%);
}
.ins-card:hover { background: var(--ins-coldroll); }
.ins-card__eyebrow {
  font-family: var(--ins-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--ins-deepwater);
}
.ins-card__title {
  display: block;
  margin-top: 14px;
  font-family: var(--ins-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ins-ink);
  font-size: clamp(32px, 5vw, 52px);
}
.ins-card__body { display: block; margin-top: 16px; max-width: 56ch; font-size: 17px; line-height: 1.6; color: var(--ins-forge); }
.ins-card__cta { display: inline-block; margin-top: 22px; font-size: 15px; font-weight: 500; color: var(--ins-deepwater); }

.ins-strands { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 32px; }
@media (min-width: 720px) { .ins-strands { grid-template-columns: repeat(3, 1fr); } }
.ins-strand__name { display: block; font-size: 19px; font-weight: 500; color: var(--ins-ink); text-decoration: none; }
a.ins-strand__name:hover { color: var(--ins-deepwater); }
.ins-strand__name.is-muted { color: var(--ins-galv); }
.ins-strand__body { display: block; margin-top: 8px; font-size: 15px; line-height: 1.55; color: var(--ins-foundry); }
.ins-strand__tag { display: inline-block; margin-top: 12px; font-family: var(--ins-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.ins-strand__tag.is-live { color: var(--ins-patina); }
.ins-strand__tag.is-soon { color: var(--ins-galv); }

/* base.css ships a global `a:hover { text-decoration: underline }` whose
   specificity (0,1,1) beats a bare class (0,1,0) in the hover state, which
   underlined every span inside these card-style links. Kill it here; the
   hover signal is the gradient treatment instead. */
.ins-term:hover, .ins-term:hover span,
a.ins-vcard:hover, a.ins-vcard:hover span { text-decoration: none; }

/* =====================================================================
   Imagery — Insights hub + Settlement Glossary.
   Editorial CGI stills (deepwater/steel), cut-corner framing to match the
   brand's chamfer motif. Kept restrained: images support the reading, they
   don't shout. All art is decorative, so alt="" and aria-hidden where apt.
   ===================================================================== */

/* Shared cut-corner image frame (chamfer bottom-right, brand motif). */
.ins-fig { position: relative; overflow: hidden; background: var(--ins-ballast); }
.ins-fig img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Hero banner (Insights hub + Glossary index). Text sits over the dark left
   of the still; a scrim guarantees contrast regardless of the crop. */
.ins-herobanner {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  background: var(--ins-ink);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 88%);
}
.ins-herobanner__img { display: block; width: 100%; height: clamp(300px, 42vw, 480px); object-fit: cover; }
.ins-herobanner__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.94) 0%, rgba(7, 10, 16, 0.7) 34%, rgba(7, 10, 16, 0.18) 66%, rgba(7, 10, 16, 0) 100%),
    linear-gradient(0deg, rgba(7, 10, 16, 0.55) 0%, rgba(7, 10, 16, 0) 42%);
}
.ins-herobanner__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px);
}
.ins-herobanner .ins-eyebrow { color: var(--ins-conduit); }
.ins-herobanner__title {
  font-family: var(--ins-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 0.96; color: #fff; margin: 10px 0 0;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
}
.ins-herobanner__intro {
  margin: 16px 0 0; max-width: 52ch;
  font-size: clamp(16px, 1.7vw, 19px); line-height: 1.55; color: rgba(255, 255, 255, 0.82);
}

/* Featured banner — The Settlement Blueprint. Image-led split card in the
   same cut-corner language as the section cards, dark like the hero so it
   reads as the hub's flagship object. */
.ins-feature {
  display: grid;
  text-decoration: none;
  color: inherit;
  background: var(--ins-ink);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 96.5% 100%, 0 100%);
  overflow: hidden;
  transition: transform 0.18s ease;
}
@media (min-width: 860px) { .ins-feature { grid-template-columns: minmax(0, 46%) minmax(0, 1fr); } }
.ins-feature:hover { transform: translateY(-3px); }
.ins-feature__fig { position: relative; overflow: hidden; background: var(--ins-ballast); min-height: 240px; }
@media (max-width: 859px) { .ins-feature__fig { aspect-ratio: 16 / 9; min-height: 0; } }
.ins-feature__fig img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.ins-feature:hover .ins-feature__fig img { transform: scale(1.045); }
.ins-feature__pad {
  display: flex; flex-direction: column; gap: 12px;
  padding: clamp(22px, 3vw, 40px);
}
.ins-feature__eyebrow {
  font-family: var(--ins-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 12px; color: var(--ins-conduit);
}
.ins-feature__title {
  font-family: var(--ins-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 0.98; color: #fff;
  font-size: clamp(30px, 3.6vw, 46px);
}
.ins-feature__body { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.78); max-width: 56ch; }
.ins-feature__meta {
  font-family: var(--ins-mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--ins-galv);
}
.ins-feature__cta {
  margin-top: auto; padding-top: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ins-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 14px; color: var(--ins-conduit);
}
.ins-feature__cta .material-symbols-sharp { font-size: 18px; transition: transform 0.18s ease; }
.ins-feature:hover .ins-feature__cta .material-symbols-sharp { transform: translateX(4px); }

/* Section cards (Glossary / Landscape / Regulation) — image-topped, cut-corner. */
.ins-cardgrid { margin-top: 32px; display: grid; gap: 28px; }
@media (min-width: 800px) { .ins-cardgrid { grid-template-columns: repeat(3, 1fr); } }
.ins-vcard {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--ins-clearspan);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 93% 100%, 0 100%);
  transition: transform 0.18s ease, background 0.18s ease;
}
a.ins-vcard:hover { background: var(--ins-coldroll); transform: translateY(-3px); }
.ins-vcard.is-soon { cursor: default; }
.ins-vcard__fig { overflow: hidden; aspect-ratio: 16 / 9; background: var(--ins-ballast); }
.ins-vcard__fig img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
a.ins-vcard:hover .ins-vcard__fig img { transform: scale(1.045); }
.ins-vcard.is-soon .ins-vcard__fig img { filter: grayscale(0.35) opacity(0.82); }
.ins-vcard__pad { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: clamp(18px, 2vw, 26px); }
.ins-vcard__eyebrow {
  font-family: var(--ins-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 11px; color: var(--ins-deepwater);
}
.ins-vcard.is-soon .ins-vcard__eyebrow { color: var(--ins-galv); }
.ins-vcard__title {
  font-family: var(--ins-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 1.02; color: var(--ins-ink);
  font-size: clamp(22px, 2.4vw, 28px);
  background-image: linear-gradient(92deg, var(--ins-ballast), var(--ins-deepwater) 55%, var(--ins-conduit));
  -webkit-background-clip: text;
  background-clip: text;
  transition: color .3s ease;
}
a.ins-vcard:hover .ins-vcard__title { color: transparent; }
.ins-vcard__body { font-size: 15px; line-height: 1.55; color: var(--ins-foundry); }
.ins-vcard__cta { margin-top: auto; padding-top: 6px; font-size: 14px; font-weight: 500; color: var(--ins-deepwater); }
.ins-vcard__tag {
  margin-top: auto; padding-top: 6px; font-family: var(--ins-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ins-galv);
}

/* Glossary index — term rows gain a thumbnail. */
.ins-termlist { grid-template-columns: 1fr; }
@media (min-width: 720px) { .ins-termlist { grid-template-columns: 1fr 1fr; gap: 28px 32px; } }
.ins-term { display: flex; gap: 16px; align-items: flex-start; border-left: 0; padding-left: 0; }
.ins-term__thumb {
  flex: 0 0 104px; width: 104px; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--ins-ballast);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%, 0 82%);
}
.ins-term__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.ins-term:hover .ins-term__thumb img { transform: scale(1.06); }
.ins-term__text { min-width: 0; }
.ins-term:hover { border-left-color: transparent; }

/* Glossary term page — header image under the lead. */
.ins-termhero {
  margin: 32px 0 0; overflow: hidden; aspect-ratio: 16 / 9; background: var(--ins-ballast);
  clip-path: polygon(0 0, 100% 0, 100% 89%, 95% 100%, 0 100%);
}
.ins-termhero img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   Insights hub hero v2 — "the reference desk".
   One dark drafting-sheet block replaces the old photo hero + separate
   featured banner: headline left, the Blueprint book art right, and an
   engineering title-block strip along the base (the same device as the
   Blueprint PDF cover), with live counts as the sheet data.
   ===================================================================== */
.ins-desk {
  position: relative;
  margin-top: 20px;
  background:
    radial-gradient(90% 130% at 78% 40%, rgba(15, 76, 129, 0.55) 0%, rgba(15, 76, 129, 0) 62%),
    repeating-linear-gradient(0deg, rgba(99, 157, 205, 0.045) 0, rgba(99, 157, 205, 0.045) 1px, transparent 1px, transparent 56px),
    repeating-linear-gradient(90deg, rgba(99, 157, 205, 0.045) 0, rgba(99, 157, 205, 0.045) 1px, transparent 1px, transparent 56px),
    #060a10;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 92%);
  overflow: hidden;
}
.ins-desk__grid {
  display: grid;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(26px, 4vw, 52px) clamp(22px, 4vw, 52px) clamp(18px, 2.5vw, 34px);
}
@media (min-width: 880px) {
  .ins-desk__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 46%); }
}
.ins-desk__eyebrow { color: var(--ins-conduit); }
.ins-desk__title {
  font-family: var(--ins-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.94;
  color: #fff;
  margin: 12px 0 0;
  font-size: clamp(2.9rem, 6.5vw, 5rem);
  text-wrap: balance;
}
.ins-desk__intro {
  margin: 16px 0 0;
  max-width: 44ch;
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.ins-desk__feature {
  margin-top: clamp(22px, 3vw, 34px);
  padding: 18px 20px 20px;
  border-left: 2px solid var(--ins-conduit);
  background: rgba(11, 53, 89, 0.32);
  max-width: 52ch;
}
.ins-desk__flabel {
  margin: 0;
  font-family: var(--ins-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ins-conduit);
}
.ins-desk__fname {
  margin: 8px 0 0;
  font-family: var(--ins-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #fff;
}
.ins-desk__fline {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}
.ins-desk__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 20px;
  background: var(--ins-conduit);
  color: #0a0e14;
  text-decoration: none;
  font-family: var(--ins-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 62%, 94% 100%, 0 100%);
  transition: background 0.15s ease;
}
.ins-desk__cta:hover { background: #7fb1d9; text-decoration: none; }
.ins-desk__cta .material-symbols-sharp { font-size: 18px; transition: transform 0.18s ease; }
.ins-desk__cta:hover .material-symbols-sharp { transform: translateX(4px); }
.ins-desk__copy { position: relative; z-index: 2; min-width: 0; }
.ins-desk__art { display: block; min-width: 0; overflow: visible; position: relative; z-index: 1; }
.ins-desk__art img {
  position: relative;
  display: block;
  width: 120%;
  max-width: none;
  margin-left: -10%;
  height: auto;
  -webkit-mask-image: radial-gradient(62% 62% at 50% 50%, #000 52%, transparent 92%);
  mask-image: radial-gradient(62% 62% at 50% 50%, #000 52%, transparent 92%);
  transition: transform 0.5s ease;
}
.ins-desk__art:hover img { transform: scale(1.03); }
.ins-desk__tb {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px clamp(22px, 4vw, 52px) 14px;
  margin-left: 5%;
  font-family: var(--ins-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ins-galv);
}
.ins-desk__tb span { padding-right: 22px; }
.ins-desk__tb span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 22px;
}

/* Hub section headings — display face with a mono count. */
.ins-secthead {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--ins-coldroll);
  padding-bottom: 14px;
}
.ins-secthead__h {
  font-family: var(--ins-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ins-ink);
  margin: 0;
  font-size: clamp(26px, 3.2vw, 34px);
}
.ins-secthead__n { font-family: var(--ins-mono); font-size: 13px; color: var(--ins-galv); }

/* Two-up variant for the section cards row. */
@media (min-width: 800px) { .ins-cardgrid--2 { grid-template-columns: repeat(2, 1fr); } }

/* Respect reduced-motion: kill hover zoom / lift / sweeps. */
@media (prefers-reduced-motion: reduce) {
  .ins-vcard, .ins-vcard__fig img, .ins-term__thumb img,
  .ins-feature, .ins-feature__fig img, .ins-feature__cta .material-symbols-sharp { transition: none; }
  a.ins-vcard:hover { transform: none; }
  a.ins-vcard:hover .ins-vcard__fig img,
  .ins-term:hover .ins-term__thumb img { transform: none; }
  .ins-feature:hover { transform: none; }
  .ins-feature:hover .ins-feature__fig img,
  .ins-feature:hover .ins-feature__cta .material-symbols-sharp { transform: none; }
  .ins-vcard__title, .ins-term__name { transition: none; }
  .ins-desk__art img, .ins-desk__cta, .ins-desk__cta .material-symbols-sharp { transition: none; }
  .ins-desk__art:hover img { transform: none; }
  .ins-desk__cta:hover .material-symbols-sharp { transform: none; }
}
