.actu {
  min-height: 100px;
  margin-top: 1em;
}

.image-link {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.image-link img {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.image-link:hover img {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.image-link:hover::after {
  opacity: 1;
}

.actubas {
  margin-bottom: 2em;
}

/* Réduction des espaces verticaux en mobile */
@media screen and (max-width: 639px) {
  .actu {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }

  .actubas {
    margin-top: 0.5em;
    margin-bottom: 1em;
  }

  /* Réduire aussi l'espace de la cellule parente */
  .cell.margin-y {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
