.ckeditor {
  margin-bottom: 40px;

  @media (max-width: 480px) {
    margin-bottom: 32px;
  }

  & strong {
    font-weight: 600;
  }

  & p {
    margin-bottom: 16px;

    & strong {
      font-weight: 600;
    }

    @media (max-width: 480px) {
      font-size: 14px;
    }
  }

  & h3 {
    margin-bottom: 16px;
    margin-top: 8px;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    & strong {
      font-weight: 600;
    }

    @media (max-width: 480px) {
      font-size: 20px;
    }
  }

  & ul {
    list-style:disc;
    padding-left: 25px;
  }

  & ol {
    list-style:decimal;
    padding-left: 25px;
  }

  & li {
    @media (max-width: 480px) {
      font-size: 14px;
    }
  }

  & img {
    width: 100% !important;
    height: auto !important;
    border-radius: 16px;
    margin-block: 40px;

    @media (max-width: 480px) {
      margin-block: 32px;
    }
  }

  & input[type="image"] {
    width: 100% !important;
    height: auto !important;
    border-radius: 16px;
    margin-block: 40px;

    @media (max-width: 480px) {
      margin-block: 32px;
    }
  }

  & blockquote {
    border-left: 4px solid #008734;
    padding-left: 32px;

    & strong {
      font-weight: 600;
    }

    @media(max-width: 480px) {
      padding-left: 24px;

      p {
        font-size: 18px;
      }
    }
  }

  & .special-quote {
    background-color: #D2ECDC;
    border-radius: 16px;
    padding: 16px 32px 24px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-block: 40px;

    @media (max-width: 480px) {
      font-size: 18px;
      line-height: 24px;
      padding: 8px 16px 16px;
      margin-block: 32px;
    }

    & strong {
      font-weight: 600;
    }

    &::before {
      content: '';
      display: block;
      width: 48px;
      height: 48px;
      margin-bottom: 8px;
      background-image: url("../../img/svg/format_quote.svg");

      @media (max-width: 480px) {
        width: 40px;
        height: 40px;
      }
    }
  }
}