/* ====== Bloc 2 colonnes : texte + image ====== */

.intro-two__inner{
  max-width: 1200px;                    /* largeur du contenu */
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 45px;
  align-items: start;
}

/* TITRE COMMUN À TOUTES LES SECTIONS */
.section-title {
  display: flex;
  align-items: center;
  font-family: coolvetica;
  font-size: 35px !important;
  line-height: 1.75;
  margin: clamp(25px, 2vw, 32px) 0;
  color: #00314c;
}

/* Barre colorée à gauche du titre */
.section-title::before {
  content: none;
  width: 6px;
  height: 48px;
  border-radius: 3px;
  background: #f37a21;
}


.section-text {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.75;
  color: #333;          
  margin-bottom:20px;    /* espace entre les paragraphes */
  max-width: 800px;       /* largeur max pour éviter les lignes trop longues */
  letter-spacing: 2px;
  text-align:justify;
}

/* Colonne image */
.intro-two__media{
  position: relative;
  margin-bottom: 30px;
  max-width: 900px; 
}

.intro-two__media img{
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.15));
  border-radius: 14px;  
  margin-top: 100px;  
}

.intro-two--reverse {
  flex-direction: row-reverse;
}


.separator {
  border: none;
  height: 2px;
  width: 80%;
  margin: 40px auto; /* espace autour */
  background: linear-gradient(to right, transparent, #174F82, transparent);
}


.highlight {
  color: #ff7427;
  font-weight: 600;
  font-family: coolvetica;
  font-size: 45px;
}

.highlight2 {
  color: #ff7427;
  font-weight: 600;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 25px;
}


/* ===================== */
/*      RESPONSIVE       */
/* ===================== */


@media (max-width: 1023px) {

  /* Le conteneur passe en 1 colonne */
  .intro-two__inner{
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px 40px;
    display: grid;
    grid-template-columns: 1fr;     
    gap: 24px;
    align-items: start;
  }

  .section-title{
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 16px;
  }

  .section-text{
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 16px;
  }

  .intro-two__media{
    max-width: 100%;
    margin-bottom: -60px;

  }

  .intro-two__media img{
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 32px;
  }

  .intro-two__reverse{
    flex-direction: column;
  }
}


  /* ============================
    Responsive mobile
   ============================ */



@media (max-width: 600px) {


.intro-two__text .section-title {
    font-size: 30px !important;
    line-height: 1.2;
    margin-bottom: 15px;
}


  /* Paragraphes */
    .section-text {
    font-size: 15px !important;      
    line-height: 1.5;
    text-align: left !important;
  }

  /* Mots en surbrillance (DuraDalle, etc.) */
  .section-text .highlight2 {
    font-size: 18px;      
  }

   /* Mots en surbrillance (DuraDalle) */
  .section-text .highlight {
    font-size: 20px;      
  }

  .intro-two__media,
  .intro-two__media img {
    margin-bottom: 10 !important;
}

    .separator {
        margin: 20px !important;
        margin-top: 20px;
    }
}



