/* Insights and Success Stories only.
   The shared Option 3 stylesheet remains unchanged. */
body.insights-site .insights-hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
}

body.insights-site .insights-hero::after {
  position: absolute;
  width: min(50vw, 680px);
  aspect-ratio: 1;
  right: -10vw;
  top: -32%;
  border: clamp(70px, 9vw, 130px) solid rgba(35, 92, 255, 0.25);
  border-radius: 50%;
  content: "";
}

body.insights-site .insights-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

body.insights-site .insights-hero h1,
body.insights-site .insights-listing-hero h1,
body.insights-site .story-detail-hero h1 {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(50px, 7.2vw, 104px);
  font-weight: 600;
  line-height: 0.96;
}

body.insights-site .insights-hero__grid > div > p,
body.insights-site .insights-listing-hero .wrap > p,
body.insights-site .story-detail-hero__content > p {
  max-width: 720px;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.6vw, 21px);
}

body.insights-site .insights-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

body.insights-site .insights-signal {
  display: grid;
  gap: 15px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  background: rgba(13, 27, 46, 0.82);
}

body.insights-site .insights-signal strong {
  color: var(--yellow);
  font-size: clamp(68px, 8vw, 112px);
  line-height: 0.9;
}

body.insights-site .insights-signal span {
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font: 500 10px/1.4 "IBM Plex Mono", Consolas, monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.insights-site .insights-format-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--ink);
}

body.insights-site .insights-format-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 36px;
  border-right: 1px solid var(--line);
  transition: background 0.2s, transform 0.2s;
}

body.insights-site .insights-format-card:last-child { border-right: 0; }
body.insights-site .insights-format-card:hover { background: var(--yellow-soft); transform: translateY(-3px); }
body.insights-site .insights-format-card > span { color: var(--blue); }
body.insights-site .insights-format-card h3 { margin: auto 0 15px; font-size: clamp(24px, 2.2vw, 34px); }
body.insights-site .insights-format-card p { min-height: 88px; margin-bottom: 24px; color: var(--muted); font-size: 14px; }
body.insights-site .insights-format-card b { color: var(--blue); font-size: 12px; }

body.insights-site .insights-featured-grid,
body.insights-site .story-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

body.insights-site .insights-feature img,
body.insights-site .story-related-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 24px;
}

body.insights-site .insights-feature .eyebrow { margin-bottom: 12px; }
body.insights-site .insights-feature h3,
body.insights-site .story-related-grid h3 { margin: 0 0 16px; font-size: clamp(25px, 2.5vw, 34px); line-height: 1.06; }
body.insights-site .insights-feature p { color: var(--muted); font-size: 14px; }

body.insights-site .insights-cta h2 {
  max-width: 1100px;
  margin: 0 0 38px;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.01;
}

body.insights-site .insights-listing-hero { position: relative; overflow: hidden; }
body.insights-site .insights-listing-hero::after {
  position: absolute;
  width: 560px;
  aspect-ratio: 1;
  right: -100px;
  top: -280px;
  border: 110px solid rgba(35, 92, 255, 0.26);
  border-radius: 50%;
  content: "";
}
body.insights-site .insights-listing-hero .wrap { position: relative; z-index: 1; }

body.insights-site .stories-filter {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--ink);
}

body.insights-site .stories-filter label > span { display: block; margin-bottom: 8px; }
body.insights-site .stories-filter input,
body.insights-site .stories-filter select {
  width: 100%;
  height: 52px;
  padding-inline: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}
body.insights-site .stories-filter .btn { height: 52px; }
body.insights-site .stories-result { margin: 28px 0 18px; color: var(--muted); }

body.insights-site .stories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 78px) clamp(22px, 3vw, 38px);
}
body.insights-site .story-card[hidden] { display: none; }
body.insights-site .card-image { display: block; overflow: hidden; background: var(--ivory); }
body.insights-site .card-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.45s; }
body.insights-site .story-card:hover .card-image img { transform: scale(1.025); }
body.insights-site .card-body { padding-top: 24px; }
body.insights-site .card-body .eyebrow { margin-bottom: 12px; }
body.insights-site .card-body h2 { margin: 0 0 18px; font-size: clamp(30px, 3.5vw, 48px); line-height: 1.02; }
body.insights-site .card-body > p { max-width: 620px; color: var(--muted); font-size: 14px; }

body.insights-site .chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0; }
body.insights-site .chips span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  font: 500 9px/1.3 "IBM Plex Mono", Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.insights-site .stories-empty { padding: 80px 0; text-align: center; }

body.insights-site .story-detail-hero {
  min-height: min(760px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
}
body.insights-site .story-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
body.insights-site .story-detail-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,31,.98), rgba(7,17,31,.82) 54%, rgba(7,17,31,.18)); }
body.insights-site .story-detail-hero__content { position: relative; z-index: 1; }
body.insights-site .story-detail-back { display: inline-block; margin-bottom: 38px; color: var(--muted-dark); font-size: 12px; font-weight: 700; }
body.insights-site .story-detail-layout { display: grid; grid-template-columns: 270px minmax(0, 780px); gap: clamp(60px, 10vw, 150px); align-items: start; }
body.insights-site .story-detail-aside { position: sticky; top: calc(var(--header-height) + 24px); padding-top: 22px; border-top: 2px solid var(--ink); }
body.insights-site .story-detail-aside dl { margin: 24px 0 30px; }
body.insights-site .story-detail-aside dt { margin-top: 18px; color: var(--muted); font: 500 9px/1.4 "IBM Plex Mono", Consolas, monospace; letter-spacing: .1em; text-transform: uppercase; }
body.insights-site .story-detail-aside dd { margin: 5px 0; line-height: 1.6; }
body.insights-site .story-detail-aside .btn { width: 100%; padding-inline: 12px; }
body.insights-site .story-detail-copy > section { padding-bottom: 68px; margin-bottom: 68px; border-bottom: 1px solid var(--line); }
body.insights-site .story-detail-copy > section:last-child { border-bottom: 0; }
body.insights-site .story-detail-copy h2 { margin: 0 0 28px; font-size: clamp(38px, 4.4vw, 62px); line-height: 1.02; }
body.insights-site .story-detail-copy p,
body.insights-site .story-detail-copy li { font-size: 17px; line-height: 1.75; }
body.insights-site .story-detail-copy ul { padding: 0; margin: 28px 0 0; list-style: none; }
body.insights-site .story-detail-copy li { position: relative; padding: 18px 0 18px 36px; border-top: 1px solid var(--line); }
body.insights-site .story-detail-copy li::before { position: absolute; left: 0; color: var(--blue); content: "→"; }
body.insights-site .story-detail-outcome { padding: clamp(34px, 5vw, 54px) !important; border: 0 !important; }
body.insights-site .story-detail-outcome__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
body.insights-site .story-detail-outcome__grid > div { padding-top: 18px; border-top: 1px solid var(--line-dark); }
body.insights-site .story-detail-outcome__grid span { color: var(--yellow); }
body.insights-site .story-detail-outcome__grid p { color: #fff; font-size: 15px; }
body.insights-site .story-related-grid span { color: var(--blue); }

@media (max-width: 1080px) {
  body.insights-site .insights-format-grid { grid-template-columns: repeat(2, 1fr); }
  body.insights-site .insights-format-card { min-height: 240px; border-bottom: 1px solid var(--line); }
  body.insights-site .insights-hero__grid { grid-template-columns: minmax(0, 1fr) 300px; }
  body.insights-site .story-detail-layout { grid-template-columns: 230px minmax(0, 1fr); gap: 60px; }
}

@media (max-width: 760px) {
  body.insights-site .insights-hero { min-height: auto; }
  body.insights-site .insights-hero::after,
  body.insights-site .insights-listing-hero::after { display: none; }
  body.insights-site .insights-hero__grid { grid-template-columns: 1fr; }
  body.insights-site .insights-signal { display: none; }
  body.insights-site .insights-actions { flex-direction: column; align-items: stretch; }
  body.insights-site .insights-format-grid,
  body.insights-site .insights-featured-grid,
  body.insights-site .story-related-grid,
  body.insights-site .stories-grid { grid-template-columns: 1fr; }
  body.insights-site .insights-format-card { border-right: 0; }
  body.insights-site .stories-filter { grid-template-columns: 1fr 1fr; }
  body.insights-site .stories-search { grid-column: 1 / -1; }
  body.insights-site .story-detail-hero { min-height: 640px; }
  body.insights-site .story-detail-hero__shade { background: linear-gradient(90deg, rgba(7,17,31,.97), rgba(7,17,31,.67)); }
  body.insights-site .story-detail-layout { grid-template-columns: 1fr; }
  body.insights-site .story-detail-aside { position: static; }
  body.insights-site .story-detail-outcome__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  body.insights-site .insights-hero h1,
  body.insights-site .insights-listing-hero h1,
  body.insights-site .story-detail-hero h1 { font-size: 44px; }
  body.insights-site .stories-filter { grid-template-columns: 1fr; }
  body.insights-site .stories-search { grid-column: auto; }
  body.insights-site .story-detail-outcome { margin-inline: -18px; }
}
