/* enjeux.css – styles propres à la page Comprendre les enjeux */

/* Hero image droite */
.page-hero { overflow: hidden; }
.obs-hero-img { position: absolute; top: 0; right: 0; width: 38%; height: 100%; overflow: hidden; z-index: 0; }
.obs-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__inner .page-hero__title,
.page-hero__inner .page-hero__sub { max-width: 58%; }
@media (max-width: 768px) {
  .obs-hero-img { display: none; }
  .page-hero__inner .page-hero__title,
  .page-hero__inner .page-hero__sub { max-width: 100%; }
}

/* Layout article (sommaire sticky + contenu) */
html, body { overflow-x: clip; }
.enjeux-body-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: flex-start;
}

/* Sommaire sticky */
.article-toc {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: none;
}
.article-toc::-webkit-scrollbar { display: none; }
.article-toc__title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2a347d;
  border-left: 3px solid #fbd020;
  padding-left: 10px;
  margin-bottom: 16px;
}
.article-toc__list { list-style: none; margin: 0; padding: 0; }
.article-toc__list li { border-left: 2px solid #e4e8f0; padding: 0; transition: border-color .15s; }
.article-toc__list li.is-active { border-left-color: #2a347d; }
.article-toc__list a {
  display: block;
  padding: 7px 0 7px 12px;
  font-size: 12.5px;
  color: #4a5a78;
  text-decoration: none;
  line-height: 1.4;
  transition: color .15s;
}
.article-toc__list li.is-active a { color: #2a347d; font-weight: 700; }
.article-toc__list a:hover { color: #2a347d; }
.article-toc__sep { border: none; border-top: 1px solid #e4e8f0; margin: 20px 0; }

@media (max-width: 860px) {
  .enjeux-body-wrap { grid-template-columns: 1fr; padding: 32px 20px 60px; gap: 32px; }
  .article-toc { position: static; max-height: none; }
}

/* Sections */
.enjeu-anchor { scroll-margin-top: 120px; }
.enjeu-section { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(42,52,125,.12); }
.enjeu-section:last-of-type { border-bottom: none; }

.enjeu-section__header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #7fddf0;
}
.enjeu-section__icon {
  width: 44px; height: 44px; background: #2a347d;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; flex-shrink: 0;
}
.enjeu-section__tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: rgba(42,52,125,.5); margin-bottom: 4px;
}
.enjeu-section__title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 22px; font-weight: 800; color: #2a347d; margin: 0;
}
.enjeu-section__body p { font-size: 14.5px; line-height: 1.75; color: #1d1d1b; margin-bottom: 14px; }
.enjeu-section__body ul { margin: 0 0 20px 0; padding-left: 20px; }
.enjeu-section__body ul li { font-size: 14px; line-height: 1.6; color: #1d1d1b; margin-bottom: 6px; }
.enjeu-section__body ul li::marker { color: #2a347d; }

/* Chips indicateurs */
.enjeu-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.enjeu-chip {
  font-size: 11px; font-weight: 700; color: #2a347d;
  background: rgba(42,52,125,.08); padding: 4px 12px;
  display: inline-flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: .3px;
}
.enjeu-chip--link {
  background: #7fddf0; text-decoration: none; transition: background .15s;
}
.enjeu-chip--link:hover { background: #2a347d; color: #fff; }

/* CTA */
.enjeu-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; padding-top: 8px; }
