.brg-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin:30px 0;
}

.brg-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    padding:20px;
    text-align:center;
}

.brg-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.brg-card h3{
    margin-top:15px;
    font-size:22px;
}

.brg-btn{
    display:inline-block;
    background:#8faec4;
    color:#fff;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
    margin-top:15px;
}

.brg-pagination{
    text-align:center;
    margin-top:40px;
}

@media(max-width:1024px){

    .brg-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .brg-grid{
        grid-template-columns:1fr;
    }

}