
/*page pour dallesdoccasion*/

:root{
  --brand:#00314c;       /* bleu titre */
  --accent:#ff7427;      /* barre orange */
}

/* Style de titre commun */
.section-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:coolvetica;
  font-weight:800;
  font-size:clamp(28px,2.4vw,46px);
  line-height:1.75;
  color:var(--brand);
  margin:clamp(20px,2vw,32px) 0;
}

/* Petite barre à gauche du titre */
.section-title::before{
  content:"";
  width:6px;
  height:48px;
  border-radius:3px;
  background:var(--accent);
}

/* Variante plus petite si tu en as besoin pour un H2 */
.section-title--sm{
  font-size:clamp(22px,1.8vw,32px);
}
.section-title--sm::before{
  height:36px;
}

.section-text {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 21px;
  line-height: 1.75;
  color: #333;          
  margin-bottom: 16px;    /* espace entre les paragraphes */
  max-width: 900px;       /* largeur max pour éviter les lignes trop longues */
  letter-spacing: 2px;
  text-align:justify;
}

/* bloc paragraphe dans la carte orange */
.bloc-infos-occasions {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 50px;
    background: linear-gradient(135deg, #f5721a, #ee6700);
    border-radius: 20px;
    color: white;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.bloc-infos-occasions-2 {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 50px;
    background: #F7F7F7;
    color: #0B2C3D;    
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/*titre du bloc orange */
.infos-occasions h2 {
    font-size: 46px;
    margin: 0 0 50px 0;
    font-weight: 200;
    color: #00314c;
    font-size: 45px;
}

/*texte des blocs orange et blanc */
.infos-occasions p {
    font-size: 25px;
    line-height: 1.6;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    font-weight: 500;
    font-size: 28px;
}


/* titre du bloc blanc */
.infos-occasions h3 {
    font-size: 36px;
    margin: 0 0 50px 0;
    font-weight: 200;
}


@media (max-width: 600px) {

    .bloc-infos-occasions,
    .bloc-infos-occasions-2 {
    margin: 24px auto;     
    padding: 24px 16px;   
  }

    /* Titre "Les dalles d’occasion arrivent bientôt" */
   .bloc-infos-occasions .infos-occasions h2 {
    font-size: 25px;        
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
  }

  /* Texte */
  .bloc-infos-occasions .infos-occasions p {
    font-size: 14px;        
    line-height: 1.6;
    text-align: left;
    hyphens: none;
    padding: 0 12px;     
  }

  .infos-occasions h3{
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 16px 0;
    text-align: center;
  }

.bloc-infos-occasions-2 .infos-occasions p{
    font-size: 15px;
    line-height: 1.6;
    text-align: left; 
    hyphens: auto;
    padding: 0 16px;
    hyphens: none; /*césure*/
  }

}

