/*Page actualités*/

.article-content .article-body ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.article-content .article-body ul li {
  width: 100%;
  margin-bottom: 20px!important;
}
.article-content .article-body ul li a {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
}
.article-content .article-body ul li img {
  width: 30%;
  border-radius: 10px;
}
.article-content .article-body ul li .actu-text {
  width: 70%;
  padding-left: 20px;
}
.article-content .article-body ul li h2 {
  font-size: 20px;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .article-content .article-body ul li {
    width: 50%;
    padding-right: 20px;
  }
  .article-content .article-body ul li a:hover {
    text-decoration: underline;
  }
  .article-content .article-body ul li h2 {
    font-size: 22px;
  }
}

/* Single news */

.single #content.content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.single .grid__background {
  height: 450px;
}
.single article {
  margin-bottom: 100px;
}
.single article img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.single article h1 {
  font-size: 1.8rem;
  position: relative;
  margin-bottom: 30px;
}
.single article h1:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 20px;
  min-width: 7.5rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 35%;
}
@media screen and (min-width: 992px) {
  .single #content.content-wrapper {
    padding: 0;
  }
  .single article h1 {
    width: 50%;
    font-size: 2rem;
  }
}