/* ═══════════════════════════════════════════════════════════════════════════
   modules/memo — 인박스 화면. 셸의 디자인 토큰만 상속한다(B8).
   선택자는 전부 `.memo-*` — 다른 스타일시트와 겹치지 않는다(테스트가 잠근다).
   ═══════════════════════════════════════════════════════════════════════════ */
.memo-list{max-width:680px;margin:0 auto;padding:4px 14px}
.memo-row{display:flex;align-items:flex-start;gap:10px;background:var(--card);border:1px solid var(--line);border-radius:12px;padding:10px 12px;margin-bottom:6px}
.memo-row.done{opacity:.55}
.memo-main{flex:1;min-width:0}
.memo-note{font-size:15px;white-space:pre-wrap;word-break:break-word}
.memo-row.done .memo-note{text-decoration:line-through}
.memo-meta{margin-top:4px}
.memo-actions{display:flex;flex-direction:column;gap:4px;flex:0 0 auto}
