/* Multi360 Extra Styles */
.anuncio-desc-truncada {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6.6em;
  transition: max-height 0.2s;
  cursor: pointer;
}
.anuncio-desc-expandida {
  display: block;
  max-height: none;
  transition: max-height 0.2s;
  cursor: pointer;
}
.ver-mais-btn {
  color: #007bff;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.98em;
  text-decoration: underline;
}

.broker-item img,
.attended-item img {
  width: 32px !important;
  height: 32px !important;
  object-fit: cover;
}

.card-img-top {
  height: 180px;        /* Altura fixa */
  object-fit: cover;    /* Preenche mantendo proporção, cortando o que sobrar */
  width: 100%;          /* Preenche a largura do card */
  display: block;       /* Remove qualquer espaço extra embaixo */
  background: #f4f4f4;  /* Opcional: fundo cinza claro para fotos faltando */
}

