/* editor.css */

/*
diese Datei wird auch vom Editor TinyMCE genutzt
*/

/*******************************/
/********* Allgemeines *********/
/*******************************/
p {
    font-size: 1.25em;
    line-height: 1.6;
    color: var(--bs-dark);
}

/*******************************/
/************ Links ************/
/*******************************/
a {
    font-weight: bold;
    color: var(--bs-primary);
    text-decoration: none;
}

a:active,
a:hover {
    color: var(--bs-dark);
    text-decoration: underline;
}

.btn:hover {
    text-decoration: none;
}

/*******************************/
/******** Überschriften ********/
/*******************************/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-02);
    font-style: normal;
    font-variant: small-caps;
    letter-spacing: 1px;
    color: var(--bs-primary);
    text-align: center;

}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}