/* Estilos para imágenes responsivas en resultados de búsqueda */
.destination-card {
    background-color: red;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.destination-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Media queries para dispositivos móviles */
@media screen and (max-width: 768px) {
  .destination-card {
    margin: 0 auto 15px;
  }

  .destination-card img {
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .destination-card img {
    height: 180px;
  }
}
