.fdvgs-container{
max-width:1200px;
margin:auto;
padding:20px;
}

.fdvgs-top{
display:flex;
justify-content:flex-end;
margin-bottom:15px;
}

#fdvgs-filter{
padding:5px 10px;        /* ছোট padding */
font-size:13px;           /* ছোট ফন্ট সাইজ */
border-radius:4px;        /* হালকা রাউন্ডেড */
border:1px solid #ccc;
background:#fff;
width:30%;                /* বেশি জায়গা না নেবে */
}

.fdvgs-posts{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.fdvgs-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.2s;
}
.fdvgs-card:hover{transform:translateY(-4px);}

.fdvgs-video-wrap{position:relative;}
.fdvgs-card video{width:100%;}
.fdvgs-duration{
position:absolute;
bottom:8px;
right:8px;
background:rgba(0,0,0,0.7);
color:#fff;
padding:3px 6px;
font-size:12px;
border-radius:4px;
}

.fdvgs-card h3{
font-size:16px;
padding:10px;
}

.fdvgs-download{
display:block;
background:#3b4bff;
color:white;
text-align:center;
margin:10px;
padding:10px;
border-radius:6px;
text-decoration:none;
}

/* responsive */
@media(max-width:900px){
.fdvgs-posts{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
.fdvgs-posts{grid-template-columns:1fr;}
}