.bds-tabs-wrapper{
    margin-top:20px;
}

.bds-tabs{
    display:flex;
    gap:20px;
    border-bottom:2px solid #eee;
    margin-bottom:20px;
}

.bds-tab{
    background:none;
    border:none;
    font-weight:600;
    padding:10px 0;
    cursor:pointer;
    position:relative;
}

.bds-tab.active{
    color:#e11b22;
}

.bds-tab.active:after{
    content:'';
    position:absolute;
    bottom:-2px;
    left:0;
    width:100%;
    height:2px;
    background:#e11b22;
}

.bds-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:20px;
}

.bds-card{
    border:1px solid #eee;
    border-radius:8px;
    overflow:hidden;
    transition:0.3s;
    background:#fff;
}

.bds-card:hover{
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.bds-thumb img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.bds-card-content{
    padding:15px;
}

.bds-card-content h3{
    font-size:16px;
    margin:0 0 10px;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.bds-meta{
    font-size:13px;
    color:#888;
}

.bds-loading{
    text-align:center;
    padding:40px;
}
