a.component-annonce {
  background-color: var(--background-light);
  position: relative;
  text-decoration: none;
  color: inherit;
}
a.component-annonce .label {
  font-size: 14px;
  font-weight: 400;
  position: absolute;
}
a.component-annonce .thumbnail {
  width: 100%;
  height: 180px;
  background-color: var(--secondary);
}
a.component-annonce .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.component-annonce .content {
  padding: 20px;
}
a.component-annonce .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  a.component-annonce .title {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
}
a.component-annonce .title h3 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  margin: 0px;
  max-width: 60%;
}
@media screen and (max-width: 768px) {
  a.component-annonce .title h3 {
    max-width: 100%;
  }
}
a.component-annonce .title .price {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}
a.component-annonce .infos {
  margin-top: 20px;
  display: flex;
  gap: 30px;
}