/* 04-text-bouton.css — Texte seul (sans bouton) */

/* Conteneur du bloc titre + sous-titre */
.headline{
  text-align:center;
  margin-top:16px;
}

/* Titre principal */
.headline h2{
  font-family:'Bodoni Moda', serif;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--violet, #2E2C62);
  font-size:clamp(1.4rem,4vw,2.2rem);
  margin:8px 0 6px;
}

/* Sous-titre */
.headline p{
  margin:0 auto clamp(24px,3vw,40px);
  color:#2b3353;
  max-width:60ch;
  line-height:1.5;
}

/* Option responsive légère */
@media (max-width:640px){
  .headline{ margin-top:12px; }
  .headline p{ max-width:65ch; }
}
