/* 笔记列表模式标题优化 */
.notes.list .note-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  padding: 16px !important;
  gap: 16px !important;
  min-height: auto !important;
}

.notes.list .note-card-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  flex-shrink: 0 !important;
  width: 200px !important;
  -webkit-line-clamp: 1 !important;
}

.notes.list .note-card-content {
  flex: 1 !important;
  -webkit-line-clamp: 2 !important;
}

.notes.list .note-card-footer {
  flex-shrink: 0 !important;
  width: 240px !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* 时间轴模式标题优化 */
.notes.timeline .note-card-title {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}

/* 网格模式标题优化 */
.notes.grid .note-card {
  min-height: 220px !important;
}

.notes.grid .note-card-title {
  font-size: 1.05rem !important;
  -webkit-line-clamp: 2 !important;
}
