/* Resultados */
.results {
  position: absolute;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1050;
}

.liEls {
  cursor: pointer;
  transition: background 0.2s;
}

.liEls:hover {
  background-color: #f8f9fa;
}

.liEls img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.desc .title {
  font-size: 1.1rem;
  font-weight: 600;
}

.desc .author {
  font-size: 0.85rem;
}

.desc .summary {
  font-size: 0.9rem;
  max-width: 100%;
  height: 50px;
  overflow: hidden;
  position: relative;
  line-height: 1.2;
}

.desc .summary .content {
  max-height: 50px;
  overflow: hidden;
}

.desc .summary .fadeout {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0), #fff 85%);
}

.desc .rating {
  font-size: 0.85rem;
}

.hideResults {
  display: none;
}

/* Responsive optimizado */
@media (max-width: 576px) {
  .liEls {
    flex-direction: row;
    align-items: flex-start;
  }

  .liEls img {
    width: 60px;
    height: 60px;
  }

  .desc .title {
    font-size: 1rem;
  }

  .desc .summary {
    font-size: 0.8rem;
  }
}