/* =========================================================
   Radium Digital - WYSIWYG Service Content
   Version Phase 1
   Scope principal : rd-wysiwyg-
   Usage : contenu intérieur uniquement, sans hero/footer
   ========================================================= */

/* =========================
   Wrapper principal
   ========================= */

.rd-wysiwyg-service {
  --rdw-orange: #ff9600;
  --rdw-orange-dark: #e58200;
  --rdw-orange-soft: #fff3e2;

  --rdw-dark: #1f2933;
  --rdw-text: #2f3440;
  --rdw-muted: #687385;

  --rdw-blue: #285ea9;
  --rdw-blue-soft: #eef5ff;

  --rdw-bg: #ffffff;
  --rdw-bg-soft: #f8fafc;
  --rdw-border: rgba(17, 24, 39, 0.10);
  --rdw-border-soft: rgba(17, 24, 39, 0.07);

  --rdw-radius-sm: 14px;
  --rdw-radius-md: 18px;
  --rdw-radius-lg: 24px;
  --rdw-radius-xl: 34px;

  --rdw-shadow-soft: 0 18px 45px rgba(17, 24, 39, 0.07);
  --rdw-shadow-medium: 0 24px 65px rgba(17, 24, 39, 0.11);

  max-width: 100%;
  margin: 0 auto;
  color: var(--rdw-text);
  font-family: inherit;
  margin-bottom: 100px;
}

/* Sécurité simple pour éviter les débordements */
.rd-wysiwyg-service *,
.rd-wysiwyg-service *::before,
.rd-wysiwyg-service *::after {
  box-sizing: border-box;
}

/* =========================
   Blocs de contenu classiques
   ========================= */

.rd-wysiwyg-block {
  position: relative;
  overflow: hidden;
  margin: 0 0 34px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--rdw-border-soft);
  border-radius: var(--rdw-radius-xl);
  background: var(--rdw-bg);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.045);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.rd-wysiwyg-block:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 150, 0, 0.24);
  box-shadow: var(--rdw-shadow-medium);
}

.rd-wysiwyg-block-soft {
  background:
    radial-gradient(circle at top right, rgba(255, 150, 0, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.rd-wysiwyg-block-accent {
  background:
    linear-gradient(135deg, rgba(255, 150, 0, 0.09), rgba(255, 255, 255, 1) 58%),
    #ffffff;
}

.rd-wysiwyg-block-accent::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: rgba(255, 150, 0, 0.08);
  transform: rotate(10deg);
  pointer-events: none;
}

/* =========================
   H2 / H4 classiques
   ========================= */

.rd-wysiwyg-h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.rd-wysiwyg-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 5px;
  height: 1.08em;
  border-radius: 999px;
  background: var(--rdw-orange);
}

.rd-wysiwyg-h4 {
  position: relative;
  z-index: 1;
  margin: 22px 0 10px;
  color: var(--rdw-orange-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
}

/* =========================
   Paragraphes classiques
   ========================= */

.rd-wysiwyg-p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--rdw-text);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.82;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.rd-wysiwyg-p:last-child {
  margin-bottom: 0;
}

.rd-wysiwyg-lead {
  margin: 0 0 24px;
  color: var(--rdw-text);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
  font-weight: 300;
  letter-spacing: 0.015em;
}

.rd-wysiwyg-muted {
  color: var(--rdw-muted);
}

.rd-wysiwyg-strong {
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
}

/* =========================
   Bloc spécial : H3 gauche + paragraphe droite
   ========================= */

.rd-wysiwyg-split-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
  margin: clamp(42px, 6vw, 78px) 0;
}

.rd-wysiwyg-split-title,
.rd-wysiwyg-split-content {
  min-width: 0;
}

/* Variante avec fond très léger */
.rd-wysiwyg-split-row-soft {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--rdw-radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 150, 0, 0.10), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fffaf3 100%);
}

/* Variante avec trait sous le titre */
.rd-wysiwyg-split-row-line .rd-wysiwyg-split-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--rdw-orange);
}

.rd-wysiwyg-split-title {
  position: relative;
}

/* Style principal du H3 inspiré de ton site */
.rd-wysiwyg-split-h3 {
  margin: 0;
  max-width: 100%;
  color: var(--rdw-orange);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 52px);
  line-height: 1.24;
  font-weight: 300;
  letter-spacing: 0.012em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}


/* Partie mise en avant dans le H3 */
.rd-wysiwyg-split-h3 strong,
.rd-wysiwyg-split-h3 span {
  display: block;
  margin-bottom: 4px;
  color: var(--rdw-orange);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.005em;
}

/* Si on veut garder le strong inline dans certains titres */
.rd-wysiwyg-split-h3.rd-wysiwyg-split-h3-inline strong,
.rd-wysiwyg-split-h3.rd-wysiwyg-split-h3-inline span {
  display: inline;
  margin-bottom: 0;
}

.rd-wysiwyg-split-content {
  max-width: 850px;
}

.rd-wysiwyg-split-p {
  margin: 0;
  color: var(--rdw-text);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.58;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.rd-wysiwyg-split-p strong,
.rd-wysiwyg-split-p b {
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
}

/* Variante texte plus compact pour paragraphes longs */
.rd-wysiwyg-split-row-compact .rd-wysiwyg-split-p {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.66;
}

/* Variante plus corporate, moins typographique */
.rd-wysiwyg-split-row-corporate .rd-wysiwyg-split-h3 {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.22;
}

.rd-wysiwyg-split-row-corporate .rd-wysiwyg-split-p {
  font-size: clamp(16.5px, 1.25vw, 19px);
  line-height: 1.78;
  letter-spacing: 0.01em;
}

/* Variante pour mettre H3 à droite - Reverse H3 + P */

.rd-wysiwyg-split-row-compact .rd-wysiwyg-split-h3 {
  font-size: clamp(34px, 3.7vw, 46px);
  line-height: 1.22;
}

.rd-wysiwyg-split-row-compact .rd-wysiwyg-split-p {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
}

.rd-wysiwyg-split-row-reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
}

.rd-wysiwyg-split-row-reverse .rd-wysiwyg-split-title {
  order: 2;
}

.rd-wysiwyg-split-row-reverse .rd-wysiwyg-split-content {
  order: 1;
}

.rd-wysiwyg-split-row-reverse.rd-wysiwyg-split-row-line .rd-wysiwyg-split-title::after {
  margin-left: auto;
}

.rd-wysiwyg-split-row-reverse .rd-wysiwyg-split-h3 {
  text-align: right;
}

@media (max-width: 920px) {
  .rd-wysiwyg-split-row,
  .rd-wysiwyg-split-row-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 44px 0;
  }

  .rd-wysiwyg-split-row-reverse .rd-wysiwyg-split-title,
  .rd-wysiwyg-split-row-reverse .rd-wysiwyg-split-content {
    order: initial;
  }

  .rd-wysiwyg-split-row-reverse .rd-wysiwyg-split-h3 {
    text-align: left;
  }

  .rd-wysiwyg-split-row-reverse.rd-wysiwyg-split-row-line .rd-wysiwyg-split-title::after {
    margin-left: 0;
  }

  .rd-wysiwyg-split-h3 {
    font-size: clamp(36px, 8vw, 50px);
    line-height: 1.18;
  }

  .rd-wysiwyg-split-p {
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0.01em;
  }
}

@media (max-width: 520px) {
  .rd-wysiwyg-split-h3 {
    font-size: 34px;
    line-height: 1.18;
  }

  .rd-wysiwyg-split-row-compact .rd-wysiwyg-split-h3 {
    font-size: 31px;
  }
}




/* =========================
   Listes
   ========================= */

.rd-wysiwyg-list,
.rd-wysiwyg-ol {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.rd-wysiwyg-li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--rdw-radius-md);
  background: rgba(255, 255, 255, 0.90);
  color: var(--rdw-text);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 300;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.035);
}

.rd-wysiwyg-li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rdw-orange);
  box-shadow: 0 0 0 5px rgba(255, 150, 0, 0.12);
}

.rd-wysiwyg-ol {
  counter-reset: rdw-counter;
}

.rd-wysiwyg-ol .rd-wysiwyg-li {
  counter-increment: rdw-counter;
}

.rd-wysiwyg-ol .rd-wysiwyg-li::before {
  content: counter(rdw-counter);
  top: 13px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rdw-orange);
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  box-shadow: none;
}

/* =========================
   Liens
   ========================= */

.rd-wysiwyg-link {
  color: var(--rdw-orange-dark);
  text-decoration: none;
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 150, 0, 0.35);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.rd-wysiwyg-link:hover {
  color: var(--rdw-orange);
  border-color: currentColor;
}

/* =========================
   Images / figures
   ========================= */

.rd-wysiwyg-figure {
  position: relative;
  margin: 32px 0;
  overflow: hidden;
  border-radius: var(--rdw-radius-xl);
  background: #ffffff;
}

.rd-wysiwyg-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: cover;
}

.rd-wysiwyg-figure-soft {
  padding: 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--rdw-shadow-soft);
}

.rd-wysiwyg-figure-soft .rd-wysiwyg-img {
  border-radius: calc(var(--rdw-radius-xl) - 10px);
}

.rd-wysiwyg-figure-mask {
  border-radius: 36px 36px 36px 8px;
  box-shadow: var(--rdw-shadow-soft);
}

.rd-wysiwyg-figure-floating {
  padding: 10px;
  border: 1px solid rgba(255, 150, 0, 0.20);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 150, 0, 0.10), rgba(255, 255, 255, 0.96));
  box-shadow: var(--rdw-shadow-soft);
  transform: rotate(-0.6deg);
}

.rd-wysiwyg-figure-floating .rd-wysiwyg-img {
  border-radius: 24px;
  transform: rotate(0.6deg);
}

.rd-wysiwyg-figure-wide {
  margin-left: clamp(0px, -3vw, -36px);
  margin-right: clamp(0px, -3vw, -36px);
}

.rd-wysiwyg-caption {
  margin: 10px 4px 0;
  color: var(--rdw-muted);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 300;
}

/* =========================
   Bloc texte + image
   ========================= */

.rd-wysiwyg-media-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  margin: 38px 0;
}

.rd-wysiwyg-media-row .rd-wysiwyg-figure {
  margin: 0;
}

.rd-wysiwyg-media-row-reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.rd-wysiwyg-media-row-reverse .rd-wysiwyg-media-content {
  order: 2;
}

.rd-wysiwyg-media-row-reverse .rd-wysiwyg-figure {
  order: 1;
}

/* =========================
   Citations / notes
   ========================= */

.rd-wysiwyg-quote {
  position: relative;
  margin: 30px 0;
  padding: 26px 30px;
  border-left: 5px solid var(--rdw-orange);
  border-radius: 0 24px 24px 0;
  background: var(--rdw-orange-soft);
  color: var(--rdw-dark);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

.rd-wysiwyg-quote strong {
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.rd-wysiwyg-note {
  margin: 26px 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 150, 0, 0.20);
  border-radius: var(--rdw-radius-lg);
  background: var(--rdw-orange-soft);
}

.rd-wysiwyg-note-title {
  margin: 0 0 8px;
  color: var(--rdw-orange-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

/* =========================
   Tableaux
   ========================= */
/* =========================
   Tableaux corrigés
   Caption + mobile scroll
   ========================= */

.rd-wysiwyg-table-block {
  width: 100%;
  max-width: 100%;
  margin: 30px 0;
  min-width: 0;
}

.rd-wysiwyg-table-caption {
  margin: 0 0 12px;
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.rd-wysiwyg-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rdw-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.05);
}

.rd-wysiwyg-table {
  width: 100%;
  min-width: 760px;
  width: max-content;
  border-collapse: collapse;
}

.rd-wysiwyg-table th,
.rd-wysiwyg-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  text-align: left;
  vertical-align: top;
  color: var(--rdw-text);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.rd-wysiwyg-table th {
  background: var(--rdw-orange-soft);
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.rd-wysiwyg-table tr:last-child td {
  border-bottom: 0;
}

.rd-wysiwyg-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.rd-wysiwyg-table-wrap::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 999px;
}

.rd-wysiwyg-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 150, 0, 0.55);
  border-radius: 999px;
}

@media (max-width: 640px) {
  .rd-wysiwyg-table-block {
    margin: 24px 0;
  }

  .rd-wysiwyg-table-caption {
    font-size: 17px;
    line-height: 1.4;
  }

  .rd-wysiwyg-table-wrap {
    border-radius: 18px;
  }

  .rd-wysiwyg-table {
    min-width: 720px;
  }

  .rd-wysiwyg-table th,
  .rd-wysiwyg-table td {
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.55;
  }
}

/* =========================
   CTA intérieur optionnel
   ========================= */

.rd-wysiwyg-cta {
  position: relative;
  overflow: hidden;
  margin: 40px 0 0;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--rdw-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.20), transparent 34%),
    linear-gradient(135deg, var(--rdw-orange), #111827);
  color: #ffffff;
  box-shadow: var(--rdw-shadow-soft);
}

.rd-wysiwyg-cta-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rd-wysiwyg-cta-text {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  font-weight: 300;
}

.rd-wysiwyg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.rd-wysiwyg-button:hover {
  transform: translateY(-2px);
  color: var(--rdw-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

/* =========================
   Compatibilité temporaire WYSIWYG brut
   À utiliser uniquement si le HTML n’est pas encore transformé
   ========================= */

.rd-wysiwyg-service.rd-wysiwyg-raw h2 {
  position: relative;
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 800;
}

.rd-wysiwyg-service.rd-wysiwyg-raw h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 5px;
  height: 1.08em;
  border-radius: 999px;
  background: var(--rdw-orange);
}

.rd-wysiwyg-service.rd-wysiwyg-raw p {
  margin: 0 0 16px;
  color: var(--rdw-text);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.82;
  font-weight: 300;
}

.rd-wysiwyg-service.rd-wysiwyg-raw strong,
.rd-wysiwyg-service.rd-wysiwyg-raw b {
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 920px) {
  .rd-wysiwyg-split-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 44px 0;
  }

  .rd-wysiwyg-split-h3 {
    font-size: clamp(38px, 8vw, 52px);
    line-height: 1.16;
  }

  .rd-wysiwyg-split-p {
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0.01em;
  }

  .rd-wysiwyg-media-row,
  .rd-wysiwyg-media-row-reverse {
    grid-template-columns: 1fr;
  }

  .rd-wysiwyg-media-row-reverse .rd-wysiwyg-media-content,
  .rd-wysiwyg-media-row-reverse .rd-wysiwyg-figure {
    order: initial;
  }
}

@media (max-width: 640px) {
  .rd-wysiwyg-service {
    max-width: 100%;
  }

  .rd-wysiwyg-block {
    margin-bottom: 24px;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .rd-wysiwyg-split-row-soft {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .rd-wysiwyg-h2 {
    padding-left: 14px;
    font-size: 25px;
  }

  .rd-wysiwyg-split-h3 {
    font-size: 38px;
    line-height: 1.16;
  }

  .rd-wysiwyg-split-h3 strong,
  .rd-wysiwyg-split-h3 span {
    margin-bottom: 6px;
  }

  .rd-wysiwyg-p,
  .rd-wysiwyg-lead,
  .rd-wysiwyg-split-p {
    font-size: 16px;
    line-height: 1.72;
  }

  .rd-wysiwyg-li {
    padding: 13px 14px 13px 42px;
  }

  .rd-wysiwyg-figure,
  .rd-wysiwyg-figure-soft,
  .rd-wysiwyg-figure-floating,
  .rd-wysiwyg-figure-mask {
    border-radius: 22px;
  }

  .rd-wysiwyg-table {
    min-width: 620px;
  }
}

@media (max-width: 420px) {
  .rd-wysiwyg-split-h3 {
    font-size: 34px;
  }

  .rd-wysiwyg-split-p {
    font-size: 15.8px;
  }

  .rd-wysiwyg-cta {
    padding: 26px 18px;
  }
}


/* =========================
   Table mobile scroll amélioré
   ========================= */

.rd-wysiwyg-table-block {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 30px 0;
}

.rd-wysiwyg-table-caption {
  margin: 0 0 12px;
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.rd-wysiwyg-table-scroll-hint {
  display: none;
  margin: 0 0 8px;
  color: var(--rdw-muted);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.rd-wysiwyg-table-scroll-hint::before {
  content: "← ";
}

.rd-wysiwyg-table-scroll-hint::after {
  content: " →";
}

.rd-wysiwyg-table-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rdw-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.05);
}

.rd-wysiwyg-table {
  width: max-content;
  min-width: 760px;
  border-collapse: collapse;
}

.rd-wysiwyg-table th,
.rd-wysiwyg-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  text-align: left;
  vertical-align: top;
  color: var(--rdw-text);
  font-family: "Zona Thin", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.rd-wysiwyg-table th {
  background: var(--rdw-orange-soft);
  color: var(--rdw-dark);
  font-family: "Zona Bold", "Zona", "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.rd-wysiwyg-table tr:last-child td {
  border-bottom: 0;
}

.rd-wysiwyg-table-wrap::-webkit-scrollbar {
  height: 9px;
}

.rd-wysiwyg-table-wrap::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 999px;
}

.rd-wysiwyg-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 150, 0, 0.65);
  border-radius: 999px;
}

@media (max-width: 640px) {
  .rd-wysiwyg-service {
    max-width: 100%;
    overflow-x: hidden;
  }

  .rd-wysiwyg-table-block {
    margin: 24px 0;
  }

  .rd-wysiwyg-table-caption {
    font-size: 17px;
    line-height: 1.4;
  }

  .rd-wysiwyg-table-scroll-hint {
    display: block;
  }

  .rd-wysiwyg-table-wrap {
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  }

  .rd-wysiwyg-table {
    min-width: 760px;
  }

  .rd-wysiwyg-table th,
  .rd-wysiwyg-table td {
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.55;
  }
}