.jtp-wrapper { width:100%; }

.jtp-filters {
    margin-bottom:20px;
}

.jtp-filters button {
    padding:8px 15px;
    border:none;
    margin-right:5px;
    background:#eee;
    cursor:pointer;
}

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

.jtp-card {
    background:#fff;
    border-radius:12px;
    padding:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.jtp-card:hover {
    transform:translateY(-5px);
}

.jtp-thumb img {
    width:100%;
    border-radius:10px;
}

.meta {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    font-size:13px;
}

.bottom {
    display:flex;
    justify-content:space-between;
    margin-top:10px;
}

.btn {
    display:block;
    text-align:center;
    margin-top:10px;
    background:#ff6b00;
    color:#fff;
    padding:10px;
    border-radius:6px;
    text-decoration:none;
}