.pub-page { max-width: 900px; margin: 0 auto; padding: 30px 20px; }
.search-filters { background: white; padding: 20px; border-radius: 8px; box-shadow: var(--shadow); margin-bottom: 20px; }
.search-filters input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 6px; font-size: .95rem; margin-bottom: 12px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filters select { flex: 1; min-width: 140px; padding: 9px 12px; border: 1px solid var(--border); border-radius: 5px; font-size: .85rem; cursor: pointer; }
.result-count { text-align: right; font-size: .8rem; color: var(--gray); margin-top: 10px; }
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 20px; flex-wrap: wrap; }
.tab { background: none; border: none; padding: 10px 18px; font-weight: 600; font-size: .88rem; color: var(--gray); cursor: pointer; border-bottom: 3px solid transparent; transition: all .2s; }
.tab:hover { color: var(--green); }
.tab.active { color: var(--green); border-bottom-color: var(--green); }
.toggle-all { display: flex; gap: 8px; justify-content: flex-end; margin-bottom: 12px; }
.toggle-all button { background: var(--green); color: white; border: none; padding: 6px 14px; border-radius: 4px; font-size: .78rem; font-weight: 600; cursor: pointer; }
.toggle-all button:hover { background: var(--green-light); }
.pub-type-badge {
  display: inline-block;
  color: white;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
  background: var(--gray);
}
.pub-type-badge.article     { background: #F94722; }
.pub-type-badge.thèse       { background: #00A550; }
.pub-type-badge.conférence   { background: #1565c0; }
.pub-type-badge.rapport      { background: #f0a500; }
.pub-type-badge.poster       { background: #8e24aa; }
.pub-type-badge.mémoire      { background: #00897b; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.pagination button { width: 36px; height: 36px; border: 1px solid var(--border); background: white; border-radius: 4px; cursor: pointer; font-weight: 600; }
.pagination button.active { background: var(--green); color: white; border-color: var(--green); }
@media (max-width: 700px) {
  .pub-page { padding: 20px 12px; }
  .search-filters { padding: 14px; }
  .filters { flex-direction: column; }
  .filters select { width: 100%; }
  .tabs { flex-wrap: wrap; gap: 2px; }
  .tab { padding: 8px 12px; font-size: .8rem; }
  .toggle-all { justify-content: center; }
  .pagination { flex-wrap: wrap; }
}