/**
 * @file
 * Ckeditor styles
 * Use Globaly
 */


/**
 * Font Size
 */

.heading-size-xs {
  font-size: var(--heading-size-xs);
}
.heading-size-s {
  font-size: var(--heading-size-s);
}
.heading-size-m {
  font-size: var(--heading-size-m);
}
.heading-size-l {
  font-size: var(--heading-size-l);
}

.part-title {
  color: var(--color-brand--1);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  line-height: 42px;
}
.part-title::before {
  content: '';
  display: block;
  position: relative;
  width: 10px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(".../../../images/ckeditor/round-brown.svg");
  flex-shrink: 0;
}
