/*
:root {
    --content-gap: var(--space-m);
    --content-gap--s: var(--space-s);
}
*/
.md__text--white {
  color: var(--text-light) !important;
}
/* override Contact Form message field test color */
.form__text-area--white::placeholder {
  color: var(--text-light) !important;
}
/* Text List to columns */
.song__list {
  column-gap: 2em;
}
.song__list.song__list--col3 {
  column-count: 3;
  column-width: 25rem;
}
.song__list.song__list--col2 {
  column-count: 2;
  column-width: 25rem;
}
.song__list.song__list--col1 {
  column-count: 1;
}
.song__list ul {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
  line-height: 1.2;
}
.song__list ul li {
  margin-bottom: 0.5em;
}
/*  Data Member Status */
[data-member-status="1"] {
  transform: translateY(-1em);
}
@media only screen and (max-width: 768px) {
  [data-member-status="1"] {
    transform: none;
  }
}
/* Bricks Video remove white space caused by Perfmatters Lazy Load */
/* --------if not using Perfmatters, can remove from global ------ */
.brxe-video .perfmatters-lazy-youtube {
  margin-top: -56.25%;
}
