.overview-collections
{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: var(--default-space-between);
}

.collection-item-image
{
    height: 100px;
    margin-bottom: 10px;
}
.collection-item-image img
{
    max-height: 100%;
}
.collection-item-body
{
    margin-top: auto; /* align bottom */
}
.collection-item-body .collection-item-title
{
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width:575.98px) /* extra small */
{
    .overview-collections
    {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
