/* ------------------------------------------- */
/* ------------------------------------------- */
:root {
  font-size: 62.5%;
}

/* ------------------------------------------- */
/* ------------------------------------------- */
.backend a {
  pointer-events: none !important;
}

.block-actualites {
  margin-top: 2rem;
  margin-block: 2rem;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: clamp(1.5rem, 0.0274509804 * (100vmin + 100vmax) / 2, 2.8rem);
  flex-wrap: wrap;
}
.block-actualites .actu-item {
  flex: 0 0 calc(50% - clamp(1.5rem, 0.0274509804 * (100vmin + 100vmax) / 2, 2.8rem) / 2);
}
@media screen and (max-width: 781px) {
  .block-actualites .actu-item {
    flex: 0 0 100%;
  }
}
.block-actualites .actu-item .post-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.block-actualites .actu-item .post-thumb img {
  transform: scale(1);
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.block-actualites .actu-item .post-thumb:hover img {
  transform: scale(1.04);
}
.block-actualites .actu-item .post-title-link:hover, .block-actualites .actu-item .post-see-more-link:hover {
  color: #E74C89;
}
.block-actualites .actu-item .post-footer {
  display: flex;
  gap: clamp(1.5rem, 0.0274509804 * (100vmin + 100vmax) / 2, 2.8rem);
  justify-content: space-between;
  align-items: end;
}
