@media only screen and (min-width: 0rem) {
  .post-body h2,
  .post-body h3,
  .post-body h4,
  .post-body h5,
  .post-body h6 {
    font-weight: 700;
    text-align: inherit;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  .post-body h2 {
    font-size: 1.875rem;
    margin-top: 2rem;
  }
  .post-body h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2rem;
  }
  .post-body h4,
  .post-body h5,
  .post-body h6 {
    font-size: 1.25rem;
  }
  .post-body p,
  .post-body dl {
    font-size: 1.2rem;
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0 0 1.8rem 0;
    color: var(--bodyTextColor);
  }
  .post-body p:last-of-type,
  .post-body dl:last-of-type {
    margin-bottom: 2rem;
  }
  .post-body p a,
  .post-body dl a {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    filter: brightness(120%);
  }
  .post-body p a:hover,
  .post-body dl a:hover {
    text-decoration: none;
  }
  .post-body dt {
    font-weight: 600;
  }
  .post-body ol,
  .post-body ul {
    padding-left: 1.5rem;
    margin: 0 0 2rem 0;
    color: var(--bodyTextColor);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .post-body ol li,
  .post-body ul li {
    font-size: 1.2rem;
    color: var(--bodyTextColor);
  }
  .post-body img {
    max-width: 100%;
    height: auto;
  }
  .post-body img.alignleft,
  .post-body img.alignright,
  .post-body img.aligncenter {
    float: none;
    display: block;
    margin: 1rem auto;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .post-body img.alignleft {
    float: left;
    margin: 0 1rem 0.3rem 0;
  }
  .post-body img.alignright {
    float: right;
    margin: 0 0 0.3rem 1rem;
  }
}
/*-- -------------------------- -->
<---        Body Content        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-page-1399 {
    padding: var(--sectionPadding);
    background-color: #fff;
    /* clips the wave background from causing overflow issues when it goes off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #content-page-1399 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  #content-page-1399 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 46.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content-page-1399 .cs-content .cs-title {
    width: 100%;
    max-width: auto;
    font-size: 2rem;
    font-weight: 700;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #content-page-1399 .cs-container {
    align-items: center;
    justify-content: center;
  }
  #content-page-1399 .cs-content {
    width: 100%;
    max-width: 46.875rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
}
