/* ── expertise.css — Corps des pages d'expertise ──────────────────────────
   Charge après projets/projet.css. Ne redéclare PAS : fonts, reset,
   variables :root, header, hamburger, menu-overlay, footer, page-transition.
   Couleurs du design system : #1a1a1a · #5F5E5A · #8a8a87 · #fff
   + #f7f6f4 (teinte neutre chaude, RVB 247/246/244 — fond de blocs encadrés)
   + #3a3a3a (gris intermédiaire pour bordures — entre #1a1a1a et #8a8a87)
─────────────────────────────────────────────────────────────────────────── */

/* ── Container principal ──────────────────────────────────────────────── */
.expertise {
  padding-top: calc(56px + env(safe-area-inset-top));
}
.expertise,
.expertise * {
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}

/* ── Éléments insécables ──────────────────────────────────────────────── */
.nowrap {
  white-space: nowrap;
}

/* ── Fil d'Ariane ─────────────────────────────────────────────────────── */
.expertise-breadcrumb {
  padding: 20px 24px 0;
}
@media (min-width: 768px) {
  .expertise-breadcrumb { padding: 24px 32px 0; }
}
@media (min-width: 1280px) {
  .expertise-breadcrumb { padding: 24px var(--site-margin) 0; }
}
.expertise-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  padding: 0;
  margin: 0;
}
.expertise-breadcrumb li {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #8a8a87;
}
.expertise-breadcrumb li + li::before {
  content: '›';
  margin-right: 4px;
  color: #8a8a87;
}
.expertise-breadcrumb a {
  color: #8a8a87;
  text-decoration: none;
  transition: color 0.3s ease;
}
.expertise-breadcrumb a:hover { color: #1a1a1a; }
.expertise-breadcrumb li[aria-current="page"] { color: #1a1a1a; }

/* ── Mise en page deux colonnes ───────────────────────────────────────── */
.expertise-layout {
  padding: 0 24px;
}
@media (min-width: 768px) {
  .expertise-layout { padding: 0 32px; }
}
@media (min-width: 1280px) {
  .expertise-layout { padding: 0 var(--site-margin); }
}
@media (min-width: 1024px) {
  .expertise-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    column-gap: 64px;
    align-items: start;
  }
}

/* Annuler le padding horizontal des enfants directs dans le layout */
.expertise-layout .expertise-header,
.expertise-layout .expertise-body {
  padding-left: 0;
  padding-right: 0;
}

/* ── Sidebar (desktop uniquement) ─────────────────────────────────────── */
.expertise-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .expertise-sidebar {
    display: block;
    position: sticky;
    top: calc(56px + 28px + env(safe-area-inset-top, 0px));
    padding-top: 40px;
  }
}

/* ── TOC sidebar ──────────────────────────────────────────────────────── */
.expertise-toc-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a8a87;
  margin-bottom: 16px;
}
.expertise-toc-list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
  margin: 0;
}
.expertise-toc-item {
  counter-increment: toc-counter;
  border-top: 1px solid rgba(26, 26, 26, 0.07);
}
.expertise-toc-item:last-child {
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
}
.expertise-toc-item a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 300;
  color: #8a8a87;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.25s ease;
}
.expertise-toc-item a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(138, 138, 135, 0.5);
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.expertise-toc-item a:hover,
.expertise-toc-item.is-active a {
  color: #1a1a1a;
}
.expertise-toc-item.is-active a::before {
  color: #1a1a1a;
}
.expertise-toc-item.is-active {
  border-top-color: rgba(26, 26, 26, 0.15);
}

/* ── CTA sidebar ──────────────────────────────────────────────────────── */
.expertise-sidebar-cta {
  margin-top: 32px;
  padding: 20px;
  background: #f7f6f4;
}
.expertise-sidebar-cta p {
  font-size: 12px;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.6;
  margin-bottom: 16px;
}
.expertise-sidebar-cta .btn--primary {
  font-size: 10px;
  padding: 11px 18px;
  letter-spacing: 1.5px;
}

/* ── TOC mobile (details/summary) ─────────────────────────────────────── */
.expertise-toc-mobile {
  margin: 0 0 8px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
@media (min-width: 1024px) {
  .expertise-toc-mobile { display: none; }
}
.expertise-toc-mobile > summary {
  padding: 14px 28px 14px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8a87;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.expertise-toc-mobile > summary::-webkit-details-marker { display: none; }
.expertise-toc-mobile > summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 300;
  color: #8a8a87;
  line-height: 1;
}
.expertise-toc-mobile[open] > summary::after { content: '–'; }
.expertise-toc-mobile .expertise-toc-list {
  padding-bottom: 12px;
}
.expertise-toc-mobile .expertise-toc-item a {
  padding: 8px 0;
}

/* ── Colonne contenu principal ────────────────────────────────────────── */
.expertise-main-col {
  min-width: 0;
}

/* ── En-tête de l'article ─────────────────────────────────────────────── */
.expertise-header {
  padding: 32px 24px 28px;
}
@media (min-width: 768px) {
  .expertise-header { padding: 40px 32px 32px; }
}
@media (min-width: 1280px) {
  .expertise-header { padding: 40px var(--site-margin) 32px; }
}
.expertise-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: #8a8a87;
  margin-bottom: 14px;
}
.expertise-title {
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
  max-width: 760px;
  text-wrap: balance;
}
.expertise-meta {
  font-size: 12px;
  font-weight: 400;
  color: #8a8a87;
  letter-spacing: 0.2px;
}
.expertise-meta a {
  color: #8a8a87;
  border-bottom: 1px solid rgba(138, 138, 135, 0.4);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.expertise-meta a:hover {
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}

/* ── Corps de l'article ──────────────────────────────────────────────── */
.expertise-body {
  padding: 0 24px;
}
@media (min-width: 768px) {
  .expertise-body { padding: 0 32px; }
}
@media (min-width: 1280px) {
  .expertise-body { padding: 0 var(--site-margin); }
}

/* ── Chapô ────────────────────────────────────────────────────────────── */
.expertise-lead {
  margin: 28px 0 0;
  padding: 24px 28px;
  background: #f7f6f4;
  border-left: 3px solid #1a1a1a;
  max-width: 760px;
}
@media (max-width: 767px) {
  .expertise-lead { padding: 18px 20px; }
}
.expertise-lead p {
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0;
}

/* ── Sections thématiques ────────────────────────────────────────────── */
.expertise-section {
  margin-top: clamp(44px, 5.5vw, 68px);
  max-width: 760px;
}
.expertise-section h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #1a1a1a;
  padding-bottom: 14px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.expertise-section h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #1a1a1a;
  margin: 32px 0 16px;
  line-height: 1.3;
}
.expertise-section p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 300;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 1.4em;
}
.expertise-section p:last-child { margin-bottom: 0; }
.expertise-section strong { font-weight: 500; }

/* ── Emphase dans le corps de l'article ──────────────────────────────── */
.expertise-body strong,
.expertise-body b {
  font-weight: 500;
  color: #1a1a1a;
}

/* ── Numérotation des étapes ─────────────────────────────────────────── */
.expertise-step-num {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a8a87;
  margin-bottom: 6px;
}

/* ── Figures images dans le corps ────────────────────────────────────── */
.expertise-figure {
  margin: clamp(40px, 5vw, 64px) 0;
  max-width: 760px;
}
.expertise-figure--hero {
  margin-top: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.expertise-figure img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.expertise-figure figcaption {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: #5F5E5A;
  line-height: 1.5;
}
.expertise-figure-placeholder {
  aspect-ratio: 3 / 2;
  width: 100%;
  background: #f7f6f4;
  border: 1px dashed rgba(138, 138, 135, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 8px;
}
.expertise-figure-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a8a87;
}
.expertise-figure-desc {
  font-size: 14px;
  font-weight: 300;
  color: #3a3a3a;
  max-width: 400px;
}
.expertise-figure-dims {
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: #8a8a87;
}
.expertise-section a {
  color: inherit;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  transition: border-color 0.3s ease;
}
.expertise-section a:hover { border-bottom-color: #1a1a1a; }

/* ── Tableau chiffré ─────────────────────────────────────────────────── */
.expertise-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
}
.expertise-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.expertise-table th {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8a87;
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  background: #fff;
  white-space: nowrap;
}
.expertise-table td {
  font-size: 13px;
  font-weight: 300;
  color: #1a1a1a;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  line-height: 1.5;
  vertical-align: top;
}
.expertise-table tr:nth-child(even) td { background: #f7f6f4; }
.expertise-table tr:last-child td { border-bottom: none; }
.expertise-table td em {
  font-style: italic;
  color: #8a8a87;
  font-size: 12px;
}
.expertise-table a {
  color: #1a1a1a;
  border-bottom: 1px solid rgba(26, 26, 26, 0.25);
  transition: border-color 0.3s ease;
}
.expertise-table a:hover { border-bottom-color: #1a1a1a; }

/* ── Callouts vigilance ──────────────────────────────────────────────── */
.expertise-callout {
  padding: 15px 18px;
  border-left: 3px solid #3a3a3a;
  background: #f7f6f4;
  margin: 12px 0;
}
.expertise-callout p {
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 300;
  line-height: 1.75;
  color: #1a1a1a;
  margin: 0;
}
.expertise-callout strong { font-weight: 500; }

/* ── Liste "À retenir" ───────────────────────────────────────────────── */
.expertise-summary {
  list-style: none;
  padding: 0;
  margin: 0;
}
.expertise-summary li {
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 300;
  line-height: 1.8;
  color: #1a1a1a;
  padding: 13px 0 13px 22px;
  position: relative;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.expertise-summary li:last-child { border-bottom: none; }
.expertise-summary li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8a8a87;
  font-weight: 300;
}

/* ── FAQ accordéon natif ─────────────────────────────────────────────── */
.expertise-faq {
  margin-top: clamp(44px, 5.5vw, 68px);
  max-width: 760px;
}
.expertise-faq h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #1a1a1a;
  padding-bottom: 14px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.expertise-faq details {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.expertise-faq summary {
  padding: 17px 28px 17px 0;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 400;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: opacity 0.3s ease;
  line-height: 1.5;
}
.expertise-faq summary::-webkit-details-marker { display: none; }
.expertise-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 300;
  color: #8a8a87;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.expertise-faq details[open] summary::after { content: '–'; }
.expertise-faq summary:hover { opacity: 0.7; }
.expertise-faq details p {
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 300;
  line-height: 1.8;
  color: #5F5E5A;
  padding: 0 0 18px 0;
  margin: 0;
}
.expertise-faq details strong { font-weight: 500; }

/* ── CTA final ───────────────────────────────────────────────────────── */
.expertise-cta {
  margin-top: clamp(56px, 7vw, 88px);
  margin-bottom: 80px;
  padding: 40px 36px;
  background: #f7f6f4;
  max-width: 760px;
}
@media (max-width: 767px) {
  .expertise-cta { padding: 28px 22px; margin-bottom: 48px; }
}
.expertise-cta h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.2;
}
.expertise-cta p {
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 300;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 28px;
}
.expertise-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 26px;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn--primary:hover { opacity: 0.75; }
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 26px;
  background: transparent;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(26, 26, 26, 0.4);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn--secondary:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* ── Section "Découvrez également" ───────────────────────────────────── */
.expertise-related {
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(40px, 5vw, 60px) 24px 80px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
@media (min-width: 768px) {
  .expertise-related { padding: clamp(40px, 5vw, 60px) 32px 80px; }
}
@media (min-width: 1280px) {
  .expertise-related { padding: clamp(40px, 5vw, 60px) var(--site-margin) 80px; }
}
@media (max-width: 767px) {
  .expertise-related { padding-bottom: 48px; }
}

.expertise-related-heading {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #1a1a1a;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.expertise-related-group + .expertise-related-group {
  margin-top: clamp(48px, 5vw, 72px);
}

.expertise-related-subheading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a8a87;
  margin-bottom: 20px;
}

.expertise-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 900px) {
  .expertise-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .expertise-related-grid { grid-template-columns: 1fr; }
}

/* ── Cartes expertises (coming soon) ─────────────────────────────────── */
.expertise-card {
  background: #fff;
}
.expertise-card--coming-soon {
  overflow: hidden;
}
.expertise-card-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8a87;
}
.expertise-card-title {
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}
.expertise-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: #8a8a87;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
/* ── Placeholder thumb pour cartes sans image ────────────────────────── */
.expertise-card-thumb--placeholder {
  aspect-ratio: 3 / 2;
  width: 100%;
  background: #f7f6f4;
  border-bottom: 1px dashed rgba(138, 138, 135, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertise-card-thumb-label {
  font-size: 11px;
  font-weight: 300;
  color: #8a8a87;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── Cartes projets avec image ───────────────────────────────────────── */
.expertise-card--project {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.expertise-card--project:hover { opacity: 0.85; }
.expertise-card-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f7f6f4;
}
.expertise-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.expertise-card--project:hover .expertise-card-thumb img {
  transform: scale(1.04);
}
.expertise-card-body {
  padding: 16px 0 0;
}
.expertise-card--project .expertise-card-eyebrow {
  display: block;
  margin-bottom: 6px;
}
.expertise-card--project .expertise-card-title {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  color: #1a1a1a;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGES GÉOGRAPHIQUES /lieux/ — extensions du template
   ═══════════════════════════════════════════════════════════════════════════ */

/* Notes de bas de page (convention C : ancres + retour ↩︎) */
.lieu-footnotes {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.lieu-footnotes-heading {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.lieu-footnotes-list {
  list-style: decimal;
  padding-left: 24px;
  font-size: 12px;
  font-weight: 300;
  color: #8a8a87;
  line-height: 1.7;
}

.lieu-footnotes-list li {
  margin-bottom: 12px;
}

.lieu-footnote-back {
  display: inline-block;
  margin-left: 6px;
  text-decoration: none;
  color: #8a8a87;
  font-size: 14px;
  transition: color 0.2s;
}

.lieu-footnote-back:hover {
  color: #1a1a1a;
}

/* Exposants des références dans le corps */
.expertise-body sup a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  padding: 0 1px;
}

.expertise-body sup a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Cible scroll douce vers les notes (et retour) */
.lieu-footnotes-list li:target,
.expertise-body sup:target {
  background: rgba(247, 246, 244, 0.6);
  scroll-margin-top: 100px;
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGE HUB /ressources/ — namespace dédié resource-*
   ═══════════════════════════════════════════════════════════════════════ */

/* Container principal */
.resource-hub {
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .resource-hub {
    padding: 0 var(--site-margin, clamp(24px, 4vw, 80px));
  }
}

/* Breadcrumb */
.resource-breadcrumb {
  margin-top: clamp(80px, 10vh, 120px);
  font-size: 11px;
  font-weight: 300;
  color: #8a8a87;
  letter-spacing: 0.5px;
}

.resource-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.resource-breadcrumb li:not(:last-child)::after {
  content: " › ";
  margin: 0 8px;
  color: #8a8a87;
}

.resource-breadcrumb a {
  color: #8a8a87;
  text-decoration: none;
  transition: color 0.2s;
}

.resource-breadcrumb a:hover {
  color: #1a1a1a;
}

.resource-breadcrumb [aria-current="page"] {
  color: #1a1a1a;
}

/* En-tête de page */
.resource-header {
  margin: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
}

.resource-title-page {
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0;
}

/* Grille hub — override optionnel sur .expertise-related-grid */
.resource-hub-grid {
  margin-bottom: clamp(64px, 8vw, 96px);
}

/* CTA final sobre */
.resource-cta {
  margin: clamp(64px, 8vw, 96px) 0 clamp(64px, 8vw, 96px);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 4vw, 64px);
  background: #f7f6f4;
  text-align: center;
}

.resource-cta h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  margin: 0 0 32px;
}

.resource-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Utilitaire accessibilité ──────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── PLACEHOLDERS — Masqués en production tant que les illustrations
   et articles ne sont pas livrés. Retirer display:none pour les rendre
   visibles quand le contenu est prêt. ─────────────────────────────── */
.expertise-figure-placeholder,
.expertise-card--coming-soon,
.expertise-card-thumb--placeholder {
  display: none !important;
}
/* Si une <figure> entière contient uniquement un placeholder,
   masquer la figure aussi pour éviter un espace vide */
.expertise-figure:has(.expertise-figure-placeholder) {
  display: none;
}
