/* Post listing */

.post-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.post {
  margin-bottom: 1.5rem;
}

.post a {
  display: block;
  padding: 1rem;
  border-radius: 8px;
  background: #16181d;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.1s ease,
    background 0.1s ease;
}

.post a:hover {
  background: #1c1f26;
  transform: translateY(-2px);
}

.post h2 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.post time {
  font-size: 0.9rem;
  color: var(--muted);
}
