@import url('//fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

.ck-editor h1 {
  font: var(--f-Poppins-54-700);
}

.ck-editor h2 {
  font: var(--f-Poppins-27-700);
}

.ck-editor h3 {
  font: var(--f-Poppins-20-700);
}

.ck-editor h4 {
  font: var(--f-Poppins-18-700);
}

.ck-editor h5 {
  font: var(--f-Poppins-16-700);
}

.ck-editor h1.section-title,
.ck-editor h2.section-title,
.ck-editor h3.section-title{
  color: var(--orange);
}

.ck-editor a {
  color: currentColor;
}

.ck-editor a.button-more {
  font: var(--f-Poppins-18-700);
  /* text-transform: uppercase; */
  padding: 0.5rem 0.65rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  color: var(--blue);
  border: 3px solid var(--blue);
  display: inline-block;
  width: fit-content;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.ck-editor a.button-more:hover {
  background-color: var(--blue);
  color: white;
}

.ck-editor a.button-cta {
  font: var(--f-Poppins-18-500);
  /* text-transform: uppercase; */
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  padding: 1rem 1.15rem;
  background-color: var(--blue);
  border: 3px solid var(--blue);
  display: inline-flex;
  align-items: baseline;
  gap: 1.5rem;
  width: fit-content;
}

.ck-editor a.button-cta:hover,
.ck-editor a.button-cta.button-outline {
  color: var(--blue);
  background-color: white;
}

.ck-editor a.button-cta.button-outline:hover {
  color: white;
  background-color: var(--blue);
}

.ck-editor a.button-cta.button-arrow:after {
  content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'><path d='M1.5 18L9.5 10L1.5 2' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  display: block;
  height: 1rem;
  width: 0.5rem;
}

.ck-editor a.button-cta.button-arrow:hover:after {
  content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'><path d='M1.5 18L9.5 10L1.5 2' stroke='SteelBlue' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.ck-editor p {
  margin: 0;
  font: var(--f-Poppins-16-400);
  margin-block-end: 1.125rem;
}

.ck-editor p.presentation{
  font: var(--f-Poppins-24-700);
 }

.ck-editor p.presentation.gray{
  color: var(--gray);
}

.ck-editor iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.ck-editor .iframe-container > div{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.ck-editor img{
  max-width: 100%;
  height: auto;
}

.ck-editor ol,
.ck-editor ul{
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.ck-editor ul{
  list-style-type: none;
}

.ck-editor ol li,
.ck-editor ul li{
  padding: 0.5rem 1.125rem 0.5rem 0.85rem;
  border-left: 3px solid var(--orange);
}

.ck-editor ol.highlighted li,
.ck-editor ul.highlighted li{
  background-color: var(--gray-200);
}


@media (min-width:48rem) {
  .ck-editor body {
    font: var(--f-Poppins-18-400)
  }

  .ck-editor h1 {
    /* font: var(--f-Poppins-72-700); */
    font: var(--f-Poppins-54-700);
  }

  .ck-editor h2 {
    /* font: var(--f-Poppins-54-700); */
    font: var(--f-Poppins-36-700);
  }

  .ck-editor h3 {
    /* font: var(--f-Poppins-36-700); */
    font: var(--f-Poppins-27-700);
  }

  .ck-editor h4 {
    /* font: var(--f-Poppins-27-700); */
    font: var(--f-Poppins-24-700);
  }

  .ck-editor h5 {
    font: var(--f-Poppins-18-700);
  }

  .ck-editor p.presentation{
    /* font: var(--f-Poppins-27-700); */
    font: var(--f-Poppins-24-700);
  }

  .ck-editor a.button-cta {
    /* font: var(--f-Poppins-27-500); */
    font: var(--f-Poppins-24-500);
    padding: 1.25rem 1.5rem;
  }

  .ck-editor a.button-more {
    padding: 0.75rem 1.125rem;
  }
}

@media(min-width:62rem) {
  .ck-editor h2.section-title{
    margin: 4rem auto;
  }
}


