#wysiwyg-base {
  /* Community guidelines spcific styles */
  h1 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 4.5px;
    font-weight: 900;
    color: var(--color-purple);
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    max-width: 970px;
    margin: 0 auto 35px;
    &::after {
      content: "";
      position: absolute;
      width: 137px;
      height: 1px;
      background-color: var(--color-purple);
      bottom: 0;
      left: 0;
    }
  }
  padding: 62px 20px 86px !important;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  @media (min-width: 768px) {
    padding: 62px 40px 86px !important;
    h1 {
      text-align: center;
      &::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }
  }
  @media (min-width: 1024px) {
    padding: 108px 135px 78px;
  }
  /* End of Community guidelines styles */
}


.base,
.ck.ck-content {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: var(--fw-normal);
    color: var(--color-black);
  }

  h1,
  h2,
  h3 {
    line-height: 110%;
  }

  h4,
  h5,
  h6 {
    line-height: 130%;
  }

  h1 {
    font-size: var(--fs-heading3xl);
  }

  h2 {
    font-size: var(--fs-heading2xl);
  }

  h3 {
    font-size: var(--fs-headingxl);
  }

  h4 {
    font-size: var(--fs-headinglg);
  }

  h5 {
    font-size: var(--fs-headingmd);
  }

  h6 {
    font-size: var(--fs-headingsm);
  }

  /* Note size is currently overridden by _typography.scss */
  p {
    margin: 1rem 0;
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    font-family: var(--ff-base);
  }

  p.large {
    font-size: var(--fs-lg);
  }

  p.small {
    font-size: var(--fs-sm);
  }

  hr {
    color: var(--color-gray);
    margin: 1rem 0;
  }

  ul > li::marker {
    color: var(--color-pink)
  }

  ul,
  ol {
    margin-left: 1.5rem;
  }

  ul.two-column-list {
    grid-column-gap: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 1rem;
    padding-left: 0;
    & > li:before {
      content: none;
    }
    li {
      margin-top: .5rem;
    }
  }
  @media (max-width: 600px) {
    ul.two-column-list {
      grid-template-columns: 1fr;
    }
  }
  ol {
    li {
      &::marker {
        font-weight: var(--fw-bold);
        font-size: inherit;
      }
      ul {
        li {
          list-style-type: disc;
          padding: .25rem 0;
        }
      }
    }
  }
  .image {
    height: 100%;
  }
  .align-right {
    padding-left: 1rem;
    display: table;
  }
  .align-left {
    padding-right: 1rem;
    display: table;
  }
  figure {
    .image::after {
      content: "";
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--color-purple);
      margin-top: 1rem;
    }
    figcaption {
      padding: 1rem;
      font-size: var(--fs-md);
      font-weight: var(--fw-light);
      display: table-caption;
      caption-side: bottom;
    }
  }
  .embedded-content-preview-wrapper {
    display: flow-root;
    width: 100%;
  }
  ol.small {
    font-size: var(--fs-sm);
    li {
      font-size: inherit;
      &::marker {
        font-size: inherit;
      }
    }
  }
}
