.thumbnail {
    display: flex;
    width: stretch;
    height: calc(auto + 10px);
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    word-break: break-all;
    border: 1px solid;
    border-color: var(--textc);
    position: relative;

    p {
        display: block;
        position: absolute;
        color: var(--textc);
        top: 0;
        margin: 5px 10px 5px 110px;
        padding: 5px;
        max-width: stretch;
        font-size: 11px;
        line-height: 0.5rem;
    }

    h4 {
        position: absolute;
        top: 0;
        left: 0;
        color: white;
        background: skyblue;
        font-size: 13px;
        line-height: 1;
        padding: 5px 10px;
        border-radius: 5px 0 0 0;
    }

    img {
        width: 100px;
        height: 70px;
        margin: 5px;
        border-radius: 5px;
    }
}