article ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden
}

article li a {
    text-decoration: none;
    display: block;
    color: grey;
    padding: 0 5px;
    border-bottom: 1px solid #EEE;
 }

 article li:last-child a {
    border: none;
 }

 .truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    hyphens: none;
    -webkit-hyphens: none;
}

.content-link {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
}

.content-link img {
    height: 48px;
    width: 64px;
    object-fit: cover;
    border-radius: 5px;
}

article li:hover {
    background-color: #e2e2e2
}