.GridList{
    padding: 5px;
    border: 1px dotted rgba(105, 105, 105, 0.5);
    margin: 5px;
    gap: 20px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: stretch;
}

.GridList > [name=item]{
    background-color: ghostwhite;
    border: 1px solid dimgray;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 20ch;
    width: fit-content;
    padding: 0 5px;
}

.GridList > [name=item] > [name=content]{
    display: grid;
    grid-template-rows: minmax(0,1fr) min-content;
    width: stretch;
    text-align: center;
}

.GridList > [name=item] > [name=content] > [name=title],
.GridList > [name=item] > [name=content] > [name=description]{
    overflow: hidden;
    white-space: nowrap; 
    text-overflow: ellipsis;
}