/* ------------------------------ */
/* ------------------------------ */

/*

0.  VARIABLE
1.  TEXT APPEARANCE
2.  PARAGRAPH FORMATTING

*/

/* ------------------------------ */
/* ------------------------------ */

/* -------------------------------- 0. VARIABLE */
/* -------------------------------------------- */

:root {
}

/* ------------------------------ */
/* ------------------------------ */

/* -------------------------------- 1. TEXT APPEARANCE */
/* --------------------------------------------------- */

.underlined {
  text-decoration: underline;
}

/* ------------------------------ */
/* ------------------------------ */

/* -------------------------------- 2. PARAGRAPH FORMATTING */
/* -------------------------------------------------------- */

.wrapper.textContent p {
  margin-bottom: 1.2em;
}
.wrapper.textContent p:last-of-type {
  margin-bottom: 0;
}

p.list {
  display: block;
}
p.list > span:nth-of-type(1)::before {
  content: "✦";
  display: inline-block;
  margin-right: 0.5em;
  /* color: black !important; */
}
.dark p.list > span:nth-of-type(1)::before {
  /* color: var(--color_text_dark) !important; */
}
p.list.link > span:nth-of-type(2) {
  position: relative;
  cursor: help;
  text-decoration: underline;
}
p.list.link:hover {
  color: var(--color_active_light);
}
.dark p.list.link:hover {
  color: var(--color_active_dark);
}
p.list.link > span:nth-of-type(2):hover::after {
}

/* ------------------------------ */
/* ------------------------------ */
