/* =====================================
   BLOG LIST - DARK THEME
===================================== */

.rr-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.rr-blog-card{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}

.rr-blog-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.40);
}

.rr-blog-card a{
    text-decoration:none;
}

.rr-blog-thumb{
    overflow:hidden;
}

.rr-blog-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;

    margin:0;

    border-radius:0;

    transition:.5s;
}

.rr-blog-card:hover .rr-blog-thumb img{
    transform:scale(1.05);
}

.rr-blog-card-content{
    padding:20px;
}

.rr-blog-card h3{
    font-size:20px;
    line-height:1.5;
    margin-bottom:12px;

    color:#ffffff;
}

.rr-blog-card a{
    color:#ffffff;
}

.rr-date{
    font-size:13px;
    color:#94a3b8;
    margin-bottom:12px;
    display:block;
}

.rr-excerpt{
    font-size:15px;
    line-height:1.7;
    color:#cbd5e1;
    margin-bottom:0;
}

@media(max-width:768px){

    .rr-blog-grid{
        grid-template-columns:1fr;
    }

}