/* remove empty paragraphs */
.q-editor p:has(> br:only-child),
.q-editor .readmore-block p:has(> br:only-child) {
	display: none;
}

/* headings */
.q-editor h1 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.2;
}

.q-editor h2 {
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.25;
}

.q-editor h3 {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.35;
}

/* unordered list */
.q-editor ul {
	list-style-type: disc;
	padding-left: 1.5rem;
	margin: 0;
}

/* ordered list */
.q-editor ol {
	list-style-type: decimal;
	padding-left: 1.5rem;
	margin: 0;
}

/* list item */
.q-editor li {
	line-height: 1.75;
	margin-bottom: 0.5rem;
}

/* text align */
.q-editor .ql-align-left {
	text-align: left;
}

.q-editor .ql-align-center {
	text-align: center;
}

.q-editor .ql-align-right {
	text-align: right;
}

.q-editor .ql-align-justify {
	text-align: justify;
}

/* link */
.q-editor a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* bold */
.q-editor strong {
	font-weight: 700;
}

/* italic */
.q-editor em {
	font-style: italic;
}