.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: -20px 0 40px;
  padding-bottom: 5px;
}
.filters a {
  white-space: nowrap;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.filters a:hover, .filters a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 50px;
}
.pagination a { font-weight: 700; }
.pagination span { color: var(--muted); font-size: 12px; }
.article-body img { max-width: 100%; height: auto; border-radius: 12px; }
.article-body table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.article-body td, .article-body th { padding: 8px; border: 1px solid var(--line); }
.article-body figure { margin: 0 0 42px; }
.article-body figure img { display: block; width: min(100%, 760px); max-height: 520px; object-fit: cover; }
