/* WFD Styles - scoped to #wfd-wrapper */

#wfd-wrapper { font-family: Arial, sans-serif; }

/* Categories grid */
.wfd-category-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap:12px; margin:18px 0; }
.wfd-cat-box { display:flex; align-items:center; justify-content:center; min-height:60px; text-align:center; background:#101166; color:#fff; font-size:15px; padding:10px; border-radius:8px; text-decoration:none; font-weight:600; }
.wfd-cat-box:hover { opacity:0.95; }

/* File card */
.wfd-file-card { display:flex; align-items:center; border:2px solid #FFD54F; border-radius:12px; padding:8px; margin:10px 0; background:#fff; gap:12px; }
.wfd-file-thumb { flex:0 0 60px; }
.wfd-file-thumb img { width:60px; height:auto; border-radius:4px; object-fit:cover; }
.wfd-file-info { flex:1; font-size:13px; }
.wfd-file-info h3 { margin:0 0 6px; font-size:15px; }
.wfd-file-info p { margin:2px 0; color:#333; }
.wfd-download-button a { display:inline-block; padding:8px 18px; background:#031b94; color:#fff; border-radius:8px; border:4px solid #ffd054; text-decoration:none; font-weight:700; }
.wfd-download-button a:hover { background:#02208a; }

@media (max-width:600px) {
  .wfd-file-card { flex-direction:row; }
  .wfd-file-thumb img { width:50px; }
}
