.container-grid {
    display: grid;
    grid-auto-rows: auto;
    column-gap: 10px;
    row-gap: 20px;
    vertical-align: top;
 }

.container-flex {
    display: flex;
    column-gap: 20px;
}

.column-flex {
    flex: 0;
    flex-basis: content;
    flex-shrink: 0;
}

.text{
    grid-area: text;
}
.thumb {
    grid-area: thumb;
}

.thumb > img {
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}