.simple-post-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-post-list li a {
  display: block;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fdf1ea;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: background 0.3s, transform 0.2s;
}

.simple-post-list li a:hover {
  background: #f8e2d4;
  transform: translateY(-1px);
}
