.elementor-6703 .elementor-element.elementor-element-349b5e95{text-align:center;}.elementor-6703 .elementor-element.elementor-element-6d0959c1{font-size:18px;}
/* Start custom CSS for image, class: .elementor-element-670d87e3 *//* Style image type "carte flottante" */
.elementor-widget-image img {
  display: block;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  margin: 2rem auto;
  transition: transform .3s ease, box-shadow .3s ease;
}
.elementor-widget-image img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}/* End custom CSS */


/* Start custom CSS for column, class: .elementor-element-6aa85bc6 *//* =========================
   TITRES PRINCIPAUX (H1)
   ========================= */
.elementor-6703 .elementor-element.elementor-element-6aa85bc6 h1 {
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color: #0b1324 !important;
  text-shadow: 0 10px 24px rgba(2,6,23,.12);
  position: relative;
  display: inline-block;
}

/* Dégradé du texte si supporté */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .elementor-6703 .elementor-element.elementor-element-6aa85bc6 h1 {
    --g1: #12336b;
    --g2: #1e40af;
    --g3: #38bdf8;
    background: linear-gradient(135deg, var(--g1), var(--g2) 55%, var(--g3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }
}

/* Barre décorative sous le titre H1 */
.elementor-6703 .elementor-element.elementor-element-6aa85bc6 h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  margin-top: .5em;
  border-radius: 999px;
  background: linear-gradient(90deg, #12336b, #1e40af, #38bdf8);
  box-shadow: 0 6px 16px rgba(2,6,23,.18);
}

/* Variante sans dégradé */
.elementor-6703 .elementor-element.elementor-element-6aa85bc6 h1.title-solid {
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  color: #0b1324 !important;
  text-shadow: 0 10px 24px rgba(2,6,23,.12);
}

/* =========================
   TYPO & CONTAINER GLOBAL
   ========================= */
body {
  font-family: "Poppins","Segoe UI",Arial,sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155; /* gris doux */
  background: linear-gradient(135deg,#f8fafc,#eef2ff);
}

.content-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2.5rem 3rem;
  border-radius: 22px;

  background: #fff;
  border: 1px solid rgba(226,232,240,0.6);

  /* Halo dégradé en shadow */
  box-shadow: 0 0 0 4px rgba(37,99,235,0.2), 
              0 0 24px rgba(147,51,234,0.25);

  transition: transform .25s ease, box-shadow .25s ease;
}
.content-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.25), 
              0 0 32px rgba(147,51,234,0.35);
}



/* =========================
   SOUS-TITRES (H2 en style badge)
   ========================= */
.section-title span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg,#2563eb,#9333ea);
  padding: 0.6rem 1rem;
  border-radius: 999px; /* pilule */
  display: inline-block;
  margin: 0.2rem 0rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  letter-spacing: .02em;
  transition: all .25s ease;
}

.section-title span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

/* =========================
   NOTES
   ========================= */
.highlight-red {
  display: block;
  background: linear-gradient(90deg,#fee2e2,#fecaca);
  border-left: 6px solid #ef4444;
  color: #991b1b !important;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
}

/* =========================
   GRILLE 3 COLONNES (Transcription / CR / Synthèse)
   ========================= */
.example-grid {
  max-width: 1100px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1.5rem;
}
@media(min-width: 992px) {
  .example-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   GRILLE 2 COLONNES (Direct vs Indirect)
   ========================= */
.example-grid-2 {
  max-width: 1000px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1.5rem;
}
@media(min-width: 992px) {
  .example-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   CARTES (communes)
   ========================= */
.example-card {
  border-radius: 18px;
  background: #fdfdfd; /* blanc cassé */
  border: 1px solid #e2e8f0;
  padding: 1.75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

/* Ligne colorée en haut */
.example-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 18px 18px 0 0;
}
.example-card.transcription::before { background: #dc2626; } /* rouge */
.example-card.compte-rendu::before { background: #2563eb; } /* bleu */
.example-card.synthese::before     { background: #16a34a; } /* vert */
.example-card.indirect::before     { background: #9333ea; } /* violet */

.example-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* Titres des cartes */
.example-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: .01em;
}

/* Texte */
.example-card blockquote {
  font-style: italic;
  color: #475569;
  margin: 0;
  line-height: 1.7;
}/* End custom CSS */


