/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-page-714 {
    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-714 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #content-page-714 article {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 53.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content-page-714 article .featured-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #content-page-714 article .featured-image img {
    height: auto;
    width: auto;
    max-width: 100%;
    border-radius: 0.5rem;
  }
  #content-page-714 article h1 {
    font-size: 2.2rem;
    margin: 1.75rem 0 0.3rem 0;
  }
}
@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 {
    font-size: 1.2rem;
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
  }
  .post-body p:last-of-type {
    margin-bottom: 2rem;
  }
  .post-body p a {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    filter: brightness(120%);
  }
  .post-body p a:hover {
    text-decoration: none;
  }
  .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;
  }
}
