.wysiwyg-block {
	&:first-child {
		margin-top: 40px;
	}

	&:not(:last-child) {
		margin-bottom: 40px;
	}

	.container {
		max-width: 694px;
		margin: 0 auto;
	}

	h1 {
		margin-bottom: 56px;
	}

	:is(h2, h3, h4, h5):not(:first-child) {
		margin-top: 40px;
		margin-bottom: 16px;
	}

	p, ul, ol {
		margin-bottom: 16px;
	}

	ul {
		li {
			position: relative;
			padding-left: 24px;
			margin-bottom: 8px;

			&:last-child {
				margin-bottom: 0;
			}

			&:before {
				content: '';
				position: absolute;
				top: 13px;
				left: 12px;
				transform: translate(-50%, -50%);
				width: 3px;
				height: 3px;
				background-color: var(--text-color);
			}
		}
	}

	@media(max-width: 1199px) {
		&:first-child {
			margin-top: 0;
		}
	}
}