/* Style for fun notes under headers */
.wriwoods-note {
  display: block;          /* Make sure it appears under the header */
  font-style: italic;      /* Gives a playful, handwritten vibe */
  color: #6B4C3B;          /* Soft earthy brown, fits Writing Woods aesthetic */
  font-size: 0.95em;       /* Slightly smaller than normal text */
  margin-top: 0.2em;       /* Small space below the header */
  margin-bottom: 1em;      /* Space before the next paragraph */
  padding-left: 0.3em;     /* Indent slightly for style */
  border-left: 3px solid var(--wriwoods-primary-color); /* Subtle vertical line to highlight it */
}

.wriwoods-note-alt {
  display: inline-block;           /* keeps it tight under header */
  font-style: italic;              /* playful vibe */
  color: var(--wriwoods-primary-color); 
  font-size: 0.95em;
  margin-top: 0.3em;
  margin-bottom: 1em;
  padding: 0.2em 0.6em;           /* soft padding */
  border-radius: 8px;             /* rounded, gentle edges */
  font-family: 'Georgia', serif;   /* elegant, readable font */
  text-shadow: 0 0 1px rgba(0,0,0,0.1); /* subtle depth */
  letter-spacing: 0.5px;           /* airy, relaxed feel */
  margin-left: 15px;
}