/* ── NOTES ───────────────────────────────────── */
.notes-card { margin-top: 24px; }

.notes-body { padding: 14px 18px; }

.notes-ta {
  width: 100%;
  min-height: 100px;
  padding: 12px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  resize: vertical;
  line-height: 1.6;
  transition: border-color .18s;
  outline: none;
}
.notes-ta:focus { border-color: var(--navy); }
.notes-ta::placeholder { color: #BDB8AE; }

.notes-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.notes-status {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
  transition: opacity .3s;
}
.notes-status.ok   { color: #1A6B47; }
.notes-status.err  { color: #8B0000; }

.notes-save-btn {
  padding: 7px 18px;
  font-size: 13px;
}
