/*
Theme Name: Lawrence English
Theme URI: https://www.3n.design
Description: Please don't steal.
Author: Yann Novak Design
Author URI: https://www.3n.design
Version: 1.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Typography
	2.	Transitions
	3.	Color
	4. 	Layout Base
	5.	Element Base
	6. 	Helper Classes
	7. 	Site Header
	8. 	Menu Modal
	9. 	Page Templates
		a.	Index
		b. 	Template: Cover Template
		c. 	Template: Full Width
	10. Archive
		a.	Post
		b. 	Grid
		c. 	List
	11. Post
		a.	News
		b.	Sound
		c.	Art
		d.	Live
		e.	Writing
		f.	Curation
	12. Blocks
	13. Entry Content
	14. Site Pagination
	15. Error 404

-------------------------------------------------------------- */

/* --------------------------------------------------------------
= 0. CSS Reset
-------------------------------------------------------------- */

html,
body {
	border: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

blockquote::before,
blockquote::after {
	content: "";
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
.group:after {
	content: "";
	display: table;
	clear: both;
}

/* --------------------------------------------------------------
= 1. Typography
-------------------------------------------------------------- */

body,
#header--btn button {
	font-family: freight-display-pro, serif;
	font-size: 18px;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.056em;
	line-height: 1.5em;
}
a {
	transition: all 300ms ease;
}
h3,
h4,
#menu,
figcaption,
nav {
	font-family: neuzeit-grotesk, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
i, em {
	font-weight: 500;
	font-style: italic;
}
b, strong {
	font-weight: 700;
	font-style: normal;
}
em strong,
strong em {
	font-weight: 700;
	font-style: italic;
}
dl dt {
	clear: left;
	float: left;
	width: 100px;
}
dl dd {
	margin-left: 100px;
}
.page--title {
	font-size: 1.125em;
	line-height: 20px;
	margin-bottom: 25px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.section--title,
.single .entry--title {
	font-size: 1em;
	margin-bottom: 25px;
}
.entry--title,
nav {
	font-size: 1em;
}
.art-title,
.edition-title,
.curation-title {
	font-size: 0.889em;
	line-height: 1.5em;
}
.meta {
	font-size: 0.944em;
	line-height: 1.5em;
}
@media ( min-width: 768px ) {
	.page--title {
		font-size: 1.25em;
		margin-bottom: 52px;
	}
	.section--title,
	.single .entry--title {
		margin-bottom: 35px;
	}
}
@media ( min-width: 1024px ) {
	.page--title {
		margin-bottom: 62px;
	}
}
@media ( min-width: 1440px ) {
	.page--title {
		margin-bottom: 62px;
	}
}

/* --------------------------------------------------------------
= 2. Transitions
-------------------------------------------------------------- */

.pace {
	-webkit-pointer-events: none;
	        pointer-events: none;

	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
}
.pace-inactive {
	display: none;
}
.pace .pace-progress {
	height: 2px;
	position: fixed;
		top: 0;
		right: 100%;
	width: 100%;
	z-index: 2500;
}
#header,
main,
#menu {
	opacity: 0;
	transition: opacity 500ms ease;
}
.pace-done #header,
.pace-done main,
.pace-done #menu {
	opacity: 1;
}


/* --------------------------------------------------------------
= 3. Color
-------------------------------------------------------------- */

html {
	background-color: #e8e8e8;
}
.pace .pace-progress {
	background: #171717;
}
body,
#header,
#menu {
	color: #171717;
	background-color: #e8e8e8;
}
a,
a:visited,
.meta,
.grid a:hover .meta,
#header--btn button,
.page--title,
figcaption {
	color: #666666;
}
a:hover,
a:hover .meta,
#header--btn button:hover,
#header--btn button:active,
#header--btn button:focus,
.current-menu-item a {
	color: #171717;
}
.a-invert a,
.a-invert a:visited {
	color: #171717;
}
.a-invert a:hover {
	color: #666666;
}
/*
@media (prefers-color-scheme: dark) {
	html {
		background-color: #171717;
	}
	.pace .pace-progress {
		background: #e8e8e8;
	}
	body,
	#header,
	#menu {
		color: #e8e8e8;
		background-color: #171717;
	}
	a,
	a:visited,
	.meta,
	.grid a:hover .meta,
	#header--btn button,
	.page--title,
	figcaption {
		color: #999999;
	}
	a:hover,
	a:hover .meta,
	#header--btn button:hover,
	#header--btn button:active,
	#header--btn button:focus,
	.current-menu-item a {
		color: #e8e8e8;
	}
	.a-invert a,
	.a-invert a:visited {
		color: #e8e8e8;
	}
	.a-invert a:hover {
		color: #999999;
	}
}
*/

/* --------------------------------------------------------------
= 4. Layout Base
-------------------------------------------------------------- */

.container {
	margin: 0 auto;
	padding: 0 15px;
}
main {
	padding-top: 100px;
}
@media ( min-width: 414px ) {
	.container {
		padding: 0 20px;
	}
}
@media ( min-width: 768px ) {
	body,
	.container {
		padding: 0 15px;
	}
	main {
		margin-left: 33.3333332%;
		padding-top: 30px;
		width: 66.6666667%;
	}
}
@media ( min-width: 1024px ) {
	body {
		padding: 0 45px;
	}
	main {
		margin-left: 25%;
		padding-top: 60px;
		width: 75%;
	}
	.entry--content {
		width: 66.6666667%;
	}
	.entry--meta {
		width: 33.3333332%;
	}
}
@media ( min-width: 1440px ) {
	body {
		padding: 0 75px;
	}
	main {
		padding-top: 90px;
	}
}

/* --------------------------------------------------------------
= 5. Element Base
-------------------------------------------------------------- */

figure {
	display: block;
	margin: 0;
}
iframe {
	display: block;
	width: 100%;
}
video {
	display: block;
}
svg,
img,
picture,
embed,
object {
	display: block;
	height: auto;
	width: 100%;
}
a img,
a picture {
	opacity: 1;
	transition: opacity 300ms ease;
}
a:hover img,
a:hover picture {
	opacity: 0.7;
}

/* --------------------------------------------------------------
= 6. Helper Classes
-------------------------------------------------------------- */

.no-dec a,
a.no-dec {
	text-decoration: none;
}
.inline {
	display: inline;
}
.float {
	float: left;
}
.no-margin {
	margin-bottom: 0;
}

/* --------------------------------------------------------------
= 7. Site Header
-------------------------------------------------------------- */

#header {
	font-size: 1.125em;
	height: 50px;
	position: fixed;
		top: 0;
		left: 0;
	width: 100%;
	z-index: 2000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#header .container {
	padding-top: 15px;
}
#site--title,
#header--btn {
	float: left;
	height: 20px;
	line-height: 20px;
}
#site--title {
	width: calc(100% - 60px);
	white-space: nowrap;
}
#header--btn {
	text-align: right;
	width: 60px;
}
#header--btn button {
	background-color: transparent;
	font-size: 1.125em;
	height: 20px;
	line-height: 20px;
	vertical-align: top;
}
#header--btn button,
#header--btn button:hover,
#header--btn button:active,
#header--btn button:focus {
	outline: none;
}
@media ( min-width: 414px ) {
	#header {
		height: 60px;
	}
	#header .container {
		padding-top: 20px;
	}
}
@media ( min-width: 768px ) {
	#header {
		font-size: 1.25em;
		height: 50px;
		padding-left: 15px;
		width: 33.3333332%;
	}
	#header .container {
		padding-top: 30px;
	}
	#site--title,
	#header--btn {
		float: none;
	}
	#site--title {
		width: 100%;
	}
	#header--btn {
		display: none;
	}
}
@media ( min-width: 1024px ) {
	#header {
		height: 80px;
		padding-left: 45px;
		width: 25%;
	}
	#header .container {
		padding-top: 60px;
	}
}
@media ( min-width: 1440px ) {
	#header {
		height: 70px;
		padding-left: 75px;
	}
	#header .container {
		padding-top: 90px;
	}
}

/* --------------------------------------------------------------
= 8. Menu Modal
-------------------------------------------------------------- */

#menu {
	overflow: hidden;
	padding-top: 100px;
	position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
	width: 0;
	z-index: 1500;
	transition: width 300ms ease;
}
.menu--active #menu {
	width: 100%;
}
#menu .primary {
	font-size: 1em;
	line-height: 1.5em;
	text-transform: uppercase;
}
#menu .social-media {
	position: absolute;
		bottom: 15px;
	white-space: nowrap;
}
#menu .social-media li {
	display: inline-block;
	margin-right: 20px;
}
#menu .social-media li a {
	background-image: url("images/social-media-icons--light.png");
	background-size: 59px 20px;
	display: block;
	height: 20px;
	opacity: 1;
	overflow: hidden;
	text-indent: -9999px;
	transition: opacity 300ms ease;
}
#menu .social-media li a:hover {
	opacity: 0.7;
}
#menu .social-media li.instagram a {
	background-position: 0 0;
	width: 20px;
}
#menu .social-media li.twitter a {
	background-position: -20px 0;
	width: 29px;
}
#menu .social-media li.facebook a {
	background-position: -49px 0;
	width: 10px;
}
/*
@media (prefers-color-scheme: dark) {
	#menu .social-media li a {
		background-image: url("images/social-media-icons--dark.png");
	}
}
*/

/* Menu: Annimation -------------------------- */

.menu--active #menu li {
	opacity: 0;
	-webkit-animation-name: fadeIn;
	        animation-name: fadeIn;
	-webkit-animation-duration: 500ms;
	        animation-duration: 500ms;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
.menu--active #menu li:first-child {
	-webkit-animation-delay: 100ms;
	        animation-delay: 100ms;
}
.menu--active #menu li:nth-child(2) {
	-webkit-animation-delay: 150ms;
	        animation-delay: 150ms;
}
.menu--active #menu li:nth-child(3) {
	-webkit-animation-delay: 200ms;
	        animation-delay: 200ms;
}
.menu--active #menu li:first-child {
	-webkit-animation-delay: 250ms;
	        animation-delay: 250ms;
}
.menu--active #menu li:nth-child(2) {
	-webkit-animation-delay: 300ms;
	        animation-delay: 300ms;
}
.menu--active #menu li:nth-child(3) {
	-webkit-animation-delay: 350ms;
	        animation-delay: 350ms;
}
.menu--active #menu li:nth-child(4) {
	-webkit-animation-delay: 400ms;
	        animation-delay: 400ms;
}
.menu--active #menu li:nth-child(5) {
	-webkit-animation-delay: 450ms;
	        animation-delay: 450ms;
}
.menu--active #menu li:nth-child(6) {
	-webkit-animation-delay: 500ms;
	        animation-delay: 500ms;
}
.menu--active #menu li:nth-child(7) {
	-webkit-animation-delay: 550ms;
	        animation-delay: 550ms;
}
.menu--active #menu li:nth-child(8) {
	-webkit-animation-delay: 600ms;
	        animation-delay: 600ms;
}
.menu--active #menu li:nth-child(9) {
	-webkit-animation-delay: 650ms;
	        animation-delay: 650ms;
}
.menu--active #menu li:nth-child(10) {
	-webkit-animation-delay: 700ms;
	        animation-delay: 700ms;
}
.menu--active #menu li:nth-child(11) {
	-webkit-animation-delay: 750ms;
	        animation-delay: 750ms;
}
@-webkit-keyframes fadeIn {
	from {
    	opacity: 0;
		transform: translate3d(-10px, 0, 0);
	}
	to {
  		opacity: 1;
		transform: none;
	}
}
@keyframes fadeIn {
	from {
    	opacity: 0;
		transform: translate3d(-10px, 0, 0);
	}
	to {
  		opacity: 1;
		transform: none;
	}
}

@media ( min-width: 768px ) {
	#menu {
		padding-left: 15px;
		width: 33.3333332%;
	}
	#menu li {
		opacity: 1;
		-webkit-animation-name: Pause;
				animation-name: Pause;
	}
	#menu .social-media {
		bottom: 30px;
	}
}
@media ( min-width: 1024px ) {
	#menu {
		padding-top: 140px;
		padding-left: 45px;
		width: 25%;
	}
	#menu .social-media {
		bottom: 60px;
	}
}
@media ( min-width: 1440px ) {
	#menu {
		padding-top: 170px;
		padding-left: 75px;
	}
	#menu .social-media {
		bottom: 90px;
	}
}

/* --------------------------------------------------------------
= 9. Page Templates
-------------------------------------------------------------- */

@media ( min-width: 768px ) {
	.page-margin {
		margin-bottom: 5px;
	}
}
@media ( min-width: 1024px ) {
	.page-margin {
		margin-bottom: 33px;
	}
}
@media ( min-width: 1440px ) {
	.page-margin {
		margin-bottom: 63px;
	}
}

/* --------------------------------------------------------------
= 9a. Page Templates: Index
-------------------------------------------------------------- */

#featured article {
	margin-bottom: 52px;
}

/* --------------------------------------------------------------
= 10. Archive: Post
-------------------------------------------------------------- */

#journal {
}
#journal .hentry {
	margin: 0 0 25px;
	position: relative;
}
.entry--header {
	margin-bottom: 1.5em;
}
@media all and (min-width: 768px) {
}
@media all and (min-width: 1024px) {
	#journal {
		margin-bottom: 25px;
	}
	#journal .hentry {
		margin-bottom: 35px;
	}
	.entry--header {
		margin-bottom: 0;
		position: absolute;
			top: 0;
			right: 0;
		width: 33.3333332%;
	}
}
@media all and (min-width: 1440px) {
	#journal {
		margin-bottom: 30px;
	}
	#journal .hentry {
		margin-bottom: 55px;
	}
}

/* --------------------------------------------------------------
= 10b. Archive: Grid
-------------------------------------------------------------- */

.grid {
	font-size: 0;
	line-height: 0;
	padding: 0;
	position: relative;
	text-align: justify;
	text-justify: distribute-all-lines;
}
.grid:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.grid .cell {
	font-size: 18px;
	line-height: 1.5em;
	margin: 0 0 25px;
	overflow: hidden;
	position: relative;
	text-align: left;
	vertical-align: top;
}
.grid .cell img,
.grid .cell picture {
	margin-bottom: 15px;
}
.grid .cell,
.grid .gap {
	display: inline-block;
	width: 100%;
}
@media all and (min-width: 768px) {
	.grid .cell,
	.grid .gap {
		width: calc(50% - 15px);
	}
}
@media all and (min-width: 1024px) {
	.grid {
		margin-bottom: 25px;
	}
	.grid .cell {
		margin-bottom: 35px;
	}
	.grid .cell,
	.grid .gap {
		width: calc(33.3333332% - 20px);
	}
}
@media all and (min-width: 1440px) {
	.grid {
		margin-bottom: 30px;
	}
	.grid .cell {
		margin-bottom: 55px;
	}
}

/* --------------------------------------------------------------
= 10c. Archive: List
-------------------------------------------------------------- */

.list--header {
	font-weight: 700;
	margin-bottom: 1.5em;
}
.list .list--cell {
	margin-bottom: 25px;
}
@media all and (min-width: 1024px) {
	.list {
		margin-bottom: 25px;
	}
	.list .list--cell {
		margin-bottom: 35px;
	}
}
@media all and (min-width: 1440px) {
	.list {
		margin-bottom: 52px;
	}
}

/* --------------------------------------------------------------
= 11. Post
-------------------------------------------------------------- */

.entry {
	font-size: 17px;
}
.entry h3,
.entry h4 {
	font-size: 0.941em;
}

/* --------------------------------------------------------------
= 12. Blocks
-------------------------------------------------------------- */

.has-text-align-left {
	/*rtl:ignore*/
	text-align: left;
}
.has-text-align-center {
	text-align: center;
}
.has-text-align-right {
	text-align: right;
}
.entry .has-small-font-size {
	font-size: 0.842em;
}
.entry .has-normal-font-size,
.entry .has-regular-font-size {
	font-size: 1em;
}
.entry .has-medium-font-size {
	font-size: 1.1em;
	line-height: 1.45;
}
.entry .has-large-font-size {
	font-size: 1.25em;
	line-height: 1.4;
}
.entry .has-larger-font-size {
	font-size: 1.5em;
	line-height: 1.3;
}

/* Block: Base Margins ----------------------- */

.wp-block-archives:not(.alignwide):not(.alignfull),
.wp-block-categories:not(.alignwide):not(.alignfull),
.wp-block-code,
.wp-block-columns:not(.alignwide):not(.alignfull),
.wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
.wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
.wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
.wp-block-media-text:not(.alignwide):not(.alignfull),
.wp-block-preformatted,
.wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
.wp-block-quote,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-verse,
.wp-block-video:not(.alignwide):not(.alignfull),
.wp-embed-bandcamp {
	margin-bottom: 2em;
}

/* Block: Shared Nesting Alignment Resets ---- */

[class*="__inner-container"] .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
[class*="__inner-container"] .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
}

/* Block: Image ---------------- */

.wp-block-image {
	margin-top: .25em;
}

/* Block: Shared Media Styles ---------------- */

.wp-block-embed figcaption,
.wp-block-image figcaption {
	font-size: .667em;
	margin-bottom: 0;
	margin-top: .25em;
	text-align: right;
}

/* Block: Audio ------------------------------ */

.wp-block-audio audio {
	width: 100%;
}

/* Block: Button ----------------------------- */

.wp-block-button {
	margin: 3rem 0;
}
.wp-block-button.is-style-outline {
	color: #cd2653;
}
.is-style-outline .wp-block-button__link:not(.has-text-color) {
	color: inherit;
}
.is-style-outline .wp-block-button__link {
	padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem);
}

/* Block: Columns ---------------------------- */

.wp-block-columns {
	margin-bottom: 1.5em;
}
.wp-block-columns:after {
	content: "";
	display: table;
	clear: both;
}
@media ( min-width: 768px ) {
	.wp-block-column {
		float: left;
		padding-left: 15px;
		padding-right: 15px;
		width: 50%;
	}
	.wp-block-column:first-child {
		padding-left: 0;
	}
	.wp-block-column:last-child {
		padding-right: 0;
	}
}

/* Block: Embed ------------------------------ */

.wp-block-embed.is-type-video .wp-block-embed__wrapper,
.wp-block-video {
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
}
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
	padding-bottom: 75%; /* 4:3 */
}
.wp-block-embed.is-type-video.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.wp-block-video {
	padding-bottom: 56.25%; /* 16:9 */
}
.wp-block-embed.is-type-video.wp-embed-aspect-21-9 .wp-block-embed__wrapper {
	padding-bottom:  41.5625%; /* 21:9 */
}
.wp-block-video video,
.wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Block: Gallery ---------------------------- */

.wp-block-gallery ul {
	list-style: none;
	margin: 0 0 -1.6rem 0;
}
figure.wp-block-gallery.alignnone,
figure.wp-block-gallery.aligncenter {
	margin-bottom: 3rem;
	margin-top: 3rem;
}
figure.wp-block-gallery.alignleft {
	margin: 0.3rem 2rem 2rem 0;
}
figure.wp-block-gallery.alignright {
	margin: 0.3rem 0 2rem 2rem;
}
figure.wp-block-gallery.alignwide {
	margin-bottom: 4rem;
	margin-top: 4rem;
}
figure.wp-block-gallery.alignfull {
	margin-bottom: 5rem;
	margin-top: 5rem;
}

/* Block: blockquote -------------------------- */

.wp-block-quote {
	border: none;
	font-style: italic;
	margin: 0;
	padding: 0;
}
.wp-block-quote p:last-of-type {
	margin-bottom: 0;
}
.wp-block-quote cite {
	font-style: normal;
}

/* Block: Separator  ------------------------- */

hr.wp-block-separator {
	border-top: 1px solid #171717;
	margin-right: 50%;
	width: 50%;
}
.wp-block-separator.is-style-wide {
	width: 100%;
}
.wp-block-separator.is-style-dots {
	border-top-style: dotted;
}
/*
@media (prefers-color-scheme: dark) {
	hr.wp-block-separator {
		border: 1px solid #e8e8e8;
	}
}
*/

/* Block: Shared Widget Styles --------------- */

.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-latest-comments {
	list-style: none;
	margin-left: 0;
}
.wp-block-archives ul,
.wp-block-categories ul,
.wp-block-latest-posts ul,
.wp-block-latest-comments ul {
	list-style: none;
}
.entry .wp-block-archives > li,
.entry .wp-block-categories > li,
.entry .wp-block-latest-posts > li,
.entry .wp-block-latest-comment > li {
	margin-left: 0;
}
.entry .wp-block-archives > li:last-child,
.entry .wp-block-categories > li:last-child,
.entry .wp-block-latest-posts > li:last-child,
.entry .wp-block-latest-comment > li:last-child {
	margin-bottom: 0;
}
.entry .wp-block-archives *,
.entry .wp-block-categories *,
.entry .wp-block-latest-posts *,
.entry .wp-block-latest-comments * {
	font-family: inherit;
}
.entry .wp-block-archives li,
.entry .wp-block-categories li,
.entry .wp-block-latest-posts li {
	color: #6d6d6d;
}

/* --------------------------------------------------------------
= 13. Entry Content
-------------------------------------------------------------- */

.entry {
	line-height: 1.5em;
}
.entry .container > * {
	margin-bottom: 1.5em;
}
.entry .container > .no-margin {
	margin-bottom: 0;
}
.read-more-button-wrap {
	margin-top: 1em;
	text-align: center;
}
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6,
.entry ul ul,
.entry ol ol,
.entry ul ol,
.entry ol ul,
.entry hr {
	margin-bottom: 1.5em;
}
.entry h4 {
	padding-top: 1.5em;
}
.entry ul {
	list-style: square outside;
	padding-left: 1.2em;
}
.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
	margin-bottom: 1.5em;
}
.alignfull {
	margin-top: 5rem;
	margin-right: auto;
	margin-bottom: 5rem;
	margin-left: auto;
	max-width: 100vw;
	position: relative;
	width: 100%;
}
[class*="__inner-container"] > .alignfull {
	max-width: 100%;
}
.alignwide {
	max-width: 120rem;
	position: relative;
	width: calc(100% - 4rem);
}
[class*="__inner-container"] > .alignwide {
	width: 100%;
}
.alignleft,
.alignright {
	max-width: 50%;
}
.alignleft {
	/*rtl:ignore*/
	float: left;
	margin: 0.3rem 2rem 2rem 2rem;
}
.alignright {
	/*rtl:ignore*/
	float: right;
	margin: 0.3rem 2rem 2rem 2rem;
}
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
	/*rtl:ignore*/
	margin-left: 2rem;
}
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
	/*rtl:ignore*/
	margin-right: 2rem;
}
.alignfull > figcaption,
.alignfull > .wp-caption-text {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* --------------------------------------------------------------
= 14. Site Pagination
-------------------------------------------------------------- */

nav {
	margin-bottom: 16px;
}
.nav--prev,
.nav--next {
	width: 50%;
}
.nav--next  {
	text-align: right;
}
@media ( min-width: 768px ) {
	nav {
		margin-bottom: 26px;
	}
}
@media ( min-width: 1024px ) {
	nav {
		margin-bottom: 56px;
		width: 66.6666667%;
	}
}
@media ( min-width: 1440px ) {
	nav {
		margin-bottom: 86px;
	}
}

/* --------------------------------------------------------------
= 15. Error 404
-------------------------------------------------------------- */
