.dps-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
margin-top:20px;
}

.dps-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.dps-card:hover{
transform:translateY(-5px);
}

.dps-meta{
margin-bottom:6px;
font-size:14px;
}

.dps-meta i{
margin-right: 8px;
color: #2ea3f2;
width: 16px;
text-align: center;
}

.dps-tabs button{
margin-right:10px;
padding:8px 15px;
border:none;
background:#2ea3f2;
color:white;
cursor:pointer;
}

#dps-search{
margin-top:15px;
padding:10px;
width:100%;
}
