/* ───────────────────────────── */
/* DREAMS — LEDGER STYLE         */
/* ───────────────────────────── */

.dreams-ledger {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.dreams-ledger li {
  margin: 8px 0;
  line-height: 1.6;
  color: var(--muted);
}

.dreams-ledger .d-title {
  color: var(--fg);
  font-weight: 500;
}

.dreams-ledger .d-num {
  color: var(--muted);
  font-style: italic;
}

.dreams-ledger .d-label {
  color: var(--fg);
  letter-spacing: 0.06em;
}

.dreams-ledger .d-status {
   color: rgba(220, 200, 120, 0.85); /* muted yellow */
}
.dreams-ledger .d-status.pending {
  color: rgba(170, 200, 150, 0.9);
}
/* Status: Under Edit */
.dreams-ledger .d-status.edit {
  color: rgba(200, 120, 120, 0.85); /* dull red */
}
/* Status: Copy (written, proofreading) */
.dreams-ledger .d-status.copy {
  color: rgba(185, 190, 130, 0.85); /* parchment olive */
}
/* Status: Living Draft (actively written, evolving) */
.dreams-ledger .d-status.living {
  color: rgba(200, 180, 110, 0.9);
}
/* Status: On Hold */
.dreams-ledger .d-status.hold {
  color: rgba(160, 160, 160, 0.75); /* neutral grey */
}
.dreams-ledger .d-title a {
  color: inherit;
  text-decoration: none;
}

.dreams-ledger .d-title a:hover {
  text-decoration: underline;
}




