
/* -------- Elements -------- */

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	background: #fff;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #f3f3f3;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul {
	list-style: outside disc;
}

ol {
	list-style: outside decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dl {
	margin: 0 0 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

table,
th,
td {
	border: 1px solid #f3f3f3;
}

table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin: 0 0 1.5em;
	table-layout: fixed;
	width: 100%;
}

th {
	border-width: 0 1px 1px 0;
}

td {
	border-width: 0 1px 1px 0;
}

th,
td {
	padding: 0.25em;
}

/* -------- Layout -------- */

.entry-hero-wrapper,
.hentry-wrapper,
.site-content-wrapper,
.site-footer-wrapper,
.site-header-wrapper,
.site-content-wrapper .has-post-thumbnail .entry-header-wrapper,
.widget-area-wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	max-width: 56.25rem;
	width: 90%;
	width: calc(100% - 3em);
}

.content-area,
.site-content-wrapper {
	width: 100%;
}

.content-area,
.site-header-wrapper {
	max-width: 100%;
}

.site-content-wrapper {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	position: relative;
}
.site-content {
	overflow-x: hidden; 
}

/* -------- Gutenberg -------- */

.alignfull {
	width: 100vw;
    margin-left: calc( 50% - 50vw );
    max-width: none;
}
.alignwide {
    max-width: none;
}
@media (min-width: 1000px) {
	.alignwide {
		width: 75vw;
		margin-left: calc( 50% - 37.5vw );
    	max-width: none;
	}
}