.editorContent {
  font-family: var(--ff-base);
  font-weight: 500;
  line-height: 1.45;
  text-align: justify;
  color: var(--color-black);
  font-size: 24px;
}
@media (max-width: 768px) {
  .editorContent {
    font-size: 15px;
  }
}
@media (min-width: 1921px) {
  .editorContent {
    font-size: calc(24 / 1920 * 100vw);
  }
}
@media (max-width: 768px) {
  .editorContent {
    line-height: 1.4;
  }
}
.editorContent > * {
  margin: 0;
}
.editorContent > * + * {
  margin-top: 1.4em;
}
.editorContent > h2 {
  font: inherit;
}
.editorContent > .has-underscore {
  margin-top: 0;
}
.editorContent > .has-underscore::before {
  content: "_";
  display: block;
  margin-bottom: 0.2em;
}
.editorContent > .has-text-align-left,
.editorContent > .alignleft {
  text-align: left;
}
.editorContent a {
  color: inherit;
  text-decoration: underline;
  word-break: break-word;
}
@media (hover: hover) and (pointer: fine) {
  .editorContent a:hover {
    text-decoration: none;
  }
}