.blog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-top: 40px;
}

.blog-list {
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* scrollbar 美化 */
.blog-list::-webkit-scrollbar {
  width: 6px;
}
.blog-list::-webkit-scrollbar-thumb {
  background: #ff8dbd;
  border-radius: 4px;
}

.blog-list ul {
  list-style: none;
  padding: 0;
}

.blog-list li {
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
}

.blog-list li:hover {
  background: #fff0f6;
}

.blog-list li.active {
  font-weight: 600;
  color: #ff6fae;
}
