.liste-actualites {
  margin: 250px auto 0;
  width: 1597px;
  padding: 0 50px;
  overflow: hidden;
}
@media screen and (max-width: 1550px) {
  .liste-actualites {
    width: 100%;
    padding: 0 50px;
  }
}
.liste-actualites .filtres-actualites {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.liste-actualites .filter-category {
  padding: 8px 20px;
  border: 2px solid #1c174f;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Muli', sans-serif;
  background: transparent;
  color: #1c174f;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.liste-actualites .filter-category:hover,
.liste-actualites .filter-category.active {
  background: #1c174f;
  color: white;
}
.liste-actualites .article {
  transition: all 0.3s ease;
}
.liste-actualites .article:hover {
  transform: translateY(-5px);
}
.liste-actualites .article a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  background: #1d3b7512;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.liste-actualites .article-image {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 25px;
  overflow: hidden;
}
.liste-actualites .article-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #CCAB86;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.liste-actualites .article-image:hover:after {
  opacity: 0.25;
}
.liste-actualites .article-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.liste-actualites .article-content {
  padding: 20px;
}
.liste-actualites .article-category {
  color: #CCAB86;
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.liste-actualites .article-title {
  font-family: 'Montserrat', sans-serif;
  color: #1c174f;
  font-weight: 800;
  font-size: 25px;
  margin: 0 0 10px;
  line-height: 1.4;
}
.liste-actualites .article-date {
  color: #1c174f;
  font-size: 16px;
  font-family: 'Muli', sans-serif;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 15px;
}
.liste-actualites .article-souscontent {
  font-family: 'Muli', sans-serif;
  color: #CCAB86;
  text-decoration: underline;
  font-weight: 600;
}
.liste-actualites .pagination {
  margin-top: 30px;
  text-align: center;
  justify-content: center;
}
.liste-actualites .pagination .page-numbers {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1c174f;
  padding: 8px 12px;
  margin: 0 3px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.liste-actualites .pagination .page-numbers.current {
  color: #CCAB86;
  background: none;
  pointer-events: none;
}
.liste-actualites .pagination .page-numbers:hover {
  color: #CCAB86;
}
.liste-actualites .pagination .page-numbers.prev,
.liste-actualites .pagination .page-numbers.next {
  padding: 8px 12px;
  font-weight: 800;
  color: #1c174f;
}
.liste-actualites.loading .liste-articles {
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 768px) {
  .liste-actualites {
    padding: 0 20px;
    width: 100%;
    margin-top: 0;
  }
  .liste-actualites .article {
    margin-bottom: 20px;
  }
  .liste-actualites .filtres-actualites {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .liste-actualites .filtres-actualites .filter-category {
    width: 100%;
  }
}
