/* Conteneur */
.mk-resume{
  position:relative;
  display:flex;
  background:#f7f8fb;
  padding:16px 18px;
  border-radius:10px;
}

/* Barre bleue rectangulaire qui dépasse */
.mk-resume__bar{
  position:absolute;
  top:-12px;             /* dépasse au-dessus */
  bottom:-12px;          /* dépasse en dessous */
  left:0;
  width:6px;             /* fine */
  background:#1d74ff;
  border-radius:0;
}

/* Corps du bloc */
.mk-resume__body{
  flex:1;
  padding-left:18px;     /* espace entre barre et contenu */
}

/* En-tête */
.mk-resume__head{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}
.mk-resume__title{ font-weight:700; }

/* Icône */
.mk-resume__icon{
  width:26px; height:26px;
  border-radius:4px;
  background:#1d74ff;
  display:grid; place-items:center;
  flex:0 0 26px;
}

/* Icône blanche */
.mk-resume__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;
}

/* Texte / liste */
.mk-resume__content p{margin:0;}
.mk-resume__content ul{margin:6px 0 0 1.2em;}
.mk-resume__content li{margin:2px 0;}
