
/* THE HABITUAL MIND — Journal and reflect, Daily mindset, Mood and wellbeing,
   Through the day and Settings are now permanently open, at her request.
   They were `<details class="mn-fold">` accordions whose "+" is a CSS pseudo-element
   on the summary (`.mn-fold > summary::after{content:"+"}`), so removing the sign is
   a style change, not a markup one. */
#page-mind .mn-fold > summary::after,
#page-mind .mn-fold[open] > summary::after{
  content:none !important;
}
/* the summary stops behaving like a control — it is just the section heading now */
#page-mind .mn-fold > summary{
  cursor:default !important;
  pointer-events:none;
  margin-bottom:14px !important;
}
/* a <details> that is not open hides its content; forced open below in JS, but this
   keeps it visible even for the instant before the script runs */
#page-mind .mn-fold > *:not(summary){ display:revert; }
