.insights-site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(246, 163, 19, .1), transparent 31%),
    linear-gradient(180deg, #182131 0, #101927 560px, #0b1421 100%);
}

.insights-site .container {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.insights-language[hidden],
.article-language[hidden],
.insight-card[hidden] {
  display: none !important;
}

.insights-main {
  min-height: calc(100vh - 80px);
}

.insights-hero {
  padding-top: clamp(70px, 9vw, 116px);
  padding-bottom: clamp(54px, 7vw, 84px);
}

.insights-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--honey);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.insights-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: var(--fs-h1);
  letter-spacing: 0;
}

.insights-hero > p {
  max-width: 760px;
  margin: 0;
  color: #c2cbda;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.featured-insights {
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(320px, .82fr);
  gap: 22px;
  padding-bottom: clamp(80px, 10vw, 126px);
}

.featured-insights-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.insight-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(27, 38, 56, .82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 163, 19, .42);
  background: rgba(32, 44, 64, .94);
}

.insight-card--planned:hover {
  transform: none;
  border-color: var(--card-border);
  background: rgba(27, 38, 56, .82);
}

.insight-card--planned .insight-card-link {
  cursor: default;
}

.insight-card--planned .insight-card-cover img {
  opacity: .78;
}

.insight-card--planned:hover .insight-card-cover img {
  transform: none;
}

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

.insight-card-cover {
  min-height: 194px;
  display: grid;
  place-items: center;
  padding: 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
  background:
    radial-gradient(circle at 50% 35%, rgba(246, 163, 19, .22), transparent 43%),
    linear-gradient(145deg, #202c40, #111a29);
}

.insight-card-cover img {
  width: min(118px, 46%);
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .35));
  transition: transform .32s ease;
}

.insight-card:hover .insight-card-cover img {
  transform: scale(1.05);
}

.insight-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #8f9bae;
  font-size: 12px;
  font-weight: var(--fw-medium);
}

.insight-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid rgba(246, 163, 19, .34);
  border-radius: 999px;
  color: var(--honey-light);
  background: rgba(246, 163, 19, .08);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.insight-card h2 {
  margin-bottom: 12px;
  font-size: var(--fs-card-title);
  line-height: var(--lh-heading);
  overflow-wrap: anywhere;
}

.insight-card p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.65;
}

.insight-card-more {
  margin-top: auto;
  color: var(--honey-light);
  font-size: 13px;
  font-weight: var(--fw-semibold);
}

.insight-card--large .insight-card-cover {
  min-height: 300px;
}

.insight-card--large .insight-card-cover img {
  width: min(190px, 42%);
  height: 190px;
}

.insight-card--large .insight-card-body {
  padding: clamp(26px, 4vw, 40px);
}

.insight-card--large h2 {
  max-width: 720px;
  font-size: clamp(22px, 2.2vw, 28px);
}

.insight-card--large p {
  max-width: 720px;
  font-size: var(--fs-body);
}

.insight-card--compact .insight-card-link {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
}

.insight-card--compact .insight-card-cover {
  min-height: 0;
  padding: 24px;
  border-right: 1px solid var(--card-border);
  border-bottom: 0;
}

.insight-card--compact .insight-card-cover img {
  width: 72px;
  height: 72px;
}

.insight-card--compact .insight-card-body {
  padding: 22px;
}

.insight-card--compact h2 {
  font-size: var(--fs-card-title);
}

.insight-card--compact p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.all-insights {
  padding-bottom: clamp(90px, 12vw, 144px);
}

.all-insights-heading {
  margin-bottom: 34px;
}

.all-insights-heading h2 {
  margin-bottom: 10px;
  font-size: var(--fs-h2);
}

.all-insights-heading p {
  margin: 0;
}

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

.insights-grid .insight-card h2 {
  font-size: var(--fs-card-title);
}

.insights-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.insights-more {
  min-width: 180px;
}

.article-main {
  min-height: calc(100vh - 80px);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(58px, 8vw, 94px);
}

.article-hero > *,
.article-hero-copy {
  min-width: 0;
}

.breadcrumbs {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: #8f9bae;
  font-size: 12px;
  line-height: 1.5;
}

.breadcrumbs a:hover {
  color: var(--honey-light);
}

.breadcrumbs [aria-current="page"] {
  min-width: 0;
  overflow: hidden;
  color: #b9c3d2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-hero h1 {
  width: 100%;
  max-width: 840px;
  margin-bottom: 22px;
  font-size: var(--fs-h1);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.article-lead {
  max-width: 780px;
  margin: 0;
  color: #c7d0dd;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.article-cover {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: clamp(48px, 7vw, 82px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 42%, rgba(246, 163, 19, .25), transparent 42%),
    linear-gradient(145deg, #202c40, #111a29);
  box-shadow: var(--shadow);
}

.article-cover img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .4));
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: clamp(46px, 7vw, 92px);
  align-items: start;
  padding-bottom: clamp(100px, 12vw, 150px);
}

.article-toc {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: rgba(23, 34, 52, .72);
}

.article-toc > p {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: var(--fw-semibold);
}

.article-toc ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 18px;
  color: #8f9bae;
  font-size: 12px;
  line-height: 1.55;
}

.article-toc a:hover {
  color: var(--honey-light);
}

.article-content {
  min-width: 0;
  color: #c7d0dd;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3 {
  scroll-margin-top: 112px;
}

.article-content h2 {
  margin: 58px 0 18px;
  color: var(--text);
  font-size: clamp(23px, 2.6vw, 30px);
  line-height: var(--lh-heading);
}

.article-content h3 {
  margin: 34px 0 12px;
  color: #eef2f8;
  font-size: clamp(18px, 2vw, 22px);
}

.article-content p,
.article-content li {
  color: #c3ccda;
  font-size: var(--fs-body);
  line-height: 1.75;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 24px;
}

.article-content strong {
  color: var(--text);
}

.article-content a:not(.btn) {
  color: var(--honey-light);
  text-decoration: underline;
  text-decoration-color: rgba(246, 163, 19, .45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.article-content a:not(.btn):hover {
  color: #ffd074;
  text-decoration-color: currentColor;
}

.article-content a:not(.btn):focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
  border-radius: 2px;
}

.article-intro {
  padding-left: 20px;
  border-left: 3px solid var(--honey);
  color: #e4eaf2 !important;
  font-size: var(--fs-body-lg) !important;
  line-height: 1.65 !important;
}

.article-cta {
  margin-top: 64px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(246, 163, 19, .32);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 15%, rgba(246, 163, 19, .2), transparent 38%),
    rgba(27, 38, 56, .88);
}

.article-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.5vw, 32px);
}

.article-cta p {
  max-width: 590px;
  margin-bottom: 24px;
}

.article-cta .btn {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 980px) {
  .featured-insights {
    grid-template-columns: 1fr;
  }

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

  .insight-card--compact .insight-card-link {
    display: flex;
  }

  .insight-card--compact .insight-card-cover {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--card-border);
  }

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

  .article-hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  }

  .article-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .insights-site .container {
    width: min(100% - 36px, var(--max));
  }

  .insights-hero {
    padding-top: 58px;
    padding-bottom: 46px;
  }

  .insights-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .featured-insights-side,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card--large .insight-card-cover {
    min-height: 220px;
  }

  .insight-card--large .insight-card-cover img {
    width: 130px;
    height: 130px;
  }

  .article-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 38px;
  }

  .article-hero h1 {
    font-size: 32px;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .breadcrumbs {
    grid-column: auto;
  }

  .article-cover {
    width: min(100%, 420px);
    aspect-ratio: 16 / 10;
    justify-self: center;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-toc {
    position: static;
  }

  .article-content p,
  .article-content li {
    font-size: var(--fs-body);
    line-height: 1.75;
  }

  .article-cta .btn {
    width: 100%;
  }
}
