::placeholder {
	color: var(--color-text-secondary);
}

.post-content {
	display: flex;
	flex-direction: column;
	font-size: 1.25em;
	line-height: 1.75em;
}

.post-content > * {
	min-width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 auto 2rem;
}

.post-content > p,
.post-content > ul,
.post-content > ol,
.post-content > blockquote,
.post-content > pre,
.post-content > h2,
.post-content > h3,
.post-content > h4,
.post-content > h5,
.post-content > h6,
.post-content > div {
	min-width: 66.66667%;
	max-width: 66.66667%;
}

@media only screen and (max-width: 960px) {
	.post-content > p,
	.post-content > ul,
	.post-content > ol,
	.post-content > blockquote,
	.post-content > pre,
	.post-content > h2,
	.post-content > h3,
	.post-content > h4,
	.post-content > h5,
	.post-content > h6,
	.post-content > div {
		min-width: 100%;
		max-width: 100%;
	}	
}

.post-content *:not('.blocks-gallery-item'):first-child {
	margin-top: 0;
}

.post-content *:not('.blocks-gallery-item'):last-child {
	margin-bottom: 0;
}

.post-content:after {
	clear: both;
	content: '';
	display: table;
}

.post-content a {
	color: inherit;
	text-decoration: none;
	color: var(--color-accent-strong);
	transition: all ease-out 0.2s;
}

.post-content a:hover,
.post-content a:focus {

}

.post-content em,
.post-content i {
	font-style: italic;
	color: var(--color-accent);
}

.post-content strong,
.post-content b {
	font-weight: 700;
	color: var(--font-main);
}

.post-content strong a,
.post-content b a {
	font-weight: 700;
}

.post-content small {
    font-size: 0.9em;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
	position: relative;
	font-family: var(--font-lead);
	font-weight: 400;
	color: var(--color-accent-subtle);
}

.post-content h1 {
	font-size: 3em;
	line-height: 1em;
}

.post-content h2 {
	font-size: 2.25em;
	line-height: 1em;
}

.post-content h3 {
	font-size: 1.75em;
	line-height: 1.25em;
}

.post-content h4 {
	font-size: 1.5em;
	line-height: 1.25em;
}

.post-content h1 a,
.post-content h2 a,
.post-content h3 a,
.post-content h4 a,
.post-content h5 a,
.post-content h6 a {
	font-weight: inherit;
}

.post-content p {
	font-size: 1.125em;
	line-height: 1.75em;
}
@media only screen and (max-width: 640px) {

	.post-content p {
		font-size: 1em;
		line-height: 1.75em;
	}
}

.single .post-content > p:first-of-type:first-letter {
	float: left;
	font-size: 3.5em;
	line-height: 1em;
	color: var(--color-accent-subtle);
	margin-right: 0.125em;
}


.post-content ul,
.post-content ol {
	padding-left: 2rem;
}

.post-content ul {
	list-style: none;
}

.post-content li {
	position: relative;
}

.post-content ul > li:before,
.post-content ol > li:before {
	position: absolute;
	width: 1rem;
	margin-left: -2rem;
	margin-top: -1px;
	font-size: 1em;
	font-weight: 600;
	line-height: 2rem;
	text-align: right;
	font-family: var(--font-lead);
	color: var(--color-accent);
}

.post-content ul > li:before {
	content: '•';
	text-align: center;
}

.post-content ol {
	list-style-type: none;
	counter-reset: item;
}

.post-content ol > li:before {
	content: counter(item) "." !important;
	counter-increment: item;
}

.post-content ol ol,
.post-content ul ul,
.post-content ul ol,
.post-content ol ul {
	padding-left: 2rem;
}

.post-content hr {
	position: relative;
	display: block;
	max-width: 920px;
	height: 1px;
	padding: 0;
	border: 0;
	background: var(--color-border);
	margin: 2rem 0 6rem;
}

.post-content hr:after {
	content: '';
	position: absolute;
	left: 50%;
	top: -4px;
	margin-left: -3px;
	width: 11px;
	height: 11px;
	box-sizing: border-box;
	border: 3px solid var(--color-background);
	background: var(--color-accent);
	transform: rotate(45deg)
}

.post-content blockquote {
	margin: 0 auto 3rem;
	color: var(--color-text-primary);
}

.post-content blockquote p {
	margin: 1rem auto;
}

.post-content blockquote p:first-child {
	margin-top: 0;
}

.post-content blockquote p:last-child {
	margin-bottom: 0;
}

.post-content dl {
    padding-left: 40px;
    margin: 0 auto 3rem;
}

.post-content dl dt {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--color-text-secondary);;
}

.post-content dl dt:before {
    content: '';
    position: absolute;
    width: 16px;
    margin-left: -34px;
    margin-top: 11px;
    border-bottom: 2px solid var(--color-border);
}

.post-content dl dd {
    margin-left: 0;
    margin-bottom: 1rem;
}

.post-content mark {
    background-color: #FFC336;
}

.post-content code,
.post-content tt {
	position: relative;
	margin: 0 0.333em;
	padding: 0.333em 0.666em;
	font-family: monospace, sans-serif;
	font-size: 0.75em;
	white-space: pre;
	background: #faf9f7;
	top: -2px;
}

.post-content pre {
	position: relative;
	margin: 0 auto 3rem;
	padding: 1em;
	overflow: hidden;
	font-family: monospace, sans-serif;
	white-space: pre;
	background: #f7f7f7;
	border: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.post-content pre code,
.post-content pre tt {
	position: static;
	top: auto;
	margin: -1.333em -1.333em -1.333em 1.333em;
	padding: 1.333em;
	overflow: scroll;
	font-size: 0.75em;
	line-height: 2em;
	white-space: pre;
	background: transparent;
	border: none;
	vertical-align: inherit;
}

.post-content kbd {
    display: inline-block;
    margin-bottom: 0.5em;
    padding: 1px 8px;
    border: #ccc 1px solid;
    color: #666;
    text-shadow: #fff 0 1px 0;
    font-size: 0.9em;
    font-weight: bold;
    background: #f4f4f4;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 0 #fff inset;
}

.post-content table {
	width: 100%;
	max-width: 100%;
	background-color: transparent;
	border: 1px solid #CCB8A3;
}

.post-content table th,
.post-content table td {
    position: relative;
    padding: 8px 16px;
    text-align: left;
    border: 1px solid #CCB8A3;
}

.post-content table th {
    font-size: 16px;
    font-weight: 600;
    color: #2E3133;
}

.post-content img {
	display: block;
	max-width: 100%;
	height: auto;
}

form label {
	color: var(--color-text-secondary);
}

form select,
form textarea,
form input[type="url"],
form input[type="tel"],
form input[type="text"],
form input[type="email"],
form input[type="month"],
form input[type="number"],
form input[type="search"],
form input[type="password"] {
	width: 100% !important;
	height: auto !important;
	padding: 0.5rem;
	border-radius: 2px;
	box-sizing: border-box;
	transition: all ease-out 0.2s;
	outline: none;
	box-shadow: none;
	-webkit-appearance: normal;
	appearance: normal;
	color: var(--color-text-primary);
	border: 1px solid var(--color-border);
	background: var(--color-background-contrast);
}

form select {
	background-image: none;
	-webkit-appearance: none;
	appearance: none;
}

form select::-ms-expand {
	display: none;
}

form select:hover,
form textarea:hover,
form input[type="url"]:hover,
form input[type="tel"]:hover,
form input[type="text"]:hover,
form input[type="email"]:hover,
form input[type="month"]:hover,
form input[type="number"]:hover,
form input[type="search"]:hover,
form input[type="password"]:hover {
	border-color: var(--color-accent-subtle);
}

form select:focus,
form textarea:focus,
form input[type="url"]:focus,
form input[type="tel"]:focus,
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="month"]:focus,
form input[type="number"]:focus,
form input[type="search"]:focus,
form input[type="password"]:focus {
	border-color: var(--color-accent);
}

.post-content .button,
form input[type="reset"],
form input[type="submit"],
form input[type="button"],
form button {
	display: block;
	padding: 0.5rem 1rem;
	border: 0;
	border-radius: 2px;
	box-sizing: border-box;
	-webkit-appearance: normal;
	appearance: normal;
	transition: all ease-out 0.2s;
	background: var(--color-accent-subtle);
	font-weight: 700;
	color: var(--color-background);
	text-decoration: none;
	text-align: center;
}

.post-content .button:hover,
form input[type="reset"]:hover,
form input[type="submit"]:hover,
form input[type="button"]:hover,
form button:hover {
	background-color: var(--color-accent);
}

.post-content .button:focus,
form input[type="reset"]:focus,
form input[type="submit"]:focus,
form input[type="button"]:focus,
form button:focus {
	background-color: var(--color-accent-strong);
}

form .datepick-inline {
	box-shadow: none !important;
	border: 0 !important;
}

/*
	--------------------------------------------------------------------------------
		Layout
	--------------------------------------------------------------------------------
*/

.has-small-font-size {
	font-size: 0.9em;
	line-height: 1.5em;
}

.has-normal-font-size {
	font-size: 1em;
}

.has-medium-font-size {
	font-size: 1.3em;
	line-height: 1.75em
}

.has-large-font-size {
	font-size: 1.6em;
	line-height: 1.667em;
}

.has-huge-font-size {
	font-size: 2em;
	line-height: 1.5em;
}

.post-content .wp-block-image {
	margin: 2rem 0 4rem;
}

@media only screen and (max-width: 480px) {

	.post-content .wp-block-image {
		width: 100vw;
		max-width: none;
		margin: 0 0 2rem -1.5rem;
	}
}

.post-content .wp-block-image.alignfull {

}

.post-content .wp-block-image img {
	display: block;
	width: 100%;
	height: auto;
}

.post-content .wp-block-image figcaption {
	margin: 1rem auto 0;
	color: var(--color-text-secondary);
	text-align: center;
	font-size: 0.8em;
	line-height: 1.5em;
}

@media only screen and (max-width: 480px) {

	.post-content .wp-block-image figcaption {
		padding: 0 1.5rem;
	}
}


.post-content .wp-block-gallery {
	margin: 2rem 0 4rem;
}

@media only screen and (max-width: 480px) {

	.post-content .wp-block-gallery {
		width: 100vw;
		max-width: none;
		margin: 0 0 2rem -1.5rem;
	}
}

.post-content .wp-block-gallery ul {
	margin: 0 0 -16px;
	padding: 0;
	list-style: none;
}

.post-content .wp-block-gallery li::before {
	display: none;
}

.post-content .wp-block-gallery figcaption {
	box-sizing: border-box;
}

.post-content > .alignwide {
	align-self: center;
	max-width: 80rem;
	min-width: 100%;
	width: 75vw;
}

.post-content > .alignfull {
	align-self: center;
	max-width: none;
	width: 100vw;
}

.post-content > .is-style-wide {
	max-width: none;
	width: 100vw;
	align-self: center;
}

.post-content .alignleft {
	width: 50%;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.post-content .alignright {
	width: 50%;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.post-content .wp-block-image:first-child,
.post-content > .alignwide:first-child {
	margin-top: 0;
}

.post-content .wp-block-image:last-child,
.post-content > .alignwide:last-child {
	margin-bottom: 0;
}

/*
	BLOCK: Columns
*/

.post-content .wp-block-columns {}

.post-content .wp-block-columns.alignfull {
	padding: 0 2rem;
}

.post-content .wp-block-columns .wp-block-column {

}

@media (min-width: 782px) {

    .post-content .wp-block-column:not(:first-child) {
        margin-left: 3rem;
    }
}

/*
	BLOCK: Blockquote
*/

.post-content .wp-block-pullquote {
	padding: 0;
	min-width: 66.66667%;
	max-width: 66.66667%;
}

@media only screen and (max-width: 960px) {

	.post-content .wp-block-pullquote {
		min-width: 100%;
		max-width: 100%;
	}	
}

.post-content .wp-block-pullquote blockquote {
	max-width: 28rem;
	margin: 1rem 0;
	color: var(--color-accent);
}

.post-content .wp-block-pullquote.is-style-default blockquote {
	padding: 3rem;
	background: var(--color-background-contrast);
	box-shadow: inset 0 0 0 5px var(--color-background-contrast), inset 0 0 0 6px var(--color-border);
}

@media only screen and (max-width: 960px) {

	.post-content .wp-block-pullquote.is-style-default blockquote {
		padding: 1.5rem;
	}	
}

.post-content .wp-block-pullquote.is-style-solid-color blockquote {
	padding-left: 3rem;
	box-shadow: inset 2px 0 0 0 var(--color-accent);
}

@media only screen and (max-width: 960px) {

	.post-content .wp-block-pullquote.is-style-solid-color blockquote {
		padding-left: 1.5rem;
	}	
}

.post-content .wp-block-pullquote blockquote p {
	font-size: 1.25em;
	line-height: 1.5em;
}

.post-content .wp-block-pullquote blockquote strong {
	font-weight: 600;
}

.post-content .wp-block-pullquote blockquote cite {
	color: var(--color-accent-subtle);
	font-size: 0.8em;
	line-height: 1.5em;
}


/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
    white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}