#tm-articles-list-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    padding-top: 12px;
    margin-bottom: 2rem;
}

#tm-no-articles {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

#tm-articles-list-block>article {
    display: flex;
    align-items: start;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 1.2rem;
}

.tm-article-content {
    width: 50%;
    margin-left: 1rem;
    overflow: hidden;
}

.tm-article-title {
    margin: 0;
}

.tm-article-title>a {
    color: #262626;
    text-decoration: none;
    font-weight: bold;
}

.tm-article-title>a:hover {
    opacity: .6;
}

.tm-article-image {
    display: inline-block;
    position: relative;
    color: white;
    width: 50%;
    height: 200px;
}

.tm-article-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.tm-article-picture-overlay {
    color: white;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s ease;
}

.tm-article-picture-overlay:hover {
    opacity: 1;
}

.tm-article-picture-overlay:hover:before {
    top: 50%;
}

.tm-article-picture-overlay:before {
    content: "+";
    position: absolute;
    top: 60%;
    left: 50%;
    display: inline-block;
    -webkit-transition: .3s;
    transition: .3s ease;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 2rem;
    line-height: 2rem;
}

.tm-article-date {
    font-size: 0.8rem;
    display: block;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0.4rem;
}

.tm-article-button {
    font-weight: bold;
    cursor: pointer;
    padding: 0.4rem;
    border: none;
    text-decoration: none;


    display: inline-block;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    background: rgba(0, 0, 0, .1);
    color: rgba(0, 0, 0, .6);
    height: 1.8rem;
    line-height: 1.8rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    border-radius: 3px;
}

a:hover.tm-article-button {
    opacity: .6;
}

/******************************************************************************/
/* MOBILE */
@media only screen and (max-width: 1024px) {
    #tm-articles-list-block>article {
        display: block;
    }

    .tm-article-image {
        width: 100%;
    }

    .tm-article-content {
        width: 100%;
    }
}