.postContent ul, .listingIntro ul {
  list-style: none; /* Remove default bullets */
}

.postContent ul li::before, .listingIntro ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: red; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

/* DES-5953 */
.footerBox.FooterLogos p, .footerBox.FooterLogos p a {
	opacity: 1
}

/* Update twitter icon to x */
ul.socialIcons li a.twitter::before, ul.shareList li a.twitter::before {
    font-family: "Font Awesome 6 Brands" !important;
    content: "\e61b" !important;
}