/* ==========================================================================
   Life HQ — Brain Dump Page
   ========================================================================== */

.journal-entry {
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.journal-entry .entry-date {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-strong);
}

.journal-entry .entry-text {
  margin-top: 6px;
  color: var(--ink-light);
  white-space: pre-wrap;
  line-height: var(--lh-loose);
}

.journal-entry .entry-remove {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  opacity: 0;
  border: none;
  background: var(--cream);
  color: var(--ink-faint);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--dur-fast);
}
.journal-entry:hover .entry-remove { opacity: 1; }
.journal-entry .entry-remove svg { width: 13px; height: 13px; }

.journal-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
