/* list-compact.css */

/* Make list items more compact */
main article li {
  margin-bottom: 0.1rem; /* tighter spacing between <li> elements */
}

/* Reset default margins on paragraphs inside list items */
main article li p {
  margin: 0;
}

/* Add spacing only between consecutive paragraphs within one list item */
main article li p + p {
  margin-top: 0.4rem; /* adjust value as needed */
}

.crossed-out {
    text-decoration: line-through;
    text-decoration-color: red;
    text-decoration-thickness: 2px;
    text-decoration-style: wavy;
}
