:root {
  --ck-custom-background: hsl(0, 100%, 100%);
  --ck-color-base-border: #e5e5e5;
}

.ck.ck-editor__top .ck-sticky-panel .ck-toolbar {
  background: #fff;
}

.ck-editor .ck-content {
  max-height: 1000px;
  overflow: hidden;
  overflow-y: scroll;
  min-height: 400px;
}

/*
 * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */
.ck-content pre {
  background: hsl(0deg 0% 0% / 81%);
  border: 1px solid #c4c4c4;
  border-radius: 2px;
  color: #d5d5d5;
  direction: ltr;
  font-style: normal;
  min-width: 200px;
  padding: 0;
  tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  border-radius: 5px;
}

.ck-content pre code {
  background: transparent;
  border: 0;
  color: #d5d5d5;
  display: block;
  font-size: 1em;
  line-height: 1.5em;
  padding: 1em;
  white-space: pre-wrap;
}

.ck-content pre .code-lang {
  display: flex;
  justify-content: space-between;
  background-color: #000;
  padding: 0.2em 1em;
  align-items: center;
  border-radius: 5px 5px 0 0;
}

.ck-content pre .code-lang .lang {
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}

.ck-content pre .code-lang .code-copy button {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  min-height: auto;
  height: auto;
}

.ck-content pre .code-lang .code-copy button>span {
  font-size: 20px;
  margin-right: 3px;
}

.ck-content pre .code-lang .code-copy button .tooltip {
  display: flex;
  align-items: center;
}

.ck-content pre .code-lang .code-copy button .tooltip>span {
  font-size: 20px;
  margin-right: 3px;
}

.ck.ck-editor__editable pre {
  position: relative;
}

.ck-content .todo-list .todo-list__label>input[checked]:before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.ck-content figure.media {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 56.25%;
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .ck-editor .ck-content {
    min-height: 300px;
  }
}





.ck-content,
.ck-content * {
  --font-size-default: 16px;
  font-size: var(--font-size-default);
  color: unset;
}

/* 제목 1 */
.ck-content h2 {
  font-size: 2.5em;
}

/* 제목 2 */
.ck-content h3 {
  font-size: 1.875em;
}

/* 제목 3 */
.ck-content h4 {
  font-size: 1.45em;
}

.ck-content h2 *,
.ck-content h3 *,
.ck-content h4 * {
  font-size: inherit;
}

/* 글자 크기 속성 */
.ck-content .text-tiny {
  font-size: 0.7em;
}

.ck-content .text-small {
  font-size: 0.85em;
}

.ck-content .text-big {
  font-size: 1.4em;
}

.ck-content .text-huge {
  font-size: 1.8em;
}

/* 리스트 속성 */
.ck-content ul,
.ck-content ol {
  padding-left: 1.5em;
}


/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .ck-content,
  .ck-content * {
    --font-size-default: 13px;
  }
}