/* ── REMEMBRANCE: the chronology ──────────────────────────────
   The rail down the left is what makes consecutive entries read as one
   continuous thread rather than a stack of separate cards.
   ------------------------------------------------------------ */

.wing-tl { align-items: stretch; }

.wing-tl-rail {
  position: relative;
  flex-shrink: 0;
  width: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.15rem;
}

.wing-tl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

/* The line runs to the bottom of the row, so it appears to continue into the
   next one and the column reads as a single thread. */
.wing-tl-rail::after {
  content: '';
  flex: 1;
  width: 2px;
  background: var(--border-color);
  border-radius: 1px;
}

.wing-tl-date {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--wing-muted);
  text-align: center;
  white-space: nowrap;
}

.wing-tl-body { flex: 1; min-width: 0; }

/* The date is the point of a timeline, and it was the smallest and faintest
   element on it at 0.68rem. The feeling badge takes free text ("Embarrassed,
   then grateful") in a chip shaped for one word, so it is allowed to wrap
   rather than run out of its own pill. */
.wing-tl-date { font-size: 0.74rem; }
.wing-tl .wing-badge.soft {
  white-space: normal;
  text-align: left;
  line-height: 1.35;
}
