/* 日志专用样式 */
.log-entry {
  position: relative;
  padding-left: 24px;
  margin-bottom: 32px;
}
.log-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}
.log-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.log-type {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.type-update { background: #e0f2fe; color: #0369a1; } /* 内容更新 */
.type-image { background: #f0fdf4; color: #15803d; } /* 图片更新 */
.type-fix { background: #fef2f2; color: #dc2626; }   /* 代码修复 */
.type-seo { background: #fefce8; color: #a16207; }   /* SEO优化 */
.type-structure { background: #f3e8ff; color: #7c3aed; } /* 结构调整 */
.log-desc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 8px;
}
.log-desc ul {
  padding-left: 20px;
  margin: 8px 0;
}
.log-desc li {
  margin-bottom: 4px;
}
code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85rem;
}
.highlight {
  color: var(--accent);
  font-weight: 600;
}