
/* Hub grid */
.nv-fc-hub{ display:grid; gap:12px }
.nv-fc-hub.cols-3{ grid-template-columns: repeat(3, 1fr); }
.nv-fc-hub.cols-4{ grid-template-columns: repeat(4, 1fr); }
.nv-fc-hub .fc-card{ display:flex; align-items:center; gap:10px; text-decoration:none; border:1px solid #e6e8ec; background:#fff; padding:10px; border-radius:12px; box-shadow:0 2px 8px rgba(16,24,40,.06) }
.nv-fc-hub .fc-card .logo{ width:32px; height:32px; object-fit:contain }
.nv-fc-hub .fc-card .name{ font-weight:800; color:#0f172a }
.nv-fc-hub .fc-card .count{ margin-left:auto; color:#64748b; font-weight:700 }

/* Topics list */
.nv-fc-topics .topic-list{ list-style:none; margin:0; padding:0; display:grid; gap:8px }
.nv-fc-topics .topic-list li{ border:1px solid #e6e8ec; background:#fff; padding:10px; border-radius:12px }
.nv-fc-topics .topic-list a{ text-decoration:none; font-weight:800; color:#0f172a }
.nv-fc-topics .topic-list .meta{ display:block; margin-top:4px; color:#64748b; font-size:.9rem }
.nv-fc-topics .pager{ margin-top:10px; display:flex; justify-content:flex-end; gap:6px }
.nv-fc-topics .pager a{ border:1px solid #e6e8ec; padding:4px 8px; border-radius:8px; text-decoration:none }
.nv-fc-topics .pager a.current{ background:#1f6feb; color:#fff; border-color:#1f6feb }

/* Dark/HNL */
.hnl-theme .nv-fc-hub .fc-card,
.hnl-theme .nv-fc-topics .topic-list li{ background:#101a28; border-color:#1b2a3c; color:#e8eef7 }
.hnl-theme .nv-fc-hub .fc-card .name{ color:#e8eef7 }
.hnl-theme .nv-fc-topics .topic-list a{ color:#e8eef7 }
.hnl-theme .nv-fc-topics .pager a{ border-color:#1b2a3c; color:#e8eef7 }
.hnl-theme .nv-fc-topics .pager a.current{ background:#1e7f36; border-color:#1e7f36 }
