.cards ul {
    display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 20px;
grid-row-gap: 20px;
    grid-row-gap: 20px;
    list-style:none;
    padding: 0;
    margin: 0;}

.cards li:hover {
    background: #f8f8f8;
}

.cards li {
    border: solid 1px grey;
    margin-bottom: 1rem;
}

.card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    max-height: 120px;
    overflow: hidden;
    object-fit: cover;
}

.card-meta {
    padding: 1rem;
}

.card a{
text-decoration: none;
}