@media only screen and (min-width: 600px) {
  .module-blocs{
    display: flex;
    flex-wrap: wrap;
  }
}

.bloc{
  margin-bottom: var(--gutter-in);
}

@media only screen and (min-width: 600px) {
  .bloc{
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 600px) {
  .bloc-image{
    width: 50%;
  }
}

.bloc-image img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

@media only screen and (min-width: 600px) {
  .bloc-image img{
    height: 100%;
  }
}

.bloc-content{
  background: var(--beige);
  padding: var(--gutter-in);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (min-width: 600px) {
  .bloc-content{
    width: 50%;
  }
}

.bloc-content h3{
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0416666666666667rem + 0.6944444444444445vw, 1.875rem);
  color: var(--vert-vif);
  font-weight: bold;
  line-height: 1em;
}

.bloc-content h3 strong{
  display: block;
  color: #313131;
}

.bloc-content p{
  line-height: 1.6em;
}
