#actualites-V2 .article {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 12px !important;
  margin-right: 25px;
  margin-left: 25px;
  background-color: #0a2c7a;
  transform: scale(0.85);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

#actualites-V2 .article p {
  color: white;
}

#actualites-V2 .article h2 {
  color: #f8cc46;
  font-size: 1.75rem;
}

.article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px !important;
  display: block;
}

#actualites-V2 .article .contenu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#actualites-V2 .article .contenu .bouton {
  margin-top: auto;
}

#actualites-V2 .article:hover .contenu,
#actualites-V2 .article.no-image .contenu {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#actualites-V2 .article:hover img {
  opacity: 0;
}

/*
#actualites-V2 .article:hover {
  cursor: pointer;
}
*/

#actualites-V2 .article.slick-center {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

#actualites-V2 .slick-list,
#actualites-V2 .slick-track {
  height: 400px;
}

#actualites-V2 .slick-slide {
  height: 400px;
}

#actualites-V2 .slick-arrow {
  top: 45%;
}

#actualites-V2 .slick-next {
  right: 0%;
}

@media (max-width: 1299px) {
  #actualites-V2 .article.slick-center {
    transform: scale(1);
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  #actualites-V2 .article {
    margin-right: 15px;
    margin-left: 15px;
    transform: scale(1);
  }

  #actualites-V2 .article .contenu {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  #actualites-V2 .article {
    margin-right: 40px;
    margin-left: 40px;
    transform: scale(1);
  }

  #actualites-V2 .article .contenu {
    padding: 20px;
  }

  #actualites-V2 .article h2 {
    font-size: 1.5rem;
  }
}