.property-thumbnail {
  position: relative;
  width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.property-thumbnail:hover {
  transform: scale(1.03);
}

.property-thumbnail-infos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  width: 90%;
}

.property-thumbnail-title {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.property-thumbnail-slogan {
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
}