
.nbd-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.nbd-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.nbd-image img{
width:100%;
height:250px;
object-fit:cover;
}

.nbd-content{
padding:20px;
}

.nbd-content h3{
color:#0047AB;
}

.nbd-filters{
display:flex;
gap:15px;
margin-bottom:30px;
flex-wrap:wrap;
}

.nbd-filters input,
.nbd-filters select{
padding:12px;
border:1px solid #ddd;
border-radius:8px;
}
