.item-list {
  list-style: none;
  padding: 0;
  margin: 1em;
}

.panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 1rem;
  width: 20rem;
}

.thumb {
  width: 100px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}

.description {
  flex: 1;

}

.description h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.description p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

.description h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.description p.final {
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



li.panel:hover{
    background-color: lightgrey;
    --link-color: black
}