/** Shopify CDN: Minification failed

Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 18:18 Unexpected "{"
Line 18:27 Expected ":"
Line 24:18 Unexpected "{"
Line 24:27 Expected ":"

**/

/* ============================================
SECTION VILLES CTA
============================================ */

/* Le texte garde la largeur du conteneur */
#shopify-section-{{ section.id }} .ps-textcta__text,
#shopify-section-{{ section.id }} .rte{
  max-width: none;
  width: 100%;
}

/* Juste le titre est plus étroit = 2 lignes */
#shopify-section-{{ section.id }} .ps-textcta__title-inner{
  display: inline-block;
  max-width: 680px;   /* ajuste: 600-750px selon ton goût */
  font-family: Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #a80533;
  margin-bottom: 5px;
  letter-spacing: 1px;
}


#ps-textcta-SECTIONID{
  /* placeholder */
}

.ps-textcta__wrap{
  max-width: var(--ps-textcta-maxw, 980px);
  margin: 0 auto;
  padding: 70px 0px 70px 0px;
}

.ps-textcta__title{
  font-family: Helvetica, Arial, sans-serif;
  margin: 0 0 18px;
  color: #a80533;
  font-weight: 900;
  line-height: 1.15;
  font-size: clamp(22px, 2.2vw, 34px);
}

.ps-textcta__body{
  color: #111;
  font-size: 18px;
  line-height: 1.65;
}

.ps-textcta__body p{
  margin: 0 0 18px;
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color:rgb(0, 0, 0);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.ps-textcta__actions{
  margin-top: 34px;
}

.ps-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 999px;
  background: #8B0F1A;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}

/* hover simple */
.ps-btn:hover{
  filter: brightness(0.95);
}


@media (max-width: 905px) {


  /* =========================
PS TEXTE + CTA
========================= */
  /* Section padding comme steps */
  [id^="ps-textcta-"].ps-textcta{
    padding: 0; /* on laisse la gestion au wrap */
  }

  /* Inner container = même logique que ps_steps__inner */
  [id^="ps-textcta-"].ps-textcta .ps-textcta__wrap{
    max-width: var(--ps-textcta-maxw, 980px);
    margin: 0 auto;
    padding: calc(var(--ps-textcta-pady, 70px) * 0.75) 16px;

    display: flex;
    flex-direction: column;
    align-items: center;   /* centre les blocs */
    text-align: center;    /* centre le titre */
    gap: 14px;             /* spacing entre éléments */
  }

  /* Reset marges parasites */
  [id^="ps-textcta-"].ps-textcta .ps-textcta__wrap > *{
    margin: 0;
  }

  /* Titre : largeur contrôlée comme ps_steps__title */
  [id^="ps-textcta-"].ps-textcta .ps-textcta__title{
    width: 100%;
    max-width: 32ch;
    font-size: 20px;
    line-height: 1.05;
  }

  /* Le span interne si jamais il a des styles */
  [id^="ps-textcta-"].ps-textcta .ps-textcta__title-inner{
    display: inline;
  }

  /* Body : même largeur que le lead, mais texte “brochure” */
  [id^="ps-textcta-"].ps-textcta .ps-textcta__body{
    width: 100%;
    max-width: 34ch;
  }

  /* Paragraphes : petit + justifié + hyphens */
  [id^="ps-textcta-"].ps-textcta .ps-textcta__body p{
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.55;

    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  /* Dernier paragraphe sans marge bas */
  [id^="ps-textcta-"].ps-textcta .ps-textcta__body p:last-child{
    margin-bottom: 0;
  }

  /* CTA centré comme ps_steps__btn */
  [id^="ps-textcta-"].ps-textcta .ps-textcta__actions{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 6px;
  }

  [id^="ps-textcta-"].ps-textcta .ps-textcta__btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
  }

}