
.listItemWithImage {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:1em;
    width:fit-content;
    text-decoration:none;
    margin:1em 0;
}

.listItemWithImage:hover,
.listItemWithImage:focus {text-decoration:underline;}

.listItemInfo {
    display:flex;
    flex-direction:column;
    gap:.25em;
}

.listItemInfo,
.listItemInfo > * {line-height:1;}

.listItemTitle {
    margin:0;
    padding:0;
    font-size:1.25em;
}

.listItemImage {
    width:280px;
    height:140px;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:top;
    margin:0 auto;
}

/*Bootstrap - Small Tablets/Landscape Phones and Up */
@media (min-width: 576px) {
    .listItemWithImage {
        flex-direction:row;
        align-items:center;
    }
    .listItemImage {
        width:300px;
        min-width:300px;
        height:150px;
        min-height:150px;
        margin:0;
    }
}