
*, *::before, *::after{
  box-sizing: border-box;
}
:root{
	--z-header: 100;
	--z-nav: 200;
	
  --bg: #f6f7fb;
  --panel: rgba(255,255,255,.85);
  --panel-2: rgba(255,255,255,.65);
  --text: rgba(15,18,28,.92);
  --muted: rgba(15,18,28,.75);
  --stroke: rgba(15,18,28,.12);
  --brand: #0f121c;
  --accent: #2f6bff;     /* bleu */
  --accent-2: #8bb7ff;   /* bleu clair */
  --radius: 18px;
  --shadow: 0 18px 60px rgba(12,18,35,.12);
  --shadow-soft: 0 12px 36px rgba(12,18,35,.08);
  --max: 1100px;
  --header-h: 100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

h1{
  font-size: 36px;
  letter-spacing: -0.4px;
  line-height: 1.15;
}

h2{
  font-size: 28px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

h3{
  font-size: 22px;
  line-height: 1.3;
}

html, body { height: 100%; }

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);


  
  min-height:100vh;

  /* ✅ important */
  display:flex;
  flex-direction:column;
}

.site-main{
  /* ✅ pousse le footer en bas */
  flex:1;
  padding:32px 0 64px;
}



a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
   z-index: var(--z-header);
  height:var(--header-h);
  backdrop-filter:saturate(180%) blur(16px);
  background: rgba(255,255,255,.75);
  border-bottom:1px solid var(--stroke);
}


.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  height:100%; 
}
.brand:hover{border-color:var(--stroke); background:rgba(255,255,255,.03)}
.brand-mark{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(167,199,255,.35), rgba(255,214,167,.22));
  border:1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  font-weight:800;
}
.brand-name{font-weight:700; letter-spacing:.2px}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin:4px auto;
  border-radius:2px;
  opacity:.9;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-link{
  padding:10px 12px;
  border-radius:14px;
  font-weight:600;
  color:var(--muted);
  border:1px solid transparent;
}
.nav-link:hover{color:var(--text); background:rgba(255,255,255,.04); border-color:var(--stroke)}
.nav-link.is-active{color:var(--text); background:rgba(255,255,255,.05); border-color:var(--stroke)}

.nav-sep{width:1px; height:22px; background:var(--stroke); margin:0 6px}

.nav-dropdown{position:relative}
.nav-link--dropdown{display:flex; align-items:center; gap:6px}
.chev{width:18px; height:18px; opacity:.85}

.dropdown-panel{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  padding:10px;
  border-radius:18px;
  background: rgba(255,255,255,.92);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  display:none;
}

.nav-dropdown{ position:relative; }
.nav-dropdown::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:10px;      /* zone tampon */
}


.nav-dropdown:hover .dropdown-panel{display:block}
.dropdown-link{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
}
.dropdown-link:hover{
  color:var(--text);
  background:rgba(47,107,255,.08); /* léger bleu au hover */
}

.dropdown-link.is-cta{
  position:relative;
  padding:12px 12px 12px 16px;
  border-radius:14px;

  color:var(--text);
  font-weight:600;
  text-decoration:none;

  background:rgba(0,0,0,.02);
}

.dropdown-link.is-cta::before{
  content:"";
  position:absolute;
  left:8px;
  top:10px;
  bottom:10px;
  width:3px;
  border-radius:3px;
  background:#2f6bff;
  opacity:.9;
}

.dropdown-link.is-cta:hover{
  background:rgba(47,107,255,.08);
}

.site-main{padding:32px 0 64px}

.hero{
  padding:34px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 860px){
  .hero-grid{grid-template-columns:1fr}
}

.card{
  background: var(--panel);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.card-inner{padding:22px}
.card-title{
  margin:0 0 10px;
  font-weight:700;
}

.card-sub{
  color:var(--muted);
  line-height:1.55;
  text-align: justify;
  hyphens: auto;
}


.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}

.actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}
.btn:hover{ background: rgba(15,18,28,.06);}
.btn-primary{
  background: linear-gradient(180deg, rgba(47,107,255,.98), rgba(47,107,255,.90));
  border-color: rgba(47,107,255,.35);
  color: white;
}
.btn-primary:hover{
  background: rgba(47,107,255,.92);
}
.btn-small{padding:10px 12px; border-radius:14px; font-weight:700}

.section{
  padding:8px 0;
}
.section-title{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-.2px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 960px){ .grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 640px){ 
  .grid{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:block}
  .nav.is-open{
      display:flex;
      position:fixed;
      top:var(--header-h);
      left:0; right:0;

      /* ✅ iOS Safari: viewport dynamique (barres qui bougent) */
      height: calc(100dvh - var(--header-h));
      overflow-y:auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;

      padding:14px;
      padding-bottom: calc(14px + env(safe-area-inset-bottom));

      background: rgba(15,16,22,.92);
      border-bottom:1px solid var(--stroke);
      flex-direction:column;
      align-items:stretch;
      gap:8px;
      z-index: var(--z-nav); /* ✅ au-dessus */
    }

    /* Fallback vieux Safari iOS */
    @supports not (height: 100dvh){
      .nav.is-open{ height: calc(100vh - var(--header-h)); }
    }
  .nav-sep{display:none}
  .nav-dropdown .dropdown-panel{
    position:static;
    display:block;
    margin-top:6px;
    background: rgba(255,255,255,.03);
    box-shadow:none;
  }
  .nav.is-open .nav-link{
      color: rgba(255,255,255,.92);
    }
    .nav.is-open .nav-link:hover{
      color: #fff;
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.14);
    }
    .nav.is-open .nav-link.is-active{
      color:#fff;
      background: rgba(47,107,255,.22);
      border-color: rgba(47,107,255,.35);
    }

    /* FIX dropdown items en mobile (sur fond très sombre) */
    .nav.is-open .dropdown-link{
      color: rgba(255,255,255,.88);
    }
    .nav.is-open .dropdown-link:hover{
      color:#fff;
      background: rgba(255,255,255,.08);
    }
}


.visit-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.kbd{
  padding:4px 8px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}

.form{
  display:grid;
  gap:10px;
}
.field{
  display:grid;
  gap:6px;
}
label{
  font-weight:700;
  color: var(--text);
}

input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.95);
  color: var(--text);
  outline:none;
}

textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{border-color: rgba(167,199,255,.5)}

.notice{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  line-height:1.55;
}
.notice-ok{ border-color: rgba(167,199,255,.45); color: var(--text); }
.notice-warn{ border-color: rgba(255,214,167,.55); color: var(--text); }


.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}
.table th{
  text-align:left;
  font-size:12px;
  color: var(--muted);
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  padding:0 10px 6px;
}
.table td{
  padding:12px 10px;
  background: rgba(255,255,255,.04);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}
.table tr td:first-child{
  border-left:1px solid var(--stroke);
  border-top-left-radius:14px;
  border-bottom-left-radius:14px;
}
.table tr td:last-child{
  border-right:1px solid var(--stroke);
  border-top-right-radius:14px;
  border-bottom-right-radius:14px;
}

.muted{
  color: var(--muted);
  text-align: justify;
}
.small{font-size:13px}
.hr{height:1px; background:var(--stroke); margin:14px 0}

/* ===============================
   FOOTER – Version Gris clair premium
================================ */

.site-footer{
  border-top: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    #f4f6f9 0%,
    #eef1f5 100%
  );
  padding: 40px 0 30px;
  color: #1a2230;
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-brand{
  font-weight:800;
  font-size:18px;
  letter-spacing:.3px;
  color:#0f121c;
}

.footer-links{
  display:flex;
  gap:18px;
  font-weight:600;
  margin-top:6px;
}

.footer-links a{
  color: rgba(15,18,28,.75);
  transition: all .2s ease;
}

.footer-links a:hover{
  color: var(--accent);
}

.footer-right{
  display:flex;
  align-items:center;
  color: rgba(15,18,28,.65);
  font-weight:600;
}

.footer-center{
  margin-top:10px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.footer-center img{
  max-width:150px;
  height:auto;
  opacity:.75;
  transition:opacity .2s ease, transform .2s ease;
}

.footer-center a:hover img{
  opacity:1;
  transform: translateY(-2px);
}

/* Bouton contact légèrement adouci dans footer */
.site-footer .btn-primary{
  background: var(--accent);
  border-color: rgba(47,107,255,.35);
}

.site-footer .btn-primary:hover{
  background: #2558d8;
}


.visit-img{
  height:220px;
  width:100%;
  overflow:hidden;
  border-bottom:1px solid var(--stroke);
  background:
    radial-gradient(420px 220px at 30% 30%, rgba(167,199,255,.22), transparent 60%),
    radial-gradient(420px 260px at 80% 40%, rgba(255,214,167,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.visit-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

@media (max-width:640px){
  .visit-img{ height:180px; }
}




/* Optionnel: petit resserrage */
.page-contact .form{ gap:12px; }
.page-contact .field{ gap:8px; }


/* ===== Téléphone : indicatif + numéro sur UNE ligne ===== */
.page-contact .phone-row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:nowrap; /* ߔᠦorce une seule ligne */
}

.page-contact .phone-code{
  width:100px;          /* largeur stable */
  flex:0 0 100px;
}

.page-contact .phone-number{
  flex:1 1 auto;        /* prend tout l’espace restant */
  min-width:0;          /* ߔ᠃鶩te le wrap Safari */
}

/* Mobile : reste sur une ligne, mais respire */
@media (max-width:640px){
  .page-contact .phone-code{
    width:100px;
    flex:0 0 100px;
  }
}
/* Message de statut du formulaire contact */
#contactStatus{
  color: var(--text);   /* noir / texte principal */
  font-weight: 800;     /* bien gras */
}
.footer-center{
  margin-top:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.footer-center img{
  max-width:150px;   /* taille volontairement discrète */
  height:auto;
  opacity:.9;
  transition:opacity .2s ease;
}

.footer-center a:hover img{
  opacity:1;
}




.brand-logo{
  max-height: 100px;     /* taille raisonnable pour un header */
    max-width: 250px; 
  width: auto;
  display: block;
}

/* ===============================
   PANORAMA TOP PAGE
=============================== */

.front-panorama {
  margin-top: calc(-0.5 * var(--header-h));
  width: 100%;
 height: 42vh;          /* panoramique, pas un mur */
 
  min-height: 260px;
  overflow: hidden;
  background: white;
}

.front-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

/* Transition douce vers le contenu */
.front-panorama::after {
  content: "";
  display: block;
  height: 42px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0)
  );
}
.front-panorama img {
  filter: brightness(0.92) contrast(1.02);
}
ul.muted, ol.muted{ text-align:left; }

/* ===============================
   Photo ronde – Version Premium Hover
================================ */

.hero-about{
  display:flex;
  gap:28px;
  align-items:flex-start;
}

.hero-text{
  flex:1;
  min-width:0;
}


.hero-photo{
  flex:0 0 140px;
  display:flex;
  justify-content:center;
  position:relative;
}

.hero-photo img{
  width:140px;
  height:140px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid white;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transition: 
    transform .35s cubic-bezier(.2,.6,.2,1),
    box-shadow .35s ease,
    filter .35s ease;
}

/* Effet subtil */
.hero-photo:hover img{
  transform: scale(1.045);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  filter: brightness(1.03) contrast(1.03);
}

/* Halo léger au hover */
.hero-photo::after{
  content:"";
  position:absolute;
  width:160px;
  height:160px;
  border-radius:50%;

  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}

.hero-photo:hover::after{
  opacity:1;
}

/* Mobile */
@media (max-width: 860px){
  .hero-about{
    flex-direction:column;
    align-items:center;
  }

  .hero-photo{
    order:-1;
  }

  .hero-photo img{
    width:120px;
    height:120px;
  }

  .hero-photo::after{
    width:140px;
    height:140px;
  }
}
/* ===============================
   H1 hors card – Version Premium (corrigée)
================================ */

.section .container > h1{
  text-align:center;
  font-size:42px;
  font-weight:800;
  letter-spacing:-0.6px;
  line-height:1.1;
  margin: 0 0 28px;
}

.section .container > h1::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  margin:14px auto 0;
  border-radius:3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity:.6;
}
/* ===============================
   FOOTER – polish premium (override)
================================ */

.site-footer{
  padding: 44px 0 34px;
}

.footer-inner{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items:start;
}




.footer-text{
  margin: 10px 0 0;
  max-width: 440px;
  line-height: 1.6;
}

.footer-links{
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-cta{
  margin-top: 14px;
}


.footer-kicker{
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 12px;
  color: rgba(15,18,28,.55);
  text-transform: uppercase;
}

.footer-logos{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px 24px;
  flex-wrap:wrap;   /* ← c’est ça qui permet le retour à la ligne */
}

.footer-logos img{
  height: 55px;
  width: auto;
  object-fit: contain;
}


.footer-logos a:hover img{
  opacity: 1;
  transform: translateY(-2px);
  filter: grayscale(0%);
}

/* Colonne droite */
.footer-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:space-between; /* ou flex-end selon effet voulu */
  height:100%;
}



.footer-id{
  text-align: right;
  line-height: 1.55;
}

.footer-name{
  display: inline-block;
  font-size: 16px;
  letter-spacing: .2px;
}

.footer-meta{
  color: rgba(15,18,28,.70);
  font-weight: 650;
}

.footer-copy{
  margin-top: 2px;
}

/* Petit séparateur visuel léger (sans ajouter de HTML) */
.footer-inner > div{
  position: relative;
}

@media (min-width: 980px){
  .footer-left::after,
  .footer-center::after{
    content:"";
    position:absolute;
    top: 6px;
    right: -18px;
    width: 1px;
    height: 140px;
    background: rgba(15,18,28,.10);
  }
}

/* Mobile : tout respire, alignements plus naturels */
@media (max-width: 640px){
  .footer-right{
    align-items: flex-start;
  }
  .footer-id{
    text-align: left;
  }
  .footer-left, .footer-text{
    max-width: 100%;
  }
}
@media (max-width: 860px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-right{
    align-items:flex-start;
  }
}


/* Conteneur plein écran qui centre le triptyque */
.front-triptych {
  width: 100%;
  display: flex;
  justify-content: center; /* centre le bloc des 3 images */
  overflow: hidden;
}

.triptych {
  display: flex;
  gap: 6px; /* aucune séparation entre les images */
}

.triptych img {
  height: 200px;
  width: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px; /* léger arrondi élégant */
}
@media (max-width: 640px){
  .front-triptych .triptych img{ display:none; }
  .front-triptych .triptych img:nth-child(2){ display:block; width:100%; padding:2px;height:180px; object-fit:cover; border-radius:12px; }
}

/* =========================================
   MOBILE: header toujours visible (force fixed)
   ========================================= */
@media (max-width: 640px){

  /* 1) on remplace sticky par fixed */
  .site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }

  /* 2) on évite que le contenu passe sous le header */
  .site-main{
    padding-top: calc(var(--header-h) + 16px);
  }

  /* 3) ton panorama remonte sous le header (margin négatif).
        En mobile fixed, on désactive ce comportement */
  .front-panorama{
    margin-top: 0;
  }
}
/* ===== TOP OFFICIAL BAR ===== */

.top-official-bar {
  width: 100%;
  background: #2b2f33; /* gris foncé élégant */
  color: #ffffff;
  font-size: 0.80rem;
  letter-spacing: 0.5px;
}

.top-official-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-official-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.official-badge {
  font-size: 0.8rem;
}

.top-official-right {
  display: flex;
  align-items: center;
    margin-left:auto; 
}

/* Drapeau français en CSS pur */
.flag-fr {
  width: 24px;
  height: 16px;
  display: inline-block;
  background: linear-gradient(
    to right,
    #0055A4 0%,
    #0055A4 33.33%,
    #ffffff 33.33%,
    #ffffff 66.66%,
    #EF4135 66.66%,
    #EF4135 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
}
/* ===== OFFICIAL BADGE IMAGE ===== */

.official-badge-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
  border-radius: 50%;
  
  /* Liseré blanc léger */
  box-shadow: 0 0 0 2px #ffffff;
  
  /* Optionnel : légère élévation premium */
  background: #ffffff;
}
@media (max-height: 520px) and (pointer: coarse){
  .nav{display:none}
  .nav-toggle{display:block}

  .nav.is-open{
    display:flex;
    position:fixed;
    top:var(--header-h);
    left:0; right:0;
    height: calc(100dvh - var(--header-h));
    overflow-y:auto;
    -webkit-overflow-scrolling: touch;
    padding:14px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    background: rgba(15,16,22,.92);
    border-bottom:1px solid var(--stroke);
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    z-index: var(--z-nav);
  }

  @supports not (height: 100dvh){
    .nav.is-open{ height: calc(100vh - var(--header-h)); }
  }

  .nav-sep{display:none}

  .nav-dropdown .dropdown-panel{
    position:static;
    display:block;
    margin-top:6px;
    background: rgba(255,255,255,.03);
    box-shadow:none;
  }

  .nav.is-open .nav-link{ color: rgba(255,255,255,.92); }
  .nav.is-open .dropdown-link{ color: rgba(255,255,255,.88); }
}
.wa-link {
 
  align-items: center;
  text-decoration: none;
}

.wa-icon {
  width: 3.2em;
  height: 3.2em;
  vertical-align: bottom;
  transform: translateY(10px); /* micro-ajustement visuel */
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hover */
.wa-link:hover .wa-icon {
  transform: scale(1.15);
  opacity: 0.8;
}
/* Images intégrées dans le contenu des pages visites */
.content-figure {
  margin: 22px auto;
  max-width: 720px;
}

.content-img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.content-caption {
  margin-top: 8px;
  text-align: center;
  font-size: 0.92rem;
  color: #666;
}

@media (max-width: 768px) {
  .content-figure {
    max-width: 100%;
    margin: 18px auto;
  }

  .content-img {
    max-width: 100%;
    border-radius: 12px;
  }
}
.img-float-right {
  float: right;
  width: 320px;
  margin: 8px 0 16px 24px;
  border-radius: 12px;
}

.img-float-left {
  float: left;
  width: 320px;
  margin: 8px 24px 16px 0;
  border-radius: 12px;
}

/* important : éviter les bugs de layout */
.clear {
  clear: both;
}
/* FAQ */
.section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.4em;
}

.float-figure {
  float: right;
  width: 440px;
  margin: 0 0 12px 20px;
}

.float-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.float-figure figcaption {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 6px;
  color: rgba(15,18,28,.7);
  text-align: center;
}

/* Version gauche si besoin */
.float-left {
  float: left;
  margin: 0 20px 12px 0;
}

/* Responsive : on casse le float */
@media (max-width: 768px) {
  .float-figure,
  .float-left {
    float: none;
    width: 100%;
    margin: 0 0 16px 0;
  }
}