/* 
* =========================================================
* Posts
* =========================================================
* */
.post-list {
  list-style: none;
  margin: 1rem auto;
}

.post-link {
  transition: .1s background-color;
  display: block;
  padding: 1rem;
  border-top: 2px solid var(--bg2);
  text-decoration: none;
}

.post-link:hover {
  border-radius: 8px;
  background-color: var(--bg2);
}

.post .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.post .post-header .title {
  font-size: 20px;
}

.post .post-header .date {
  text-decoration: underline;
}

.post .summary {
  font-size: 14px;
}

.post .post-tags {
  list-style: none;
  display: inline-flex;
  gap: .5rem;
  margin-bottom: .5rem;
}

.post .post-tags li {
  background-color: var(--bg3);
  padding: .2rem .4rem;
  border-radius: 100px;
  font-size: 12px;
}
