     .search-results-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-results-list li {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.search-results-list li:hover {
    background: #f5f5f5;
}

.search-results-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 100%;
}

.search-thumb {
    width: 50px;        /* small size */
    height: 50px;       /* square */
    object-fit: cover;  /* crop to fit */
    border-radius: 4px;
    margin-right: 10px;
}

.search-info h5 {
    margin: 0;
    font-size: 14px;
    line-height: 1.2em;           /* adjust line spacing */
    max-height: 2.4em;            /* 2 lines = 1.2 * 2 */
    display: -webkit-box;
    -webkit-line-clamp: 2;        /* maximum 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-info p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #666;
}