
.tmj-post-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:24px;
}

.tmj-card{
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.06);
display:flex;
flex-direction:column;
height:100%;
}

.tmj-thumb img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.tmj-content{
padding:20px;
display:flex;
flex-direction:column;
flex:1;
}

.tmj-title{
font-size:18px;
line-height:1.4;
margin-bottom:10px;
}

.tmj-title a{
text-decoration:none;
color:#111827;
}

.tmj-excerpt{
font-size:14px;
line-height:1.7;
color:#6b7280;
margin-bottom:20px;
flex-grow:1;
}

.tmjis-btn{
margin-top:auto;
display:inline-flex;
align-items:center;
justify-content:center;
padding:13px 20px;
border-radius:999px;
background:linear-gradient(135deg,#7b61ff 0%,#ff4fa3 100%);
color:#fff !important;
text-decoration:none;
font-weight:700;
width:100%;
}

.tmj-loader{
display:none;
justify-content:center;
padding:30px 0;
}

.tmj-loader span{
width:42px;
height:42px;
border:4px solid rgba(0,0,0,.08);
border-top-color:#7b61ff;
border-radius:50%;
animation:tmjspin .8s linear infinite;
}

@keyframes tmjspin{
to{transform:rotate(360deg);}
}
