/* ================= LIVRE BLANC (lead magnet) ================= */
.livre-blanc__grille {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 56px;
  align-items: center;
}

/* --- Visuel : cadre penché + sticker débordant --- */
.livre-blanc__visuel { position: relative; }

.livre-blanc__cadre {
  border-radius: var(--r-media);
  overflow: hidden;
  transform: rotate(-3deg);
  box-shadow: 0 30px 55px -24px rgba(30, 31, 32, 0.30);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.livre-blanc__cadre img { width: 100%; }
.livre-blanc__visuel:hover .livre-blanc__cadre { transform: rotate(-1deg); }

.livre-blanc__sticker {
  top: -16px;
  left: -20px;
  transform: rotate(-8deg);
}

/* --- Contenu --- */
.livre-blanc .entete--gauche { margin-bottom: 18px; }

.livre-blanc__para {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--gris);
  max-width: 520px;
  margin-bottom: 30px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .livre-blanc__grille { gap: 40px; }
}

@media (max-width: 767px) {
  .livre-blanc__grille { grid-template-columns: 1fr; gap: 46px; }
  .livre-blanc__visuel { max-width: 420px; margin: 0 auto; }
  .livre-blanc__sticker { left: -10px; }
}

@media (max-width: 479px) {
  .livre-blanc__sticker { font-size: 22px; top: -12px; left: -6px; }
}
