.rrtb-news-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin:20px 0;
}

.rrtb-news-card{
    background:#111;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
    transition:.3s;
    color:#fff;
}

.rrtb-news-card:hover{
    transform:translateY(-4px);
}

.rrtb-news-image{
    width:100%;
    height:200px;
    object-fit:cover;
}

.rrtb-news-content{
    padding:18px;
}

.rrtb-source{
    display:inline-block;
    background:#c30000;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
    margin-bottom:10px;
}

.rrtb-title{
    font-size:20px;
    margin:0 0 10px;
    line-height:1.3;
}

.rrtb-title a{
    color:#fff;
    text-decoration:none;
}

.rrtb-description{
    font-size:14px;
    color:#ddd;
    line-height:1.5;
}

.rrtb-meta{
    margin:12px 0;
    font-size:12px;
    color:#aaa;
}

.rrtb-button{
    display:inline-block;
    background:#ff0000;
    color:#fff;
    text-decoration:none;
    padding:10px 16px;
    border-radius:8px;
    font-weight:bold;
}
