/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 22 2026 | 11:43:04 */
/* ================================================================
   CONCIERGERIE VESNA — ARTICLES DE BLOG
   style.css — v2

   TABLE DES MATIÈRES
   ------------------
   00. Variables & Reset
   01. Container & Layout de base
   02. BLOC 01 — Hero / Bannière photo
   03. BLOC 02 — Meta (date + durée de lecture)
   04. BLOC 03 — H1 + Intro / Lead
   05. SOMMAIRE (table des matières)
   06. BLOC 04 — H2 + Bloc texte simple / photo bannière
   06. BLOC 05 — Statistique clé
   07. BLOC 06 — Liste à puces
   08. BLOC 07 — Liste numérotée
   09. BLOCS 08 & 09 — Tableaux (simple + comparaison)
   10. BLOC 10 — Texte + Photo alterné
   11. BLOC 11 — Carrousel de photos
   12. BLOCS 12 & 16 — Accordéon (corps + FAQ)
   13. BLOC 13 — Conseil Vesna
   14. BLOC 14 — CTA milieu d'article
   15. BLOC 15 — Nos 3 valeurs clés
   16. BLOC 17 — Sources
   17. BLOC 18 — Grand CTA final
   18. Boutons (article-btn)
   19. Utilitaires
   20. Responsive (max-width: 768px)
   ================================================================ */


/* ================================================================
   00. VARIABLES & RESET
   ================================================================ */

:root {
  /* --- Palette principale --- */
  --article-text:         #111827;   /* Noir-bleu profond (plus élégant que le pur noir) */
  --article-text-light:   #64748b;   /* Gris slate pour texte secondaire */
  --article-text-muted:   #94a3b8;   /* Très léger — labels, séparateurs */
  --article-accent:       #91a5ff;   /* Bleu-violet Vesna */
  --article-accent-dark:  #5e6ad2;   /* Accent foncé — survol, liens actifs */
  --article-accent-light: #e8ecff;   /* Accent très dilué — fonds de blocs contenu */
  --article-white:        #ffffff;

  /* --- Fonds de page --- */
  --article-bg:           #ffffff;   /* Corps de l'article */
  --article-bg-subtle:    #f8f9fc;   /* Gris très froid — fonds discrets (stat, accordéon) */

  /* --- Fonds des blocs CTA (distincts du fond de page et entre eux) --- */
  --article-bg-cta-mid:   #eef0fd;   /* Lavande pâle — CTA milieu (BLOC 14) */
  --article-bg-cta-final: #f0f3ff;   /* Indigo très dilué — CTA final (BLOC 18) */

  /* --- Fonds valeurs --- */
  --article-bg-values:    #f4f5fb;   /* Gris lavande très doux — section valeurs */

  /* --- Bordures --- */
  --article-border:       #e2e8f0;   /* Bordure principale */
  --article-border-strong:#cbd5e1;   /* Bordure plus marquée */

  /* --- ✓ / ✗ --- */
  --article-check-color:  #16a34a;
  --article-cross-color:  #dc2626;

  /* --- Typographie --- */
  --article-font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --article-size-xs:     0.75rem;    /* 12px */
  --article-size-sm:     0.875rem;   /* 14px */
  --article-size-base:   1rem;       /* 16px */
  --article-size-lg:     1.125rem;   /* 18px */
  --article-size-xl:     1.375rem;   /* 22px */
  --article-size-2xl:    1.75rem;    /* 28px */
  --article-size-3xl:    2.25rem;    /* 36px */
  --article-line-height: 1.8;

  /* --- Espacements --- */
  --article-gap-xs:  0.5rem;
  --article-gap-sm:  1rem;
  --article-gap-md:  1.75rem;
  --article-gap-lg:  3rem;
  --article-gap-xl:  5rem;

  /* --- Formes --- */
  --article-radius:    10px;
  --article-radius-lg: 20px;

  /* --- Ombres — légères, froides --- */
  --article-shadow-sm:   0 1px 4px rgba(15, 23, 42, 0.06);
  --article-shadow-md:   0 4px 16px rgba(15, 23, 42, 0.08);
  --article-shadow-hover:0 6px 24px rgba(94, 106, 210, 0.2);

  /* --- Container --- */
  --article-container-width: 760px;
}

/* Reset ciblé */
.article-wrapper *,
.article-hero,
.article-meta,
.article-cta-final {
  box-sizing: border-box;
}

.article-wrapper {
  font-family: var(--article-font);
  font-size: var(--article-size-base);
  line-height: var(--article-line-height);
  color: var(--article-text);
  background: var(--article-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ================================================================
   01. CONTAINER & LAYOUT DE BASE
   ================================================================ */

.article-container {
  max-width: var(--article-container-width);
  margin: 0 auto;
  padding: 0 var(--article-gap-md);
}

/* Espacement entre sections */
.article-section {
  margin-bottom: var(--article-gap-lg);
}

/* ── H2 global ──────────────────────────────────────────────── */
.article-h2 {
  font-size: var(--article-size-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--article-text);
  margin: 0 0 var(--article-gap-md) 0;
}

/* Variante centrée (valeurs) */
.article-h2--centered {
  text-align: center;
}

/* Variante label (sources) */
.article-h2--small {
  font-size: var(--article-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--article-text-muted);
}

/* ── Texte courant ──────────────────────────────────────────── */
.article-text {
  font-size: var(--article-size-lg);
  line-height: var(--article-line-height);
  color: var(--article-text);
  margin: 0 0 var(--article-gap-sm) 0;
}

.article-text:last-child {
  margin-bottom: 0;
}


/* ================================================================
   02. BLOC 01 — HERO / BANNIÈRE PHOTO
   ================================================================ */

.article-hero {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  background: var(--article-bg-subtle);
}

.article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--article-gap-md) var(--article-gap-lg);
  background: linear-gradient(to top, rgba(13, 21, 38, 0.6) 0%, transparent 100%);
}

.article-hero__category {
  display: inline-block;
  font-size: var(--article-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--article-white);
  background: rgba(145, 165, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 0.35em 0.9em;
  border-radius: 3px;
}


/* ================================================================
   03. BLOC 02 — META (DATE + DURÉE DE LECTURE)
   ================================================================ */

.article-meta {
  padding: var(--article-gap-sm) 0;
  margin-bottom: var(--article-gap-lg);
  border-bottom: 1px solid var(--article-border);
}

.article-meta .article-container {
  display: flex;
  align-items: center;
  gap: var(--article-gap-xs);
  flex-wrap: wrap;
}

.article-meta__date,
.article-meta__reading-time {
  font-size: var(--article-size-sm);
  color: var(--article-text-muted);
  letter-spacing: 0.01em;
}

.article-meta__sep {
  color: var(--article-border-strong);
  font-size: var(--article-size-sm);
}


/* ================================================================
   04. BLOC 03 — H1 + INTRO / LEAD
   ================================================================ */

.article-intro {
  margin-bottom: var(--article-gap-lg);
  padding-bottom: var(--article-gap-lg);
  border-bottom: 1px solid var(--article-border);
}

.article-h1 {
  font-size: var(--article-size-3xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--article-text);
  margin: 0 0 var(--article-gap-md) 0;
}

.article-lead {
  font-size: var(--article-size-xl);
  line-height: 1.65;
  color: var(--article-text-light);
  margin: 0;
  font-weight: 400;
}


/* ================================================================
   05. SOMMAIRE (table des matières)
   ================================================================ */

.article-toc {
  margin-bottom: var(--article-gap-lg);
  border: 1px solid var(--article-border);
  border-radius: var(--article-radius);
  overflow: hidden;
}

/* Bouton toggle "Sommaire" */
.article-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--article-bg-subtle);
  border: none;
  cursor: pointer;
  font-family: var(--article-font);
  font-size: var(--article-size-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--article-text);
  transition: background 0.2s ease;
  gap: var(--article-gap-sm);
  text-align: left;
}

.article-toc__toggle:hover {
  background: var(--article-accent-light);
}

.article-toc__toggle[aria-expanded="true"] {
  background: var(--article-accent-light);
  color: var(--article-accent-dark);
}

/* Icône +/− (même logique que l'accordéon) */
.article-toc__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}

.article-toc__icon::before,
.article-toc__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.article-toc__icon::before {   /* barre horizontale */
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-50%);
}

.article-toc__icon::after {    /* barre verticale */
  top: 0; left: 50%;
  width: 2px; height: 100%;
  transform: translateX(-50%);
}

.article-toc__toggle[aria-expanded="true"] .article-toc__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Corps — fermé par défaut */
.article-toc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--article-bg);
}

/* Liste numérotée */
.article-toc__list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0.75rem 1.25rem 1.25rem;
  margin: 0;
}

.article-toc__item {
  counter-increment: toc-counter;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--article-border);
}

.article-toc__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Numéro auto en couleur accent */
.article-toc__item::before {
  content: counter(toc-counter, decimal-leading-zero);
  flex-shrink: 0;
  font-size: var(--article-size-xs);
  font-weight: 700;
  color: var(--article-accent);
  min-width: 1.75rem;
  letter-spacing: 0.04em;
}

.article-toc__link {
  font-size: var(--article-size-sm);
  color: var(--article-text);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.article-toc__link:hover {
  color: var(--article-accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ================================================================
   06. BLOC 04 — H2 + BLOC TEXTE SIMPLE + photo bannière
   Les classes article-section, article-h2 et article-text suffisent.
   ================================================================ */
                                                                                         
   .article-section-banner {
    margin: var(--article-gap-md) 0; }                                                                                                                                              
   .article-section-banner img {
    width: 100%;
    display: block;
    border-radius: var(--article-radius);
    box-shadow: var(--article-shadow-md); } 
 

/* ================================================================
   06. BLOC 05 — STATISTIQUE CLÉ MISE EN AVANT
   ================================================================ */

.article-stat {
  display: flex;
  align-items: center;
  gap: var(--article-gap-lg);
  background: var(--article-bg-subtle);
  border-radius: var(--article-radius-lg);
  padding: var(--article-gap-md) var(--article-gap-lg);
  margin-bottom: var(--article-gap-lg);
  border: 1px solid var(--article-border);
}

/* Séparateur vertical entre chiffre et texte */
.article-stat::after {
  display: none;
}

.article-stat__number {
  flex-shrink: 0;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--article-accent-dark);
  line-height: 1;
  /* Ligne verticale accent à droite */
  padding-right: var(--article-gap-lg);
  border-right: 2px solid var(--article-accent-light);
}

.article-stat__desc {
  font-size: var(--article-size-base);
  color: var(--article-text);
  line-height: 1.65;
  margin: 0;
}


/* ================================================================
   07. BLOC 06 — LISTE À PUCES
   ================================================================ */

.article-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--article-gap-sm) 0;
}

.article-bullets__item {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--article-size-lg);
  line-height: var(--article-line-height);
  color: var(--article-text);
  margin-bottom: 0.625rem;
}

.article-bullets__item:last-child {
  margin-bottom: 0;
}

/* Puce ronde, couleur accent */
.article-bullets__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--article-accent);
}


/* ================================================================
   08. BLOC 07 — LISTE NUMÉROTÉE
   ================================================================ */

.article-numbered {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--article-gap-sm) 0;
}

.article-numbered__item {
  display: flex;
  align-items: flex-start;
  gap: var(--article-gap-md);
  padding: var(--article-gap-md) 0;
  border-bottom: 1px solid var(--article-border);
}

.article-numbered__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-numbered__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--article-accent);
  color: var(--article-white);
  font-size: var(--article-size-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 0.15rem;
}

.article-numbered__content {
  flex: 1;
  padding-top: 0.1rem;
}

.article-numbered__content strong {
  display: block;
  font-size: var(--article-size-lg);
  font-weight: 600;
  color: var(--article-text);
  margin-bottom: 0.3rem;
}

.article-numbered__content p {
  font-size: var(--article-size-base);
  color: var(--article-text-light);
  margin: 0;
  line-height: 1.65;
}


/* ================================================================
   09. BLOCS 08 & 09 — TABLEAUX (simple + comparaison)
   ================================================================ */

.article-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: var(--article-gap-sm);
  border-radius: var(--article-radius);
  border: 1px solid var(--article-border);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--article-size-base);
  background: var(--article-bg);
  min-width: 400px;
}

.article-table thead {
  background: var(--article-accent-dark);   /* Indigo Vesna — cohérent avec la marque */
  color: var(--article-white);
}

.article-table thead th {
  padding: 0.9rem 1.125rem;
  text-align: left;
  font-weight: 600;
  font-size: var(--article-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-table tbody tr {
  border-bottom: 1px solid var(--article-border);
  transition: background 0.15s ease;
}

.article-table tbody tr:last-child {
  border-bottom: none;
}

.article-table tbody tr:nth-child(even) {
  background: var(--article-bg-subtle);  /* Zébrage très discret */
}

.article-table tbody tr:hover {
  background: var(--article-accent-light);
}

.article-table tbody td {
  padding: 0.9rem 1.125rem;
  color: var(--article-text);
  vertical-align: middle;
  font-size: var(--article-size-sm);
}

/* Comparaison : 1re colonne */
.article-table--comparison tbody td:first-child {
  font-weight: 600;
  color: var(--article-text);
  font-size: var(--article-size-base);
}

/* Symboles ✓ / ✗ */
.article-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.1);
  color: var(--article-check-color);
  font-size: 0.875rem;
  font-weight: 700;
}

.article-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.08);
  color: var(--article-cross-color);
  font-size: 0.875rem;
  font-weight: 700;
}


/* ================================================================
   10. BLOC 10 — TEXTE + PHOTO ALTERNÉ
   ================================================================ */

.article-text-image {
  display: flex;
  align-items: center;
  gap: var(--article-gap-lg);
  margin-bottom: var(--article-gap-md);
}

/* Variante A — image à droite */
.article-text-image--img-right { flex-direction: row; }
.article-text-image--img-right .article-text-image__text { flex: 1; }
.article-text-image--img-right .article-text-image__img  { flex: 0 0 44%; }

/* Variante B — image à gauche */
.article-text-image--img-left { flex-direction: row; }
.article-text-image--img-left .article-text-image__img  { flex: 0 0 44%; }
.article-text-image--img-left .article-text-image__text { flex: 1; }

.article-text-image__img img {
  width: 100%;
  height: auto;
  border-radius: var(--article-radius);
  display: block;
}


/* ================================================================
   11. BLOC 11 — CARROUSEL DE PHOTOS
   ================================================================ */

.article-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--article-radius-lg);
  margin-bottom: var(--article-gap-lg);
  background: var(--article-bg-subtle);
}

.article-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.article-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}

.article-carousel__slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.article-carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(to top, rgba(13, 21, 38, 0.72), transparent);
  color: var(--article-white);
  font-size: var(--article-size-sm);
  letter-spacing: 0.01em;
  margin: 0;
}

/* Boutons nav */
.article-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--article-shadow-md);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
  color: var(--article-text);
}

.article-carousel__btn:hover {
  background: var(--article-white);
  box-shadow: var(--article-shadow-hover);
}

.article-carousel__btn--prev { left: 1rem; }
.article-carousel__btn--next { right: 1rem; }

/* Points de navigation */
.article-carousel__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.article-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.article-carousel__dot--active {
  background: var(--article-white);
  transform: scale(1.4);
}


/* ================================================================
   12. BLOCS 12 & 16 — ACCORDÉON (corps de texte + FAQ)
   ================================================================ */

.article-accordion {
  border: 1px solid var(--article-border);
  border-radius: var(--article-radius);
  overflow: hidden;
  margin-bottom: var(--article-gap-sm);
}

.article-accordion__item {
  border-bottom: 1px solid var(--article-border);
}

.article-accordion__item:last-child {
  border-bottom: none;
}

/* Bouton déclencheur */
.article-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.125rem 1.25rem;
  background: var(--article-bg);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--article-font);
  font-size: var(--article-size-base);
  font-weight: 600;
  color: var(--article-text);
  transition: background 0.2s ease;
  gap: var(--article-gap-sm);
}

.article-accordion__trigger:hover {
  background: var(--article-bg-subtle);
}

.article-accordion__trigger[aria-expanded="true"] {
  background: var(--article-bg-subtle);
  color: var(--article-accent-dark);
}

/* Icône +/− en CSS pur */
.article-accordion__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.article-accordion__icon::before,
.article-accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--article-accent-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.article-accordion__icon::before {  /* barre horizontale */
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-50%);
}

.article-accordion__icon::after {   /* barre verticale */
  top: 0; left: 50%;
  width: 2px; height: 100%;
  transform: translateX(-50%);
}

.article-accordion__trigger[aria-expanded="true"] .article-accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Corps masqué par défaut */
.article-accordion__body {
  max-height: 0;
  overflow: hidden;
  /* On ne transitionne PAS le padding — sinon scrollHeight est mesuré avant
     que le padding soit appliqué, ce qui coupe le contenu */
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
  background: var(--article-bg);
}

.article-accordion__body.is-open {
  padding: 1.25rem 1.5rem 1.75rem;
}

.article-accordion__body p {
  font-size: var(--article-size-base);
  line-height: 1.9;
  color: var(--article-text);
  margin: 0 0 0.875rem 0;
}

.article-accordion__body p:last-child {
  margin-bottom: 0;
}

/* FAQ wrapper */
.article-faq {
  margin-bottom: var(--article-gap-lg);
}


/* ================================================================
   13. BLOC 13 — CONSEIL VESNA
   ================================================================ */

.article-conseil {
  display: flex;
  align-items: flex-start;
  gap: var(--article-gap-md);
  background: var(--article-accent-light);
  border: 1px solid rgba(145, 165, 255, 0.35);
  border-radius: var(--article-radius-lg);
  padding: var(--article-gap-md);
  margin-bottom: var(--article-gap-lg);
  box-shadow: var(--article-shadow-sm);
}

.article-conseil__icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.15rem;
  opacity: 0.9;
}

.article-conseil__content {
  flex: 1;
}

.article-conseil__label {
  font-size: var(--article-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--article-accent-dark);
  margin: 0 0 0.4rem 0;
}

.article-conseil__text {
  font-size: var(--article-size-base);
  line-height: 1.7;
  color: var(--article-text);
  margin: 0;
}


/* ================================================================
   14. BLOC 14 — CTA MILIEU D'ARTICLE
   Fond : --article-bg-cta-mid (lavande pâle)
   Clairement distinct du fond blanc de l'article et du CTA final
   ================================================================ */

.article-cta-mid {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--article-bg-cta-mid);
  border-radius: var(--article-radius-lg);
  overflow: hidden;
  margin-bottom: var(--article-gap-lg);
  border: 1px solid rgba(145, 165, 255, 0.2);
}

.article-cta-mid__img {
  flex: 0 0 38%;
}

.article-cta-mid__img img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}

.article-cta-mid__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--article-gap-lg);
}

.article-cta-mid__text {
  font-size: var(--article-size-lg);
  color: var(--article-text);
  line-height: 1.65;
  margin: 0 0 var(--article-gap-md) 0;
  font-weight: 400;
}


/* ================================================================
   15. BLOC 15 — NOS 3 VALEURS CLÉS
   ================================================================ */

.article-values {
  background: var(--article-bg-values);
  border-radius: var(--article-radius-lg);
  padding: var(--article-gap-lg);
  margin-bottom: var(--article-gap-lg);
}

.article-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--article-gap-md);
  margin-top: var(--article-gap-md);
}

.article-values__card {
  background: var(--article-bg);
  border: 1px solid var(--article-border);
  border-radius: var(--article-radius);
  padding: var(--article-gap-md);
  text-align: center;
  box-shadow: var(--article-shadow-sm);
}

.article-values__icon {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.article-values__title {
  font-size: var(--article-size-base);
  font-weight: 700;
  color: var(--article-text);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.article-values__desc {
  font-size: var(--article-size-sm);
  color: var(--article-text-light);
  line-height: 1.65;
  margin: 0;
}


/* ================================================================
   16. BLOC 19 — LIRE AUSSI (articles connexes)
   ================================================================ */

.article-related {
  margin-bottom: var(--article-gap-lg);
  padding-top: var(--article-gap-lg);
  border-top: 1px solid var(--article-border);
}

/* Grille 3 colonnes */
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--article-gap-md);
  margin-top: var(--article-gap-md);
}

/* Carte — lien cliquable entier */
.article-related__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--article-radius);
  overflow: hidden;
  border: 1px solid var(--article-border);
  background: var(--article-bg);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.article-related__card:hover {
  box-shadow: var(--article-shadow-md);
  transform: translateY(-3px);
}

/* Zone image */
.article-related__img {
  width: 100%;
  aspect-ratio: 5 / 2;
  overflow: hidden;
  /* Fond placeholder affiché tant que l'image n'est pas chargée ou si l'url est manquante */
  background: linear-gradient(145deg, var(--article-accent) 0%, var(--article-accent-dark) 100%);
}

.article-related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-related__card:hover .article-related__img img {
  transform: scale(1.04);
}

/* Contenu texte */
.article-related__content {
  padding: 0.75rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Label catégorie — masqué */
.article-related__category {
  display: none;
}

/* Titre de l'article connexe */
.article-related__title {
  font-size: var(--article-size-base);
  font-weight: 600;
  color: var(--article-text);
  line-height: 1.45;
  margin: 0;
  /* Limite à 2 lignes avec ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive — 1 colonne sur mobile */
@media (max-width: 768px) {
  .article-related__grid {
    grid-template-columns: 1fr;
    gap: var(--article-gap-sm);
  }

  .article-related__card {
    flex-direction: row;
    align-items: center;
  }

  .article-related__img {
    flex: 0 0 110px;
    aspect-ratio: unset;
    height: 80px;
  }
}


/* ================================================================
   17. BLOC 17 — SOURCES
   ================================================================ */

.article-sources {
  margin-bottom: var(--article-gap-lg);
  padding-top: var(--article-gap-lg);
  border-top: 1px solid var(--article-border);
}

.article-sources__list {
  list-style: none;
  padding: 0;
  margin: var(--article-gap-sm) 0 0 0;
}

.article-sources__list li {
  font-size: var(--article-size-sm);
  color: var(--article-text-light);
  line-height: 1.6;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--article-border);
}

.article-sources__list li:last-child {
  border-bottom: none;
}

.article-sources__list strong {
  color: var(--article-text);
  font-weight: 500;
}

.article-sources__list a {
  color: var(--article-accent-dark);
  text-decoration: none;
  word-break: break-all;
}

.article-sources__list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ================================================================
   17. BLOC 18 — GRAND CTA FINAL (pleine largeur)
   Fond : --article-bg-cta-final (indigo très dilué — clair et aéré)
   Séparé du reste par un filet accent en haut
   ================================================================ */

.article-cta-final {
  background: var(--article-bg-cta-final);
  border-top: 3px solid var(--article-accent);
  padding: var(--article-gap-xl) 0;
  margin-top: var(--article-gap-xl);
}

.article-cta-final__content {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

/* Logo au-dessus du titre */
.article-cta-final__logo {
  display: block;
  height: 48px;
  width: auto;
  margin: 0 auto var(--article-gap-sm);
}

.article-cta-final__title {
  font-size: var(--article-size-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--article-text);
  margin: 0 0 var(--article-gap-sm) 0;
  line-height: 1.25;
}

.article-cta-final__text {
  font-size: var(--article-size-lg);
  color: var(--article-text-light);
  line-height: 1.75;
  margin: 0 0 var(--article-gap-lg) 0;
}

/* Formulaire Formidable dans le CTA final */
.article-cta-final .frm_forms {
  text-align: left;
  margin-top: var(--article-gap-md);
}


/* ================================================================
   18. BOUTONS (article-btn)
   ================================================================ */

.article-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--article-radius);
  font-family: var(--article-font);
  font-size: var(--article-size-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease,
              box-shadow 0.2s ease;
  line-height: 1;
}

/* Bouton principal — plein, fond accent */
.article-btn--primary {
  background: var(--article-accent-dark);
  color: var(--article-white);
  border-color: var(--article-accent-dark);
}

.article-btn--primary:hover {
  background: #4c58c0;
  border-color: #4c58c0;
  box-shadow: var(--article-shadow-hover);
}

/* Bouton sur fond sombre (CTA final) — contour blanc, remplissage transparent */
.article-btn--white {
  background: transparent;
  color: var(--article-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.article-btn--white:hover {
  background: var(--article-white);
  color: var(--article-text);
  border-color: var(--article-white);
}


/* ================================================================
   19. UTILITAIRES
   ================================================================ */

/* Liens dans le corps de texte */
.article-wrapper a:not(.article-btn) {
  color: var(--article-accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.article-wrapper a:not(.article-btn):hover {
  color: var(--article-text);
}

/* Gras */
.article-wrapper strong {
  font-weight: 600;
  color: var(--article-text);
}


/* ================================================================
   21. RESPONSIVE (max-width: 768px)
   ================================================================ */

@media (max-width: 768px) {

  :root {
    --article-gap-lg: 2rem;
    --article-gap-xl: 3.5rem;
  }

  /* Hero */
  .article-hero {
    height: 260px;
  }

  /* H1 */
  .article-h1 {
    font-size: var(--article-size-2xl);
  }

  .article-lead {
    font-size: var(--article-size-base);
  }

  /* H2 */
  .article-h2 {
    font-size: var(--article-size-xl);
  }

  /* Stat — empilement vertical */
  .article-stat {
    flex-direction: column;
    gap: var(--article-gap-sm);
    padding: var(--article-gap-md);
  }

  .article-stat__number {
    font-size: var(--article-size-2xl);
    border-right: none;
    border-bottom: 2px solid var(--article-accent-light);
    padding-right: 0;
    padding-bottom: var(--article-gap-sm);
  }

  /* Texte + image — empilement vertical */
  .article-text-image--img-right,
  .article-text-image--img-left {
    flex-direction: column;
  }

  .article-text-image__img,
  .article-text-image--img-right .article-text-image__img,
  .article-text-image--img-left .article-text-image__img {
    flex: unset;
    width: 100%;
  }

  .article-text-image__img img {
    height: auto;
  }

  /* Carrousel */
  .article-carousel__slide img {
    height: 240px;
  }

  /* CTA milieu — empilement vertical */
  .article-cta-mid {
    flex-direction: column;
  }

  .article-cta-mid__img {
    flex: unset;
    width: 100%;
  }

  .article-cta-mid__img img {
    min-height: 200px;
    height: 200px;
  }

  .article-cta-mid__content {
    padding: var(--article-gap-md);
  }

  /* Valeurs — 1 colonne */
  .article-values {
    padding: var(--article-gap-md);
  }

  .article-values__grid {
    grid-template-columns: 1fr;
    gap: var(--article-gap-sm);
  }

  /* CTA final */
  .article-cta-final__title {
    font-size: var(--article-size-xl);
  }

  .article-cta-final__text {
    font-size: var(--article-size-base);
  }

  /* Bouton pleine largeur */
  .article-btn {
    display: block;
    width: 100%;
  }
}
