.ts-card {
    background:#fff;
    border-radius:15px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    overflow:hidden;
    display:flex;
    flex-direction:column;
}
.ts-card img {
    width:100%;
    height:200px;
    object-fit:cover;
}
.ts-card-body {
    padding:15px;
}
.ts-card-body h3 {
    margin:0 0 10px;
    font-size:18px;
}
.ts-card-body p {
    font-size:14px;
    color:#444;
    line-height:1.5;
}
.ts-card-meta {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
    font-size:13px;
    color:#666;
}
.ts-badge {
    display:inline-block;
    margin-top:8px;
    padding:4px 8px;
    background:#ffd;
    color:#a66;
    font-size:12px;
    border-radius:5px;
}
.ts-like-btn {
    cursor:pointer;
}
.ts-like-btn.liked {
    color:red;
}
#ts-loading span {
    font-size:14px;
    color:#0073aa;
}
