.block-card {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.2s ease;
  margin-bottom: 45px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.block-card:hover {
  transform: scale(1.02);
}

/* Répartition desktop/tablette */
.block-image {
  flex: 1;                 /* 1 part */
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.block-text {
  flex: 2;                 /* 2 parts */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Mobile : empile image au-dessus du texte */
@media (max-width: 768px) {
  .block-card {
    flex-direction: column;
  }

  .block-image {
    min-height: 240px; /* taille fixe sur mobile */
  }
}