.notes-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-top: 12px; }
.note-card { background: var(--card2); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }
.note-title { width: 100%; background: transparent; border: 1px solid var(--field-rest); border-radius: var(--r-1); color: var(--txt); font-weight: 700; font-size: 14.5px; padding: 5px 8px; font-family: inherit; transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease); }
.note-title:focus { outline: none; border-color: var(--gold); background: var(--card2); }
.note-body { width: 100%; background: transparent; border: 1px solid var(--field-rest); border-radius: var(--r-1); color: var(--muted); font-size: 13.5px; resize: vertical; min-height: 72px; margin-top: 6px; padding: 8px 10px; font-family: inherit; line-height: 1.5; transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease); }
.note-body:focus { outline: none; border-color: var(--gold); background: var(--card2); }
.note-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; border-top: 1px solid var(--line); padding-top: 8px; }
