/* style des presentation des coach sur les stages*/

/* test de referesh2*/

.workshop-coach {
   margin:0px 0px 50px 0px;
  
}

.workshop-coach ul{ 
      margin: 0;
  
}
.workshop-coach__list{
display: flex;
  flex-flow: row wrap; 
  justify-content: center;
  gap: 10px;
}

.workshop-coach__list>li {
  margin: 10px;
  flex: 0 1 30%;
  text-align: center;
   font-size: 14px;
}
.workshop-coach__list.four>li {
  margin: 15px;
  flex: 0 1 21%;
  text-align: center;
   font-size: 13px;
}
@media (max-width: 800px) {
   .workshop-coach__list>li {
    max-width: 75%;
    flex: 0 1 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .workshop-coach__list>li {
       max-width: 100%;
       flex: 0 1 100%;
    }
}