/** END FONCTIONS **/
.les_articles {
  padding: 0 20px;
}
.les_articles li {
  margin-bottom: 30px;
}
.les_articles li:hover .visuel:after {
  visibility: visible;
  opacity: 1;
}
.les_articles li:hover .titre {
  color: #72DFCA;
}
.les_articles .visuel {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.les_articles .visuel img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.les_articles .visuel:after {
  content: 'Lire l\'article';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #72DFCA;
  border-radius: 2px;
  padding: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0;
  visibility: hidden;
  color: #000;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.les_articles .contenu {
  padding: 25px 0;
}
.les_articles .date {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  opacity: 0.5;
}
.les_articles .titre {
  font-weight: bold;
  line-height: 1.3;
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.les_articles .resume {
  font-weight: 300;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 20px;
  color: #000;
}
nav.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
nav.pagination .nav-links span,
nav.pagination .nav-links a {
  margin: 0 10px;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-appearance: none;
  font-size: 14px;
  line-height: 18px;
  padding: 14px;
  min-width: 48px;
  text-align: center;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  background-color: #000;
  height: inherit;
}
nav.pagination .nav-links .current {
  background-color: #72DFCA;
  color: #000;
}
#primary.une_actu {
  padding-left: 20px;
  padding-right: 20px;
}
#retour_actus {
  margin: 25px auto 0 auto;
  text-align: center;
}
@media (min-width: 1200px) {
  .les_articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  #retour_actus {
    margin-top: 45px;
  }
}
