/* 首頁頂端那一兩條提示 — #329。
 *
 * **一條線,不是一張卡**:它不是首頁的內容之一(餘額、指令、圖表才是),它是系統
 * 想跟你講的一句話。所以它比卡片矮、比卡片淡,而且關得掉。
 *
 * 顏色走 `--accent` 那一組而不是警告色:密碼太短與還沒綁 Email 都不是壞掉,是
 * 「有一件事現在做起來比較省事」。用紅色講會讓兩件不緊急的事看起來像出事了。 */

#homeNotices { margin-bottom: 10px; }

.nt {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 12px; background: var(--card);
}
.nt + .nt { margin-top: 8px; }

.nt-say { flex: 1; font-size: 0.875rem; line-height: 1.45; }

/* 兩顆鈕都撐到 44px:提示條本身矮,而矮不該讓它上面的東西按不準。 */
.nt-go {
  font: inherit; font-size: 0.875rem; cursor: pointer; white-space: nowrap;
  background: transparent; color: var(--accent); border: 0;
  padding: 12px 4px; min-height: 44px;
}
.nt-x {
  font: inherit; font-size: 0.9375rem; cursor: pointer; line-height: 1;
  background: transparent; color: var(--dim); border: 0;
  min-width: 44px; min-height: 44px;
}
