.posts {
  list-style: none;
  display: flex;
  flex-direction: column;
}

/* Each row places its title on the left and date on the right. */
.posts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 2px dashed #a8a13f55;
}

.posts a {
  text-decoration: none;
}

.posts a:hover {
  text-decoration: underline;
  text-decoration-color: #a8a13f;
  text-decoration-thickness: 3px;
}

.date {
  color: #9a9a9a;
  font-size: .85rem;
  white-space: nowrap;
}

.posts-note {
  margin-top: 2.5rem;
}
