/* SA Elementor Widgets - Text Editor */

.sa-text-editor {
	--sa-text-editor-container-width: var(--sa-container, 1180px);
	--sa-text-editor-container-gutter: 40px;
	padding: 80px 0;
	color: #416a72;
	background: #ffffff;
	font-family: Manrope, sans-serif;
	overflow: hidden;
}

.sa-text-editor,
.sa-text-editor * {
	box-sizing: border-box;
}

.sa-text-editor__inner {
	width: min(calc(100% - var(--sa-text-editor-container-gutter)), var(--sa-text-editor-container-width));
	margin: 0 auto;
}

.sa-text-editor__content {
	min-width: 0;
	font-family: Manrope, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.75;
	overflow-wrap: anywhere;
}

.sa-text-editor__content > :first-child {
	margin-top: 0;
}

.sa-text-editor__content > :last-child {
	margin-bottom: 0;
}

.sa-text-editor__content h1,
.sa-text-editor__content h2,
.sa-text-editor__content h3,
.sa-text-editor__content h4,
.sa-text-editor__content h5,
.sa-text-editor__content h6 {
	margin: 1.35em 0 0.55em;
	color: #2e545e;
	font-family: "Libre Caslon Text", serif;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
}

.sa-text-editor__content h1 {
	font-size: 3rem;
}

.sa-text-editor__content h2 {
	font-size: 2.625rem;
}

.sa-text-editor__content h3 {
	font-size: 2rem;
}

.sa-text-editor__content h4 {
	font-size: 1.5rem;
}

.sa-text-editor__content p {
	margin: 0 0 18px;
}

.sa-text-editor__content strong,
.sa-text-editor__content b {
	color: #2e545e;
	font-weight: 800;
}

.sa-text-editor__content u {
	text-decoration-color: #416a72;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.sa-text-editor__content a {
	color: #2e545e;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(46, 84, 94, 0.4);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

.sa-text-editor__content a:hover,
.sa-text-editor__content a:focus-visible {
	color: #416a72;
	text-decoration-color: #416a72;
}

.sa-text-editor__content a:focus-visible {
	outline: 2px solid rgba(46, 84, 94, 0.35);
	outline-offset: 3px;
}

.sa-text-editor__content ul,
.sa-text-editor__content ol {
	margin: 0 0 20px;
	padding-left: 1.4em;
}

.sa-text-editor__content li + li {
	margin-top: 8px;
}

.sa-text-editor__content li::marker {
	color: #416a72;
}

.sa-text-editor__content blockquote {
	margin: 28px 0;
	padding: 20px 24px;
	color: #2e545e;
	background: #f4f7f6;
	border-left: 3px solid #416a72;
	border-radius: 0 8px 8px 0;
}

@media (max-width: 1024px) {
	.sa-text-editor {
		--sa-text-editor-container-gutter: 32px;
		padding: 64px 0;
	}
}

@media (max-width: 767px) {
	.sa-text-editor {
		--sa-text-editor-container-gutter: 24px;
		padding: 56px 0;
	}

	.sa-text-editor__content h1 {
		font-size: 2.625rem;
	}

	.sa-text-editor__content h2 {
		font-size: 2.25rem;
	}

	.sa-text-editor__content h3 {
		font-size: 1.75rem;
	}
}

@media (max-width: 360px) {
	.sa-text-editor {
		--sa-text-editor-container-gutter: 20px;
	}
}
