/* 已保存列表：卡片行 */
.saved-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0 0.75rem 0.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.saved-card a.saved-card-main {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 0 0.875rem 1rem;
  text-align: left;
}

.saved-card button.saved-card-del {
  flex-shrink: 0;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #fff;
  color: #fa5151;
  cursor: pointer;
}

.saved-card button.saved-card-del:active {
  background: #fff5f5;
}
