<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Simple text block specific styles
 * 
 */

/** General */
	.simple-text-block .container {
		flex-wrap: wrap;
	}
	.simple-text-block.one-col .container {
		max-width: 1000px;
	}

		.simple-text-block h2 {
			margin-top: 0;
		}
		.simple-text-block.one-col h2 {
			flex: 100%;
		}
		.simple-text-block.two-col h2 {
			flex: 0 50%;
			padding-right: 3em;
			box-sizing: border-box;
		}

		.simple-text-block .content {
			width: 100%;
		}
		.simple-text-block.two-col .content {
			flex: 1;
		}

/** Responsive */
	@media only screen and (max-width: 959px) {
		
		.simple-text-block.two-col h2 {
			flex: 0 100%;
			padding-right: 0;
		}

	}</pre></body></html>