/* Zero blog UX tweaks: tags + pagination */

.tag {
  display: inline;
  margin: 0 0.5rem 0 0;
  padding: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  color: var(--off-fg);
  font-size: 0.9rem;
  line-height: 1.2;
}

.tag:hover {
  color: var(--link);
}

.post__meta {
  margin: 0 0 0 0;
}

.post__tags {
  margin: 0 0 0 0;
  line-height: 1.2;
}

.post__summary p {
  margin-top: 0;
}

.aside__tags {
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--muted);
}

.pagination__disabled {
  color: var(--muted);
}

@media (max-width: 45rem) {
  .pagination {
    flex-direction: column;
    align-items: flex-start;
  }
}
