.bloc-infos_inner{
    flex-direction: column;
}
.bloc-infos_header{
    width: 640px;
    text-align: center;
    margin: auto;
    margin-bottom: 2rem;
}

.bloc-infos_container{
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}
.bloc-infos{
    width: 630px;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.bloc-infos img{
    width: 100%;
    aspect-ratio: 55/32;
    background-color: grey;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.bloc-infos h3{
    margin-bottom: 1.25rem;
}
.bloc-infos .button{
    margin-top: auto;
}
@media (max-width: 1024px) {
    #bloc-infos-section{
        /* padding: 4.5rem var(--gutter-mobile) ; */
        padding: 4.5rem 0;
    }
    .bloc-infos_header{
        width: 100%;
        margin-bottom: 0rem;
        padding: 0 var(--gutter-mobile);
    }

    .bloc-infos_container{
        flex-direction: column;
    }
    .bloc-infos{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: 1.25rem;
    }
    .bloc-infos h3{
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .bloc-infos p{
        margin-bottom: 1.5rem;
    }

    
    
}


/* === Confirmation message wrapper === */
.messages__wrapper {
  margin: 24px 0 32px; /* plus d'espace pour séparer du contenu suivant */
}

/* Base reset */
.messages.messages--status {
  background: #f0f8f4; /* vert très clair, subtil */
  border: 1px solid #d3efdf; /* léger cadre vert pastel */
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  color: #0e1f34;
  font-family: "Inter", system-ui, sans-serif;
}

/* Title: "Merci !" */
.messages.messages--status p:first-of-type strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Green success icon */
.messages.messages--status p:first-of-type strong::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;

  background: #20c997; /* success green */
  color: #fff;
}

/* Body text */
.messages.messages--status p {
  margin: 2px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Bold org name */
.messages.messages--status p:nth-of-type(3) strong {
  font-weight: 700;
}

/* Remove extra Drupal h3 spacer */
.messages.messages--status h3 {
  display: none !important;
}
