.tlbs-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.tlbs-card{
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.tlbs-image img{
    width:100%;
    height:auto;
    object-fit:cover;
    display:block;
}

.tlbs-content{
    padding:20px;
}

.tlbs-content h3{
    font-size:24px;
    margin-bottom:15px;
}

.tlbs-content h3 a{
    color:#000;
    text-decoration:none;
}

.tlbs-meta{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    color:#666;
}

.tlbs-btn{
    display:inline-block;
    padding:12px 25px;
    border:2px solid #ff8a00;
    border-radius:40px;
    color:#ff8a00;
    text-decoration:none;
}
.tlbs-content h3{
    font-size:24px;
    line-height:1.4;
    overflow:hidden;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    text-overflow:ellipsis;
}
/* Tablet */
@media (max-width: 991px) {
    .tlbs-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tlbs-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tlbs-card {
        width: 100%;
    }

    .tlbs-image img {
        width: 100%;
        height: auto;
    }

    .tlbs-content {
        padding: 15px;
    }

    .tlbs-content h3 {
        font-size: 20px;
    }
}