/*
** Réalisation : LaFabrikk
** https://www.lafabrikk.fr
*/

/* --- PAGE ACTU --- */
body.blog h1,
body.archive h1 {
  margin-bottom: var(--KPM050);
  text-align: center;
}

.posts-list {
  gap: var(--KPM030);
}
.posts-list .post {
  width: calc(50% - var(--KPM015));
  align-items: center;
}
.post-thumbnail {
  position: relative;
  width: 30%;
  aspect-ratio: 1;
}
.post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.post-title {
  width: 70%;
  padding: var(--KPM020) var(--KPM025);
  background-color: var(--KPMcolblue);
}
.post-title h2 {
  margin: 0;
  font-size: var(--KPM026);
  line-height: var(--KPM030);
}
.post-title a {
  color: #fff;
}

.navigation.pagination {
  width: 100%;
}
.nav-links {
  text-align: center;
}

/* POST */
body.single-post h1 {
  margin-bottom: var(--KPM050);
  text-align: center;
}