
.tm-articles-viewer{
    max-width:1150px;
    margin:0 auto;
    padding:45px 15px;
    display:grid;
    gap:34px;
    font-family:Arial, Helvetica, sans-serif;
}
.tm-cols-1{grid-template-columns:1fr;}
.tm-cols-2{grid-template-columns:repeat(2,1fr);}
.tm-cols-3{grid-template-columns:repeat(3,1fr);}
.tm-cols-4{grid-template-columns:repeat(4,1fr);}

.tm-article-card{
    background:#fff;
    border-radius:0;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
}

.tm-article-image{
    height:230px;
    background:#e9eef4;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#789;
    font-weight:800;
}
.tm-article-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.tm-article-body{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.tm-article-body h3{
    margin:0 0 12px;
    font-size:21px;
    line-height:1.25;
    font-weight:800;
    text-transform:uppercase;
    color:#152033;
}
.tm-article-body h3 a{
    color:inherit;
    text-decoration:none;
}
.tm-article-body h3 a:hover{
    color:var(--tm-accent);
}

.tm-article-meta{
    font-size:13px;
    color:#6b7280;
    margin-bottom:13px;
}

.tm-article-excerpt{
    font-size:16px;
    line-height:1.55;
    color:#333;
    margin-bottom:22px;
    flex:1;
}

.tm-article-button{
    display:block;
    background:var(--tm-button);
    color:#fff!important;
    text-align:center;
    text-decoration:none!important;
    padding:14px 18px;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.4px;
}
.tm-article-button:hover{
    filter:brightness(.92);
}

@media(max-width:900px){
    .tm-articles-viewer{
        grid-template-columns:1fr 1fr!important;
    }
}
@media(max-width:650px){
    .tm-articles-viewer{
        grid-template-columns:1fr!important;
    }
}
