.lb-deonto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 56px;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: var(--radius-xl);
}

.lb-deonto-text {
  flex: 1;
  min-width: 320px;
}

.lb-deonto .lb-ctarow {
  flex-shrink: 0;
  justify-content: flex-start;
  margin-top: 0;
}

.lb-h2dark {
  max-width: 640px;
  margin-top: 20px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

.lb-em3 {
  color: var(--color-cyan);
  font-style: normal;
  font-weight: 600;
}

.lb-lededark {
  max-width: 580px;
  margin-top: 18px;
  color: #fffefbb8;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

.lb-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 56px;
}

.lb-stat {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.lb-statnum {
  color: var(--color-teal);
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}

/* Valeur textuelle (« Quelques secondes ») plutôt que chiffrée : plus petite
   pour tenir sur une ligne, même hauteur de ligne que .lb-statnum pour que
   les libellés restent alignés entre les trois stats. */
.lb-statnum--word {
  font-size: 32px;
  line-height: 46px;
}

.lb-statlab {
  margin-top: 10px;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 14px;
}

@media (max-width: 640px) {
  .lb-deonto {
    padding: 36px 24px;
  }

  /* Desktop : texte (min-width 320) et boutons (flex-shrink 0) côte à côte.
     Sur mobile ils s'empilent, et sans ça la rangée de boutons garde sa
     largeur maximale et fait déborder toute la page. */
  .lb-deonto-text {
    min-width: 0;
  }

  .lb-deonto .lb-ctarow {
    flex-shrink: 1;
    width: 100%;
  }

  .lb-h2dark {
    font-size: 26px;
  }
}
