.archive-evenements {
  width: 100%;
  height: fit-content;
}

.head-archive {
  width: 100%;
  background-color: #eaeaea;

  display: flex;
  justify-content: center;
}

.head-archive-slogan {
  color: #395569;
  font-size: 25px;
  margin: 2rem 0;
  max-width: 600px;
  text-align: center;
}

.evenements-archives-title {
  margin-top: 3rem;
  font-weight: 600;
  color: #395569;
}

.list-evenements-container {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #89c1bb;
}

.list-evenements-archive {
  width: 80%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  padding: 2rem;
  gap: 2rem;
}

.evenement-archive {
  width: 320px;
  background-color: #eaeaea;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #395569;
  transition: 0.2s linear;
}

.evenement-archive:hover {
  transform: scale(1.05);
}

.evenement-archive-image {
  border-radius: 3px 3px 0 0;
}

.evenement-archive-date {
  font-weight: 600;
  width: fit-content;
  padding: 5px;
  margin: 5px;
  bottom: 30px;
  left: 50%;
}

.post_evenement_title {
  font-size: 25px;
  font-weight: 600;
}

.post__excerpt {
  width: 80%;
  margin-bottom: 1rem;
}

.post_archive_link {
  text-decoration: none;
}

.nav-suivant > a {
  color: #395569;
  font-size: 18px;
  font-weight: 600;
}

.nav-archive-link {
  height: 40px;
  width: fit-content;
  background-color: #395569;
  color: antiquewhite;
  padding: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 1rem;
  transition: 0.2s linear;
}

.nav-archive-link:hover {
  transform: scale(1.05);
}

@media (max-width: 821px) {
  .head-archive-slogan {
    font-size: 16px;
  }
}
