.notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 1.5rem;
  grid-auto-rows: 1fr;
}
.note {
  border: 2px solid #000;
}
.note a {
  display: block;
  padding: 1rem;
  line-height: 1.25em;
}
.note a:hover {
  background: #000;
  color: #fff;
}
.note h2 {
  font-size: 1rem;
}
.note time {
  font-size: .75rem;
}

.pagination {
  /*padding: 1.5rem 5vw 10vh;*/
  text-align: center;
  max-width: var(--content-width);
  margin: 50px 0 auto;
  line-height: 1.5em;
}

.pagination a {
  display: inline-block;
  font-size: .875rem;
}
.pagination > a {
  margin-bottom: 1.5rem;
  border-top: 2px solid #000;
  width: 16.5rem;
  padding-top: .5rem;
}
.social a {
  margin: 0 .75rem;
  padding: .5rem 1rem;
  border: 2px solid #000;
  width: 7.5rem;
}
.social a:hover {
  background: #000;
  color: #fff;
}
