/* Contenu « éditorial » (articles, guides, landings longues) — scope .fcg-ed
   Typographie alignée sur le site : Sora pour les titres, la pile système
   pour le texte. Fraunces + DM Sans arrivaient par un @import Google Fonts
   bloquant et donnaient au coeur éditorial une identité étrangère au reste. */

.fcg-ed-page {
  --ed-blue-900: #0c2340;
  --ed-blue-700: #1a4f8b;
  --ed-blue-500: #2d6fc4;
  --ed-blue-100: #e8f0fa;
  --ed-blue-50: #f4f8fd;
  /* Fond du bouton d'appel à l'action, texte blanc : #e67e22 ne donnait que
     2,85:1. C'est le bouton de conversion — il doit être le plus lisible. */
  --ed-orange-500: #b1611a;
  /* Pastille de catégorie sur fond blanc : #f39c12 tombait à 2,19:1, la pire
     valeur du jeu de couleurs. */
  --ed-orange-400: #a3690c;
  /* Titres d'encadré vert, posés sur #e8f8f0 : 2,62:1 auparavant. */
  --ed-green-500: #1c7f46;
  --ed-green-100: #e8f8f0;
  /* Titres d'encadré rouge, posés sur #fde8e8 : 3,25:1 auparavant. */
  --ed-red-500: #bd3e31;
  --ed-red-100: #fde8e8;
  --ed-gray-900: #1a1a2e;
  --ed-gray-700: #4a4a5a;
  /* Fil d'Ariane et légendes, sur le gris de page #f0f0f5 : 3,71:1 auparavant. */
  --ed-gray-500: #6b6b79;
  --ed-gray-100: #f0f0f5;
  --ed-white: #fff;
  --ed-font-display: var(--fcg-font-display, "Sora", system-ui, sans-serif);
  --ed-font-body: var(--fcg-font-body, system-ui, sans-serif);
  --ed-shadow-sm: 0 1px 3px rgba(12, 35, 64, 0.08);
  --ed-shadow-md: 0 4px 16px rgba(12, 35, 64, 0.1);
  --ed-shadow-lg: 0 8px 32px rgba(12, 35, 64, 0.12);
  --ed-radius: 12px;
  font-family: var(--ed-font-body);
  color: var(--ed-gray-900);
  line-height: 1.7;
  background: var(--ed-gray-100);
  padding-bottom: 2rem;
}

.fcg-ed {
  /* Même largeur que .fcg-container : c'était le même nombre écrit deux fois,
     et les deux se sont désynchronisés au premier changement. */
  max-width: var(--fcg-max, 1240px);
  margin: 0 auto;
  padding: 0 1rem 2rem;
  box-sizing: border-box;
}

.fcg-ed * {
  box-sizing: border-box;
}

.fcg-ed-breadcrumbs {
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: var(--ed-gray-500);
}
.fcg-ed-breadcrumbs a {
  color: var(--ed-gray-500);
  text-decoration: none;
}
.fcg-ed-breadcrumbs a:hover {
  color: var(--ed-blue-500);
}
.fcg-ed-breadcrumbs .sep {
  margin: 0 0.4rem;
}

/* Article card */
.fcg-ed-article {
  max-width: 820px;
  margin: 0 auto;
  background: var(--ed-white);
  border-radius: var(--ed-radius);
  box-shadow: var(--ed-shadow-md);
  overflow: hidden;
}
.fcg-ed-article-hero {
  background: linear-gradient(135deg, var(--ed-blue-900), var(--ed-blue-700));
  padding: 2.5rem 2rem 2rem;
  position: relative;
}
.fcg-ed-article-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 36px;
  background: var(--ed-white);
  border-radius: var(--ed-radius) var(--ed-radius) 0 0;
}
.fcg-ed-cat {
  display: inline-block;
  background: rgba(230, 126, 34, 0.2);
  color: var(--ed-orange-400);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.fcg-ed-article-hero h1 {
  font-family: var(--ed-font-display);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--ed-white);
  line-height: 1.25;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.fcg-ed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
}
.fcg-ed-body {
  padding: 2rem 2rem 2.5rem;
}
.fcg-ed-body h2 {
  font-family: var(--ed-font-display);
  font-size: 1.375rem;
  color: var(--ed-blue-900);
  margin: 2rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ed-gray-100);
}
.fcg-ed-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.fcg-ed-body h3 {
  font-size: 1.0625rem;
  color: var(--ed-blue-700);
  margin: 1.25rem 0 0.5rem;
}
.fcg-ed-body p {
  color: var(--ed-gray-700);
  margin-bottom: 1rem;
}
.fcg-ed-body ul,
.fcg-ed-body ol {
  margin: 0.5rem 0 1rem 1.25rem;
  color: var(--ed-gray-700);
}
.fcg-ed-body a {
  color: var(--ed-blue-500);
}

.fcg-ed-key {
  background: var(--ed-red-100);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: var(--ed-radius);
  padding: 1.25rem;
  margin: 1.25rem 0;
}
.fcg-ed-key-title {
  font-weight: 700;
  color: var(--ed-red-500);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.fcg-ed-tip {
  background: var(--ed-green-100);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: var(--ed-radius);
  padding: 1.25rem;
  margin: 1.25rem 0;
}
.fcg-ed-tip-title {
  font-weight: 700;
  color: var(--ed-green-500);
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.fcg-ed-callout {
  background: var(--ed-blue-50);
  border-left: 4px solid var(--ed-blue-500);
  border-radius: 0 var(--ed-radius) var(--ed-radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.fcg-ed-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  border-radius: var(--ed-radius);
  overflow: hidden;
  box-shadow: var(--ed-shadow-sm);
  font-size: 0.9375rem;
}
.fcg-ed-table thead {
  background: var(--ed-blue-900);
}
.fcg-ed-table th {
  color: var(--ed-white);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.65rem 0.85rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fcg-ed-table td {
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--ed-gray-100);
  color: var(--ed-gray-700);
}
.fcg-ed-table tbody tr:hover {
  background: var(--ed-blue-50);
}

.fcg-ed-cta {
  background: linear-gradient(135deg, var(--ed-blue-900), var(--ed-blue-700));
  border-radius: var(--ed-radius);
  padding: 1.75rem;
  text-align: center;
  margin-top: 1.75rem;
}
/* h2 inclus : les pages véhicule titrent ce panneau en h2, et sans cette
   règle le titre héritait de l'encre sombre — soit la couleur de départ du
   dégradé du panneau, donc un texte invisible (1,00:1). */
.fcg-ed-cta h2,
.fcg-ed-cta h3 {
  font-family: var(--ed-font-display);
  color: var(--ed-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.fcg-ed-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.fcg-ed-cta a,
.fcg-ed-cta .fcg-ed-btn {
  display: inline-block;
  background: var(--ed-orange-500);
  color: var(--ed-white) !important;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

/* Guide: TOC + grid */
.fcg-ed-guide-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.fcg-ed-toc {
  background: var(--ed-blue-50);
  border: 1px solid var(--ed-blue-100);
  border-radius: var(--ed-radius);
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.25rem;
}
.fcg-ed-toc h3 {
  font-family: var(--ed-font-display);
  font-size: 1rem;
  color: var(--ed-blue-900);
  margin-bottom: 0.6rem;
}
.fcg-ed-toc ol {
  margin: 0;
  padding-left: 1.2rem;
}
.fcg-ed-toc a {
  /* Liens de sommaire : 19 px de haut, sous le minimum tactile de 24 px.
     Le rembourrage vertical élargit la zone sans changer la typographie. */
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 0;
  color: var(--ed-blue-500);
  text-decoration: none;
  font-size: 0.875rem;
}
.fcg-ed-toc a:hover {
  text-decoration: underline;
}
.fcg-ed-field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.fcg-ed-field-card {
  border: 1px solid var(--ed-gray-100);
  border-radius: var(--ed-radius);
  padding: 1.1rem;
}
.fcg-ed-code {
  display: inline-block;
  background: var(--ed-blue-700);
  color: var(--ed-white);
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}
.fcg-ed-code--o {
  background: var(--ed-orange-500);
}

/* Regional two-column */
.fcg-ed-region-hero {
  background: linear-gradient(135deg, var(--ed-blue-900) 0%, var(--ed-blue-700) 65%, #2563a8 100%);
  padding: 2.75rem 1.5rem 2.25rem;
  border-radius: 0 0 var(--ed-radius) var(--ed-radius);
  margin: 0 -1rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .fcg-ed-region-hero {
    margin: 0 0 1.5rem;
    border-radius: var(--ed-radius);
  }
}
.fcg-ed-region-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.14) 0%, transparent 70%);
  border-radius: 50%;
}
.fcg-ed-region-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.fcg-ed-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ed-orange-400);
  padding: 0.28rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(230, 126, 34, 0.28);
}
.fcg-ed-region-hero h1 {
  font-family: var(--ed-font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--ed-white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.fcg-ed-region-hero h1 span {
  color: var(--ed-orange-400);
}
.fcg-ed-region-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  max-width: 680px;
}
.fcg-ed-region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .fcg-ed-region-grid {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}
.fcg-ed-sidebar {
  background: var(--ed-white);
  border: 1px solid var(--ed-gray-100);
  border-radius: var(--ed-radius);
  padding: 1.25rem;
  box-shadow: var(--ed-shadow-sm);
}
.fcg-ed-sidebar h4 {
  font-family: var(--ed-font-display);
  font-size: 1rem;
  color: var(--ed-blue-900);
  margin-bottom: 0.75rem;
}
.fcg-ed-sidebar a.fcg-ed-btn-block {
  display: block;
  background: var(--ed-blue-700);
  color: var(--ed-white) !important;
  padding: 0.85rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.5rem;
}
.fcg-ed-sidebar a.fcg-ed-link {
  display: block;
  padding: 0.45rem 0;
  color: var(--ed-gray-700);
  text-decoration: none;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--ed-gray-100);
}
.fcg-ed-sidebar a.fcg-ed-link:last-child {
  border-bottom: none;
}
.fcg-ed-sidebar a.fcg-ed-link:hover {
  color: var(--ed-blue-500);
}

/* Service hero */
.fcg-ed-svc-hero {
  background: linear-gradient(135deg, var(--ed-blue-900), var(--ed-blue-700));
  padding: 2.5rem 1.5rem;
  margin: 0 -1rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fcg-ed-svc-hero {
    margin: 0 0 1.5rem;
    border-radius: var(--ed-radius);
  }
}
.fcg-ed-svc-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .fcg-ed-svc-hero-inner {
    grid-template-columns: 1fr 340px;
  }
}
.fcg-ed-svc-hero h1 {
  font-family: var(--ed-font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--ed-white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.fcg-ed-svc-hero h1 span {
  color: var(--ed-orange-400);
}
.fcg-ed-svc-desc {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.fcg-ed-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fcg-ed-feature {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.92);
}
.fcg-ed-card-price {
  background: var(--ed-white);
  border-radius: var(--ed-radius);
  padding: 1.5rem;
  box-shadow: var(--ed-shadow-lg);
}
.fcg-ed-card-price h3 {
  font-family: var(--ed-font-display);
  font-size: 1rem;
  color: var(--ed-blue-900);
  text-align: center;
  margin-bottom: 0.35rem;
}
.fcg-ed-card-price p.sub {
  text-align: center;
  font-size: 0.875rem;
  color: var(--ed-gray-500);
  margin-bottom: 1rem;
}
.fcg-ed-steps {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}
.fcg-ed-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  background: var(--ed-white);
  border: 1px solid var(--ed-gray-100);
  border-radius: var(--ed-radius);
  padding: 1rem 1.1rem;
}
.fcg-ed-step-num {
  width: 44px;
  height: 44px;
  background: var(--ed-blue-700);
  color: var(--ed-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ed-font-display);
  font-weight: 800;
}
.fcg-ed-step-title {
  font-weight: 700;
  color: var(--ed-blue-900);
  margin-bottom: 0.25rem;
}
.fcg-ed-step-desc {
  font-size: 0.875rem;
  color: var(--ed-gray-700);
  line-height: 1.55;
}
.fcg-ed-alert {
  background: linear-gradient(135deg, #fff3e0, #fff8f0);
  border-left: 4px solid var(--ed-orange-500);
  border-radius: 0 var(--ed-radius) var(--ed-radius) 0;
  padding: 1rem 1.2rem;
  margin: 1.25rem 0;
}
.fcg-ed-alert-title {
  font-weight: 700;
  color: var(--ed-orange-500);
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.fcg-ed-faq details {
  border: 1px solid var(--ed-gray-100);
  border-radius: var(--ed-radius);
  margin-bottom: 0.5rem;
  padding: 0 1rem;
  background: var(--ed-white);
}
.fcg-ed-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ed-blue-900);
  padding: 0.85rem 0;
  list-style: none;
}
.fcg-ed-faq summary::-webkit-details-marker {
  display: none;
}
.fcg-ed-faq details p {
  padding-bottom: 0.85rem;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ed-gray-700);
}

/* ── Pages véhicule (marque / modèle) ─────────────────────────────────── */
.fcg-veh-card {
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.fcg-veh-card:hover,
.fcg-veh-card:focus-visible {
  border-color: #12557f;
  box-shadow: 0 8px 20px rgba(18, 85, 127, .14);
  transform: translateY(-1px);
}
.fcg-veh-card strong {
  display: block;
  font-size: 0.9375rem;
  color: #0f1c2e;
}
.fcg-veh-card__meta {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  color: #556475;
}
/* La fourchette de puissance est indicative : le rappel doit rester lisible
   et proche des cartes, pas relégué en note de bas de page. */
.fcg-veh-note {
  margin-top: .75rem;
  font-size: 0.8125rem;
  color: #556475;
  font-style: italic;
}
.fcg-veh-siblings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fcg-veh-siblings a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 14px;
  border: 1px solid #cfdae7;
  border-radius: 999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: #12557f;
  text-decoration: none;
}
.fcg-veh-siblings a:hover,
.fcg-veh-siblings a:focus-visible {
  background: #eaf3fb;
  border-color: #12557f;
}
@media (prefers-reduced-motion: reduce) {
  .fcg-veh-card { transition: none; }
  .fcg-veh-card:hover { transform: none; }
}

/* ── Index des marques ─────────────────────────────────────────────────── */

/* Rappel neutre en tete de page — informatif, pas alarmant */
.fcg-veh-intro {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 1.1rem 1.35rem;
  margin: 1.25rem 0 1.5rem;
  background: #f4f8fd;
  border: 1px solid #d9e6f5;
  border-left: 4px solid #2d6fc4;
  border-radius: 0 12px 12px 0;
}
.fcg-veh-intro > i {
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 1.25rem;
  color: #12557f;
}
.fcg-veh-intro p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1d2838;
}

/* Panneau recherche + raccourcis : un seul bloc-outil au lieu d'elements
   flottants sur fond blanc */
.fcg-veh-filter {
  margin: 1.25rem 0 2rem;
  padding: 1.25rem 1.35rem;
  background: #f8fafd;
  border: 1px solid #e4eaf3;
  border-radius: var(--fcg-radius, 16px);
}
.fcg-veh-filter__label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--fcg-font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fcg-navy, #0a1e44);
}
.fcg-veh-filter__wrap {
  position: relative;
}
.fcg-veh-filter__wrap > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #7a8aa0;
  pointer-events: none;
}
.fcg-veh-filter__input {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px 10px 44px;
  border: 1px solid #cfdae7;
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  color: #0f1c2e;
  background: #fff;
}
.fcg-veh-filter__input:focus {
  outline: none;
  border-color: #12557f;
  box-shadow: 0 0 0 3px rgba(18, 85, 127, .15);
}
.fcg-veh-filter__status {
  margin: 6px 0 0;
  font-size: 0.8125rem;
  color: #556475;
  min-height: 1em;
}
.fcg-veh-filter__status:empty { margin: 0; min-height: 0; }

.fcg-veh-group[hidden] { display: none; }
.fcg-veh-group {
  scroll-margin-top: var(--fcg-sticky-top, 8.75rem);
  margin-top: 2.25rem;
}
/* En-tete de famille : Sora + pastille de compte sur la meme ligne de base,
   sans le filet herite des articles */
.fcg-ed-body .fcg-veh-group h2,
.fcg-vix .fcg-veh-group h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font-family: var(--fcg-font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--fcg-navy, #0a1e44);
}
.fcg-veh-group__note {
  margin: -.35rem 0 1.1rem;
  font-size: 0.875rem;
  color: #556475;
}
.fcg-veh-group__count {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: #eef4fb;
  font-family: var(--fcg-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #12557f;
  white-space: nowrap;
}

/* Raccourcis vers les trois familles, sous le champ de recherche */
.fcg-veh-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.fcg-veh-jump__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 6px 14px;
  border: 1px solid #cfdae7;
  border-radius: 999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: #12557f;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.fcg-veh-jump__chip:hover,
.fcg-veh-jump__chip:focus-visible {
  border-color: #9fbdd8;
  background: #f4f9ff;
}
.fcg-veh-jump__n {
  padding: 1px 8px;
  border-radius: 999px;
  background: #eef4fb;
  font-size: 0.75rem;
  color: #415063;
}

.fcg-veh-brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 14px;
  margin-bottom: 1.5rem;
}
.fcg-veh-brand {
  display: flex;
  flex-direction: column;
  border: 1px solid #e1e7f5;
  border-radius: var(--fcg-radius, 16px);
  padding: 16px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fcg-veh-brand:hover {
  border-color: #c4d6ea;
  box-shadow: 0 8px 24px rgba(10, 30, 68, .07);
}
.fcg-veh-brand[hidden] { display: none; }

.fcg-veh-brand__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.fcg-veh-brand__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #e4eaf3;
  border-radius: var(--fcg-radius-sm, 11px);
  background: #f8fafd;   /* legere teinte : les logos clairs restent visibles */
}
.fcg-veh-brand__logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.fcg-veh-brand__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  min-width: 0;
  font-size: 1rem;
  border: 0;
  padding: 0;
}
.fcg-veh-brand__name a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;          /* cible tactile minimale (WCAG 2.2, 2.5.8) */
  font-family: var(--fcg-font-display);
  color: var(--fcg-navy, #0a1e44);
  font-weight: 700;
  text-decoration: none;
}
.fcg-veh-brand__name a:hover,
.fcg-veh-brand__name a:focus-visible { text-decoration: underline; }
.fcg-veh-brand__count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #556475;
  white-space: nowrap;
}

/* Modeles en pastilles : cartes deux fois moins hautes qu'en liste pleine
   largeur, la page se parcourt d'un coup d'oeil. */
.fcg-veh-models {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fcg-veh-models li[hidden] { display: none; }
.fcg-veh-models a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 4px 12px;
  border: 1px solid #e4eaf3;
  border-radius: 999px;
  background: #f8fafd;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1d2838;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.fcg-veh-models a:hover,
.fcg-veh-models a:focus-visible {
  border-color: #9fbdd8;
  background: #eaf3fb;
}
.fcg-veh-models__cv {
  flex: 0 0 auto;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #556475;
  white-space: nowrap;
}

.fcg-veh-brand__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;          /* colle en bas : les pieds de carte s'alignent */
  padding-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #12557f;
  text-decoration: none;
}
.fcg-veh-brand__all:hover,
.fcg-veh-brand__all:focus-visible { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .fcg-veh-brand,
  .fcg-veh-jump__chip,
  .fcg-veh-models a { transition: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Bandeau d'en-tête des pages véhicule
   Aligné sur les landings du site : fond bleu nuit, plaque SIV, fiche de
   repères. Tous les contrastes sont vérifiés sur le fond réel (#0b1f4a).
   ══════════════════════════════════════════════════════════════════════════ */
.fcg-veh-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 28px;
  align-items: start;
  margin: 0 0 1.75rem;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b1f4a 0%, #123a6d 100%);
  color: #fff;
  box-shadow: 0 20px 44px rgba(11, 31, 74, .26);
}

.fcg-veh-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e8f1ff;            /* 11,4:1 sur #0b1f4a */
}
.fcg-veh-hero__cat i { font-size: 0.875rem; color: #9fd0ff; }

.fcg-veh-hero h1 {
  margin: .7rem 0 .6rem;
  border: 0;
  padding: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.2;
  color: #fff;
}
.fcg-veh-hero__sub {
  display: block;
  margin-top: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #c3d8f5;            /* 8,6:1 */
}
.fcg-veh-hero__lead {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #dbe7fa;            /* 10,4:1 */
}

.fcg-veh-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.1rem;
}
.fcg-veh-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 14px;
  background: #ffb703;
  color: #21160a;            /* texte sombre sur ambre : 10,9:1 */
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 183, 3, .28);
  transition: transform .16s ease, box-shadow .16s ease;
}
.fcg-veh-hero__btn:hover,
.fcg-veh-hero__btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 183, 3, .38);
}
.fcg-veh-hero__note {
  font-size: 0.8125rem;
  color: #b9cdea;            /* 7,5:1 */
}

.fcg-veh-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fcg-veh-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #cfe0f8;            /* 9,4:1 */
}
.fcg-veh-hero__trust i { color: #7fe3b8; }

/* ── Colonne visuelle ─────────────────────────────────────────────────── */
.fcg-veh-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.fcg-veh-plate {
  display: flex;
  align-items: stretch;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #0a1e44;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}
.fcg-veh-plate .fcg-plate__eu,
.fcg-veh-plate .logoUnionEurope { flex: 0 0 34px; }
.fcg-veh-plate .fcg-plate__eu-svg { width: 100%; height: 100%; display: block; }
.fcg-veh-plate__txt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: #0a1e44;
}
.fcg-veh-plate__end { flex: 0 0 26px; background: #003399; }
/* Plaque de la colonne de gauche (position du gabarit) : largeur contenue,
   cliquable vers le simulateur. */
.fcg-veh-plate--hero {
  max-width: 380px;
  margin: 0 0 0.9rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fcg-veh-plate--hero:hover,
.fcg-veh-plate--hero:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .3);
}

.fcg-veh-card {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  color: #0f1c2e;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}
.fcg-veh-card__head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #12557f;
}
.fcg-veh-specs { margin: 0; }
.fcg-veh-specs > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #e7eef7;
}
.fcg-veh-specs > div:last-child { border-bottom: 0; }
.fcg-veh-specs dt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: #415063;
}
.fcg-veh-specs dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f1c2e;
  text-align: right;
}
.fcg-veh-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 2px 6px;
  border-radius: 5px;
  background: #0b1f4a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: "Sora", monospace;
}
.fcg-veh-card__foot {
  margin: 10px 0 0;
  font-size: 0.75rem;
  font-style: italic;
  color: #556475;
}

.fcg-veh-figure { margin: 0; }
.fcg-veh-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
}
.fcg-veh-figure figcaption {
  margin-top: 7px;
  font-size: 0.75rem;
  color: #b9cdea;            /* 7,5:1 sur le fond du bandeau */
}

.fcg-veh-meta {
  margin: 0 0 1.4rem;
  font-size: 0.8125rem;
  color: #556475;
}

@media (max-width: 860px) {
  .fcg-veh-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fcg-veh-hero__btn { transition: none; }
  .fcg-veh-hero__btn:hover { transform: none; }
}

/* ── Cartes « quelle démarche » ────────────────────────────────────────── */
.fcg-veh-cases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 12px;
  margin: 1rem 0 1.5rem;
}
.fcg-veh-case {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 12px;
  border: 1px solid #e1e7f5;
  border-left: 4px solid #12557f;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(12, 35, 64, .05);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.fcg-veh-case:hover,
.fcg-veh-case:focus-visible {
  border-color: #12557f;
  box-shadow: 0 10px 24px rgba(12, 35, 64, .13);
  transform: translateY(-1px);
}
.fcg-veh-case__icon {
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #eaf3fb;
  color: #12557f;
  font-size: 1.125rem;
}
.fcg-veh-case__body { min-width: 0; flex: 1; }
.fcg-veh-case__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f1c2e;
}
.fcg-veh-case__desc {
  display: block;
  margin-top: 3px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #415063;
}
/* Repère fiscal : l'information la plus recherchée, lisible d'un coup d'œil */
.fcg-veh-case__tax {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.fcg-veh-case__tax.is-due { background: #fdeee8; color: #9a3b12; }  /* 5,9:1 */
.fcg-veh-case__tax.is-non { background: #e6f4ec; color: #14663d; }  /* 6,3:1 */
.fcg-veh-case__tax.is-exo { background: #e8f0fd; color: #1a4f8b; }  /* 6,4:1 */
.fcg-veh-case__go {
  flex: 0 0 auto;
  align-self: center;
  color: #7d8da8;
  font-size: 0.875rem;
}
@media (prefers-reduced-motion: reduce) {
  .fcg-veh-case { transition: none; }
  .fcg-veh-case:hover { transform: none; }
}

/* ── Bandeau éditorial : variantes ────────────────────────────────────── */
/* Sans colonne visuelle, le bandeau occupe toute la largeur mais garde une
   mesure de lecture confortable pour le chapô. */
.fcg-veh-hero.is-solo { grid-template-columns: 1fr; }
.fcg-veh-hero.is-solo .fcg-veh-hero__lead { max-width: 62ch; }

.fcg-eh-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.fcg-eh-stat {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  text-align: center;
}
.fcg-eh-stat__value {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.fcg-eh-stat__label {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #cfe0f8;            /* 9,4:1 sur #0b1f4a */
}
/* Le chapô peut contenir un lien : il doit rester lisible sur le fond sombre. */
.fcg-veh-hero__lead a {
  color: #ffd166;            /* 10,1:1 */
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fcg-veh-hero__lead a:hover { color: #fff; }

/* Crédit photo : discret mais lisible — c'est une obligation de licence,
   pas une mention décorative qu'on peut laisser illisible. */
.fcg-veh-credit {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: #a8c0e0;            /* 6,3:1 sur le fond du bandeau */
}
.fcg-veh-credit a { color: #cfe0f8; text-decoration: underline; }
.fcg-veh-credit a:hover { color: #fff; }

/* ── Identification du véhicule : logo + nom ───────────────────────────── */
/* Taille fonctionnelle et logo TOUJOURS accompagné du nom : c'est ce qui
   distingue une référence d'identification d'une mise en avant de marque. */
.fcg-veh-ident {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7eef7;
}
.fcg-veh-ident__logo {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.fcg-veh-ident__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f1c2e;
}

/* Mention de non-affiliation : discrète mais réellement lisible. */
.fcg-veh-disclaimer {
  margin: 1.5rem 0 0;
  padding: 10px 12px;
  border-left: 3px solid #cfdae7;
  background: #f7f9fc;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #415063;            /* 8,0:1 sur #f7f9fc */
}

/* Logo dans la liste des marques : même gabarit partout, jamais seul. */
.fcg-veh-brand__logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 7px;
  vertical-align: -5px;
}

/* ══════════════════════════════════════════════════════════════════════════
   Colonne latérale éditoriale — même structure sur toutes les pages
   Ordre fixe : action, facilité, sécurité, acheminement, liens.
   Contrastes vérifiés sur fond blanc et sur #f7f9fc.
   ══════════════════════════════════════════════════════════════════════════ */
/* Colonne latérale éditoriale — même langage que le reste du site :
   le bloc d'action en navy (comme le héros) avec le CTA teal du site,
   les blocs d'appui en cartes blanches calmes. Un seul accent fort. */
.fcg-ea {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: var(--fcg-sticky-top, 8.75rem);
}
.fcg-ea-card {
  padding: 18px 20px;
  border: 1px solid var(--fcg-line, #dce5f0);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--fcg-shadow-sm, 0 10px 28px rgba(5, 15, 40, .08));
}
.fcg-ea-card--action {
  border: none;
  background: linear-gradient(150deg, #0a1e44 0%, #123a6d 100%);
}
.fcg-ea-card--action .fcg-ea-card__title {
  color: #7dffe0;
}
.fcg-ea-card--action .fcg-ea-card__text {
  color: rgba(236, 244, 255, 0.9);
}
.fcg-ea-card--action .fcg-ea-card__note {
  color: rgba(236, 244, 255, 0.66);
  text-align: center;
}
/* La pastille d'avis vit sur fond navy ici : centrée, lien lisible. */
.fcg-ea-card--action .fcg-rw {
  text-align: center;
}
.fcg-ea-card--action .fcg-rw__fallback {
  justify-content: center;
  color: rgba(236, 244, 255, 0.8);
}
.fcg-ea-card--action .fcg-rw__fallback a {
  color: #9ecbff;
}
.fcg-ea-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: var(--fcg-font-display, "Sora", sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fcg-navy, #0a1e44);
}
.fcg-ea-card__title i {
  font-size: 1rem;
  color: var(--fcg-teal-deep, #077a5c);
}
.fcg-ea-card--action .fcg-ea-card__title i {
  color: #7dffe0;
}
.fcg-ea-card__text {
  margin: 0 0 12px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #415063;
}
.fcg-ea-card__note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #556475;
}
.fcg-ea-card__note a { color: #12557f; }

/* Le CTA de la colonne est LE CTA du site : teal, pilule, même ombre. */
.fcg-ea-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fcg-teal, #12b58a) 0%, var(--fcg-teal-deep, #077a5c) 100%);
  color: #fff;
  font-family: var(--fcg-font-display, "Sora", sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(18, 181, 138, 0.38);
  transition: transform .2s var(--fcg-ease, ease), box-shadow .2s ease;
}
.fcg-ea-btn:hover,
.fcg-ea-btn:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(18, 181, 138, 0.48);
}

.fcg-ea-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fcg-ea-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #415063;
}
.fcg-ea-list i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--fcg-teal-deep, #077a5c);
}

/* Étapes : mêmes pastilles que la frise de la page d'accueil. */
.fcg-ea-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fcg-ea-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #415063;
}
.fcg-ea-steps span {
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8f3ff, #dff7f1);
  color: var(--fcg-navy, #0a1e44);
  font-size: 0.75rem;
  font-weight: 800;
}

.fcg-ea-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fcg-ea-links li { border-bottom: 1px solid #eef2f7; }
.fcg-ea-links li:last-child { border-bottom: 0; }
.fcg-ea-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 9px 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #12557f;
  text-decoration: none;
}
.fcg-ea-links a::after {
  content: "92";
  color: var(--fcg-teal-deep, #077a5c);
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
  transform: translateX(-4px);
}
.fcg-ea-links a:hover,
.fcg-ea-links a:focus-visible { text-decoration: underline; }
.fcg-ea-links a:hover::after,
.fcg-ea-links a:focus-visible::after { opacity: 1; transform: translateX(0); }

/* Mise en page à deux colonnes sur les pages qui appellent l'aside */
.fcg-ed-withaside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px) {
  /* `1fr` seul vaut `minmax(auto, 1fr)` : sous 360 px la colonne restait a
     la largeur mini de son contenu et debordait de la page. */
  .fcg-ed-withaside { grid-template-columns: minmax(0, 1fr); }
  .fcg-ea { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  .fcg-ea-btn { transition: none; }
}


/* ── Blocs larges dans une colonne de lecture ─────────────────────────────
   .fcg-ed-guide-wrap tient le texte à 900 px, et c'est voulu : au-delà, l'œil
   perd la ligne suivante. Mais tout n'est pas du texte. Une grille de marques,
   un tableau de tarifs ou une galerie n'ont aucune raison d'obéir à la mesure
   du paragraphe — enfermés dans 900 px sur un écran de 1600, ils laissaient
   plus de vide que de contenu.

   .fcg-ed-wide rend au bloc la largeur du conteneur, sans sortir de la page :
   la marge négative est calculée à partir de la largeur réelle disponible, et
   plafonnée par le conteneur lui-même. */
.fcg-ed-wide {
  width: min(var(--fcg-max, 1240px) - 2rem, 100vw - 2rem);
  margin-inline: calc(50% - min(var(--fcg-max, 1240px) - 2rem, 100vw - 2rem) / 2);
}

/* En dessous de la largeur de lecture, il n'y a rien à élargir : le bloc
   occupe déjà toute la place, et la marge négative le ferait déborder. */
@media (max-width: 960px) {
  .fcg-ed-wide { width: 100%; margin-inline: 0; }
}

/* La grille de marques s'élargit ; le texte qui l'accompagne, non. Un
   paragraphe de note étiré sur 1200 px se lit mal, et rien ne l'y oblige. */
.fcg-veh-group__note { max-width: 80ch; }

/* ── Pages avec colonne latérale : pleine largeur du site ──────────────────
   La carte article était enfermée dans 820 px quand le site pose 1240 : la
   colonne de texte tombait à ~430 px et la carte latérale débordait. Toute
   page qui pose une .fcg-ed-withaside occupe le conteneur ; les articles de
   pure lecture, sans aside, gardent leurs 820 px de mesure. La lisibilité
   du texte est tenue par la colonne du grid et la mesure des paragraphes. */
.fcg-veh .fcg-ed-guide-wrap,
.fcg-ed-guide-wrap:has(.fcg-ed-withaside) {
  /* .fcg-ed et .fcg-ed-guide-wrap sont le MÊME élément sur ces pages :
     « none » ici ferait sauter la limite du site entier. */
  max-width: var(--fcg-max, 1240px);
}
.fcg-veh .fcg-ed-article,
.fcg-ed-article:has(.fcg-ed-withaside) {
  max-width: none;
  /* La carte blanche n'enveloppe plus la colonne laterale : le heros et le
     texte sont des cartes, la colonne vit sur le fond de page — sans grande
     nappe blanche derriere des cartes blanches. */
  background: transparent;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
}
.fcg-ed-withaside {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
}
@media (max-width: 980px) {
  /* `1fr` seul vaut `minmax(auto, 1fr)` : sous 360 px la colonne restait a
     la largeur mini de son contenu et debordait de la page. */
  .fcg-ed-withaside { grid-template-columns: minmax(0, 1fr); }
}
.fcg-veh .fcg-veh-hero {
  padding: 40px 44px;
  gap: 40px;
}
.fcg-veh .fcg-ed-body,
.fcg-ed-article:has(.fcg-ed-withaside) .fcg-ed-body {
  padding: 2.25rem 2.5rem 2.75rem;
  background: var(--ed-white, #fff);
  border-radius: 16px;
  box-shadow: var(--ed-shadow-md, 0 4px 16px rgba(12, 35, 64, 0.1));
}
.fcg-veh .fcg-ed-body > p,
.fcg-veh .fcg-ed-body li,
.fcg-ed-withaside .fcg-ed-body > p,
.fcg-ed-withaside .fcg-ed-body li {
  max-width: 72ch;
}
@media (max-width: 860px) {
  .fcg-veh .fcg-veh-hero { padding: 24px 20px; gap: 24px; }
  .fcg-veh .fcg-ed-body,
  .fcg-ed-article:has(.fcg-ed-withaside) .fcg-ed-body { padding: 1.5rem 1.25rem 2rem; }
}

/* Le premier encadré de la colonne portait un double espace (padding du corps
   + sa propre marge) : la lecture commençait 60 px trop bas par rapport à la
   colonne latérale. */
.fcg-ed-withaside .fcg-ed-body > :first-child {
  margin-top: 0;
}
.fcg-ed-article:has(.fcg-ed-withaside) .fcg-ed-body {
  padding-top: 1.9rem;
}

/* ── Continuité héros → contenu dans la carte article ─────────────────────
   Le héros navy gardait ses coins et sa marge DANS la carte blanche : deux
   cartes imbriquées, et la ligne « Mis à jour » flottait sans appartenance
   entre les deux. Ici : héros pleine largeur soudé au haut de la carte, et
   la ligne méta devient la bande de transition, alignée sur le padding du
   corps et soulignée d'un filet. */
.fcg-ed-article > .fcg-veh-hero {
  margin: 0 0 0.9rem;
  border-radius: 20px;
}
.fcg-ed-article > .fcg-veh-meta {
  margin: 0 0.25rem 0.9rem;
  padding-bottom: 0;
  border-bottom: none;
}

/* ── Répertoire des marques : composition pleine largeur (.fcg-vix) ────────
   La page vivait dans la carte article de 900 px pendant que ses grilles
   s'etiraient a 1240 : deux largeurs en conflit, du blanc sur du blanc.
   Ici une seule largeur — celle du site — sur le fond gris de la page,
   et les cartes blanches portent l'elevation. */
.fcg-vix .fcg-veh-hero {
  padding: 40px 44px;
  gap: 40px;
}
.fcg-vix .fcg-veh-meta {
  margin: 0.9rem 0.25rem 1.5rem;
}
.fcg-vix .fcg-veh-intro {
  margin: 0 0 1.25rem;
}
/* La barre de recherche suit le lecteur : la liste fait plusieurs ecrans,
   le filtre reste toujours a portee. */
.fcg-vix .fcg-veh-filter {
  margin: 0 0 0.5rem;
  background: #fff;
  border-color: #dce5f0;
  box-shadow: 0 4px 16px rgba(12, 35, 64, .08);
}
@media (min-width: 961px) {
  .fcg-vix .fcg-veh-filter {
    position: sticky;
    /* Collee sous le header (meme valeur que la barre de lecture) : avec la
       marge de --fcg-sticky-top, une bande de cartes defilait dans l'interstice. */
    top: 7.5625rem;
    z-index: 30;
  }
}
.fcg-vix .fcg-veh-group {
  margin-top: 2.5rem;
}
.fcg-vix .fcg-veh-group__note a,
.fcg-vix .fcg-veh-note a {
  color: #12557f;
}
/* Sur fond gris, les cartes portent une ombre discrete au repos */
.fcg-vix .fcg-veh-brand {
  border-color: #e7edf6;
  box-shadow: 0 1px 3px rgba(12, 35, 64, .06);
}
.fcg-vix .fcg-veh-brand:hover {
  box-shadow: 0 10px 28px rgba(10, 30, 68, .1);
}
.fcg-vix .fcg-veh-brands {
  gap: 16px;
  margin-bottom: 0;
}
.fcg-vix .fcg-veh-note {
  margin: 1.5rem 0.25rem 0;
}
.fcg-vix .fcg-ed-cta {
  margin-top: 2.5rem;
  padding: 2.25rem 1.75rem;
}
.fcg-vix .fcg-vix-seealso {
  margin: 1.5rem 0.25rem 0;
  font-size: 0.875rem;
  color: #556475;
}
.fcg-vix .fcg-vix-seealso a { color: #12557f; }
@media (max-width: 860px) {
  .fcg-vix .fcg-veh-hero { padding: 24px 20px; gap: 24px; }
}

/* La copie du bandeau vehicule se centre face a la colonne visuelle, plus
   haute qu'elle : l'espace restant se repartit au lieu de s'accumuler en bas. */
.fcg-veh-hero__copy { align-self: center; }
