* {
	box-sizing: border-box;
}

.wysiwyg a {
	border-bottom-color: transparent;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	color: var(--link-color);
	display: inline-block;
	transition-duration: var(--enter);

}

.wysiwyg a:hover {
	border-bottom-color: var(--link-color);
}
.wysiwyg b {
	font-weight: 700;
}

.wysiwyg strong {
	font-weight: 500;
}

.wysiwyg i {
	font-style: italic;
}

.wysiwyg em {
}

.wysiwyg h1 {
	font-size: var(--fz-2);
	font-weight: 500;
	line-height: var(--lh-1);
	margin-bottom: 1rem;
}

.wysiwyg h2 {
	font-size: var(--fz-3);
	font-weight: 600;
	line-height: var(--lh-1);
	margin-bottom: 1rem;
}

.wysiwyg h3 {
	font-size: var(--fz-1);
	font-weight: 600;
	line-height: var(--lh-1);
}

.wysiwyg h4 {
	font-size: var(--fz-1);
	margin-bottom: 0.5rem;

}

.wysiwyg h4:not(:first-child) {
	margin-top: 3rem;
}

.wysiwyg p {
	font-weight: 300;
	line-height: var(--lh-1);

	&:not(:last-child) {
		margin-bottom: 1rem;
	}
}

.wysiwyg blockquote {
}

/*.wysiwyg ul {
	max-width: 820px;

	&:not(:last-child) {
		margin-bottom: 1rem;
	}

	li {
		font-weight: 300;
		line-height: var(--lh-1);
		margin-bottom: 0.5rem;
		padding-left: 0.75rem;
		position: relative;

		&::before {
			background-color: var(--text-color);
			border-radius: 50%;
			content: '';
			height: 4px;
			left: 0;
			position: absolute;
			top: 0.5rem;
			width: 4px;
		}

		svg {
			height: 1rem;
			margin-right: 0.5rem;
			width: 1rem;
		}

		a {
		}
	}
}*/

/*.wysiwyg ol {
	margin-bottom: 1rem;
	padding-left: 1.25rem;

	li {
		font-weight: 300;
		line-height: var(--lh-1);
		list-style-type: decimal;
		margin-bottom: 0.5rem;

		a {
		}
	}
}

.wysiwyg img {
	max-width: 100%;

	&:not(:last-child) {
		margin-bottom: 2rem;
	}

	&.aligncenter {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}*/

.wysiwyg iframe {
	height: 320px;
	max-width: 640px;
	width: 100%;
}

.wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding-left: 1rem;
	padding-right: 1rem;
	width: 100%;
}

.wrapper .wrapper {
	padding-left: initial;
	padding-right: initial;
}

.footer {
	padding-bottom: 2rem;
}

.footer .wysiwyg {
	font-size: 80%;
}