/* Bloc CTA */
.cta {
  border: 2px solid #d1d9e0;
  border-left-width: 4px;
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  margin: 2rem 0;
  background: #f8fafc;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.06);
}

/* Variation couleurs */
.cta--primary {
  border-left-color: #2563eb; /* Bleu */
}

/* Centrage parfait */
.cta--center {
  text-align: center;
}

/* Typographie */
.cta__title {
  margin: 0 0 .45rem;
  font-size: 1.2rem;
}

.cta__phone {
  margin: .3rem 0;
  font-size: 1.25rem;
}

.cta__phone a {
  text-decoration: none;
}

.cta__phone a:hover {
  text-decoration: underline;
}

.cta__info {
  margin-top: .4rem;
  font-size: .95rem;
  opacity: .9;
}

/* Responsive */
@media (max-width: 600px) {
  .cta {
    padding: 1rem;
  }
  .cta__phone {
    font-size: 1.15rem;
  }
}