/* Bloc "Bon à savoir" */
.ba-note{
  background:#e4f1ff;
  border:1px solid #076dff;
  border-radius:8px;
  padding:16px 20px;         /* 16px vertical, 20px horizontal */
  margin:1em 0 1.5em 0;      /* petite marge en bas */
  box-sizing:border-box;
  max-width:100%;
}

/* En-tête (icône + titre) */
.ba-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;            /* évite la casse sur mobile */
}

.ba-title{
  font-weight:700;
  color:#076dff;
}

/* Icône */
.ba-icon{
  width:26px; height:26px;
  background:#076dff;
  border-radius:4px;
  display:grid; place-items:center;
  flex:0 0 26px;
}

.ba-glyph{
  width:15px; height:15px; background:#fff;
  mask: url("https://followords.com/wp-content/uploads/2025/04/icon-idee.svg") center / contain no-repeat;
  -webkit-mask: url("https://followords.com/wp-content/uploads/2025/04/icon-idee.svg") center / contain no-repeat;
}

/* Contenu */
.ba-content{ margin-top:0; }
.ba-content p{ margin:0; }
.ba-content ul{ margin:6px 0 0 1.2em; }
.ba-content li{ margin:2px 0; }

/* --- Responsive --- */
@media (max-width:480px){
  .ba-note{
    padding:14px 16px;
  }
  .ba-head{
    gap:6px;
  }
  .ba-title{
    font-size:0.95rem;
  }
}
