/*
Theme Name: Archer
Theme URI: https://empressthemes.com/shop/archer-theme
Author: EmPress Themes
Author URI: https://empressthemes.com
Description: Archer is a clean, minimalist WordPress theme for style and lifestyle bloggers. A single-column design puts the focus on your latest words and photography.

Version: 1.2.0

Please refer to the readme.txt file for full licensing information.

Tags: one-column, flexible-header, custom-header, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, blog

Text Domain: archer

Archer is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Import Styles
# Typography
# Links
# Forms
# Layout
# Masthead
	## Site Branding
	## Top Navigation
		### Top Menu
		### Social Menu
		### Search
	## Primary Navigation
	## Mobile Navigation
# Footer
	## Footer Widget Area
	## Identity and Menu
	## Instagram
	## Credits
# Blog post feed
	## Posts
	## Post Navigation
# Single Post
	## Comments
	## Related Posts
# Archives
# Info Page
# Search Form
# 404 / Not Found
# Plugins
	## EmPress Shop the Post

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Import Styles
--------------------------------------------------------------*/

@import url('css/reset.css');

@import url('css/elements.css');

@import url('css/emfont.css');

@import url('css/archer-icons.css');

@import url('css/butler-font.css');

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #000;
	font: 15px/2em 'Lato', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.1em;
}

h1 {
	font: 30px 'Butler', serif;
	font-weight: 500;
}

h2 {
	font: 30px 'Butler', serif;
	font-weight: 500;
}

h3 {
	font: 25px 'Butler', serif;
	font-weight: normal;
}

h4 {
	font: 17px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .1em;
}

h5 {
	font: 13px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .15em;
}

h6 {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .15em;
}

.entry-title,
.em-fonts-primary {
	font: 55px/1.1111111em 'Butler', serif;
	font-weight: 500;
	text-align: center;
}

.em-fonts-primary-small {
	font-size: 25px;
}

.em-fonts-secondary {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .15em;
}

.em-fonts-tertiary {
	font-weight: 800;
	font-size: 20px;
	text-transform: lowercase;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-bottom: .5em;
}

p {
	margin-bottom: 2em;
}

	p:last-of-type {
		margin-bottom: 0;	
	}

blockquote {
	margin: 0 2em;
	font: 17px/1.47em 'Butler', serif;
}

.wp-caption {
	margin-bottom: 2em;
	max-width: 100%;
	position: relative;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	position: absolute;
	padding: 15px;
	background: #fff;
	bottom: 40px;
	right: 0;
	max-width: 140px;
}

.wp-caption-text {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .15em;
	line-height: 2.5em;
	text-align: left;
}

.gallery {
	display: flex;
	justify-content: space-between;
}

.gallery .gallery-item {
	width: 48.571429%; /* 340/700 */
}

.arrow {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 38px;
	height: 2px;
	background: #000;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.arrow-left {
	margin-right: 10px;
}

.arrow-left:before {
	content: '';
	display:block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 6px 3px 0;
	border-color: transparent #000000 transparent transparent;
	position: absolute;
	left: -6px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.arrow-right {
	margin-left: 10px;
}

.arrow-right:after {
	content: '';
	display:block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #000000;
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

@media screen and (max-width: 767px) {
	.gallery {
		display: block;
	}

	.gallery .gallery-item {
		width: 100%;
		margin-bottom: 1.5em;
	}

}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
	color: #000;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.post-single .entry-content a,
.info-page .entry-content a {
	font-weight: bold;
	-webkit-box-shadow: inset 0 -1px 0 #000;
	box-shadow: inset 0 -1px 0 #000;
}

.post-single .entry-content a:hover,
.info-page .entry-content a:hover {
	-webkit-box-shadow: inset 0 0 0 #000, 0 3px 0 #000;
	box-shadow: inset 0 0 0 #000, 0 3px 0 #000;
}

.post-single .entry-content .gallery a,
.info-page .entry-content .gallery a {
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	cursor: pointer;
	border: none;
	background: none;
	color: #000;
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .25em;
	padding: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.button {
	display: inline-block;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #000;
	font: 15px/2em 'Lato', sans-serif;
	box-sizing: border-box;
	width: 100%;
	border: none;
	padding: 15px;
	background: #F1F1F1;
}

select {
	border: 1px solid #ccc;
}

label {
	display: block;
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .1em;
	color: #000000;
	margin-bottom: 5px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #000;
}
:-moz-placeholder { /* Firefox 18- */
	color: #000;
}

/*--------------------------------------------------------------
# Gutenberg
--------------------------------------------------------------*/

p.is-small-text {
    font-size: 80%;
	line-height: 1.5em;
}

p.is-regular-text {
    font-size: inherit;
}

p.is-large-text {
    font-size: 120%;
	line-height: 1.5em;
}

p.is-larger-text {
    font-size: 125%;
	line-height: 1.5em;
}

p.has-drop-cap:not(:focus):first-letter {
    font-size: 525%;
    font-style: normal;
    font-weight: inherit;
    line-height: 80%;
}

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

.has-normal-font-size,.has-regular-font-size {
    font-size: inherit;
}

.has-medium-font-size {
    font-size: 125%;
	line-height: 1.5em;
}

.has-large-font-size {
    font-size: 150%;
	line-height: 1.5em;
}

.has-huge-font-size,.has-larger-font-size {
    font-size: 200%;
	line-height: 1.5em;
}

.wp-block-button .wp-block-button__link {
	/* border-radius: 0; */
	font-size: 85%;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.entry-content .wp-block-button a.wp-block-button__link:hover {
	-webkit-box-shadow: none;
    box-shadow: none;
}

.wp-block-pullquote blockquote {
	padding: 0;
	margin: 0;
	border: none;
}

.wp-block-pullquote p,
.wp-block-pullquote.is-style-solid-color blockquote p {
	font-size: 150%;
	line-height: 1.5em;
	text-align: center;
}

.wp-block-pullquote cite {
	display: block;
	text-align: center;
	margin-top: 10px;
}

.wp-block-image {
	position: relative;
}

.wp-block-image figcaption {
	position: absolute;
	padding: 15px;
	background: #fff;
	bottom: 40px;
	right: 0;
	max-width: 140px;
	font-size: 70%;
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: 2.5em;
	text-align: left;
}

.wp-block-gallery {
	margin-left: 0;
	list-style: none;
}

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

.wrap {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}

.flex {
	display: flex;
	justify-content: space-between;
}

.flex-wrap {
	flex-wrap: wrap;
}

#content {
	max-width: 1200px;
	margin-bottom: 105px;
}

#primary {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 767px) {
	.flex {
		display: block;
	}

}

/*--------------------------------------------------------------
# Masthead
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Site Branding
--------------------------------------------------------------*/

#masthead {
	margin: 50px auto 30px;	
}

.site-title-image {
	text-align: center;
}

.site-title-text {
	font: 65px/1em 'Work Sans', sans-serif;
	font-weight: 200;
	letter-spacing: .25em;
	text-align: center;
	text-transform: uppercase;
}

.site-description {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .25em;
	text-align: center;
}

/*--------------------------------------------------------------
## Top Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
### Top Menu
--------------------------------------------------------------*/

#top-navigation {
	max-width: 1200px;
	position: relative;
	padding-right: 50px;
	line-height: 1em;
}

	#top-navigation.no-search {
		padding-right: 0;
	}

#top-menu li {
	font: 10px/1em 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .1em;
	display: inline-block;
	padding: 10px 0;
}

#top-menu li:after {
	content: '\b7';
	display: inline-block;
	margin: 0 10px;
}

#top-menu li:last-of-type:after {
	display: none;
}

#top-menu li a {
	color: #000;
	display: inline-block;
	padding: 2px 0;
	border-bottom: 1px solid transparent;
}

#top-menu li a:hover {
	border-color: #000;
}

@media screen and (max-width: 767px) {
	#top-navigation {
		display: none;
	}
}


/*--------------------------------------------------------------
### Social Menu
--------------------------------------------------------------*/

.social-menu {
	margin-left: auto;
}

.social-menu li {
	display: inline-block;
	margin-left: 10px;
	padding: 10px 0;
}

.social-menu li a {
	color: #000;
}

.social-menu li a:hover {
	color: #C5C5C5;
}

.social-menu li a span {
	display: none;
}

.social-menu li a:before {
	content: '';
	font: 14px FontAwesome;
}

.social-menu li a[href*="instagram"]:before {
	content: '\f16d';
}

.social-menu li a[href*="pinterest"]:before {
	content: '\f0d2';
}

.social-menu li a[href*="twitter"]:before {
	content: '\f099';
}

.social-menu li a[href*="facebook"]:before {
	content: '\f09a';
}

.social-menu li a[href*="snapchat"]:before {
	content: '\f2ac';
}

.social-menu li a[href*="bloglovin"]:before {
	content: '\f004';
}

.social-menu li a[href*="youtube"]:before {
	content: '\f16a';
}

.social-menu li a[href*="eepurl"]:before,
.social-menu li a[href*="subscribe"]:before {
	content: '\f0e0';
}

.social-menu li a[href*="mailto"]:before,
.social-menu li a[href*="contact"]:before {
	content: '\f1d8';
}

.social-menu li a[href*="feed"]:before {
	content: '\f09e';
}

.social-menu li a[href*="shop"]:before {
	content: '\f290';
}

.social-menu li a[href*="liketoknow.it"]:before,
.social-menu li a[href*="liketk.it"]:before {
	content: '\f02b';
}

.social-menu li a[href*="tumblr"]:before {
	content: '\f173';
}


/*--------------------------------------------------------------
### Search
--------------------------------------------------------------*/

.sb-search {
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	max-width: 280px;
	min-width: 35px;
	height: 35px;
	float: right;
	overflow: hidden;
	-webkit-transition: width 0.3s;
	-moz-transition: width 0.3s;
	transition: width 0.3s;
	-webkit-backface-visibility: hidden;
}

input[type="search"].sb-search-input {
	border: none;
	outline: none;
	background: #F1F1F1;
	width: 100%;
	height: 35px;
	margin: 0;
	z-index: 10;
	padding: 5px 35px 5px 10px;
	color: #000;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .1em;
}

.sb-icon-search,
input[type="submit"].sb-search-submit  {
	width: 35px;
	height: 35px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0;
	margin: 0;
	line-height: 35px !important;
	text-align: center;
	cursor: pointer;
	border: none;
	font-size: 14px;
	box-sizing: border-box;
	background: #F1F1F1;
	color: #000;
}

input[type="submit"].sb-search-submit {
    opacity: 0;
	color: transparent;
	border: none;
	outline: none;
	z-index: -1;
}

.sb-icon-search {
	color: #000;
	background: #F1F1F1;
	z-index: 90;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

	.sb-icon-search:hover {
		color: #fff;
	}

.sb-search.sb-search-open,
.no-js .sb-search {
	width: 100%;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
	background: #fff;
	color: #000;
	z-index: 11;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
	z-index: 90;
}

/*--------------------------------------------------------------
## Primary Navigation
--------------------------------------------------------------*/

#site-navigation {
	float: left;
}

#primary-menu h3 {
	font-weight: 800;
	font-size: 20px;
	text-transform: lowercase;
	margin-bottom: 20px;
}

#primary-menu {
	display: inline-block;
	max-width: 150px;
	padding-top: 60px;
	text-align: center;
}

#primary-menu li {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .15em;
	margin-bottom: 20px;
}

#primary-menu li:last-of-type {
	margin-bottom: 0;
}

#primary-menu li a {
	display: inline-block;
	position: relative;
}

#primary-menu li a:after {
	content: '\f111';
	font-family: FontAwesome;
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

#primary-menu li a:hover:after {
	opacity: 1;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	#primary {
		padding: 0 190px;
		box-sizing: content-box;
	}
}

@media screen and (max-width: 1024px) {
	#site-navigation {
		display: none;
	}
}


/*--------------------------------------------------------------
## Mobile Navigation
--------------------------------------------------------------*/

#mobile-menu {
	margin-top: 40px;
	text-align: center;
	display: none;
}

#mobile-menu.is_stuck {
	z-index: 9999;
	padding: 10px;
	margin-top: 0;
	background: #fff;
	width: 100vw !important;
	left: 0;
}

.slicknav_menutxt {
	font: 20px 'Butler', serif;
	font-weight: 800;
	text-transform: lowercase;
}

.slicknav_nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.slicknav_nav li {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .15em;
	margin-top: 20px;
}

@media screen and (max-width: 1024px) {
	#mobile-menu {
		display: block;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Footer Widget Area
--------------------------------------------------------------*/

#footer-widget-area {
	padding: 55px 0 50px;
	background: #F1F1F1;
	position: relative;
}

#footer-widget-area .widget-title {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	font-weight: 800;
	font-size: 35px;
	white-space: nowrap;
}

.featured-posts {
	display: flex;
	justify-content: space-between;
}

.featured-posts li {
	width: 31.818181%; /* 350/1100 */
}

.featured-posts .featured-image a,
.featured-posts .featured-image img {
	display: block;
}

.featured-posts .featured-image img {
	margin: 0 auto;
}

.featured-posts .featured-image {
	margin-bottom: 10px;
}

.featured-posts li .entry-title {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .2em;
	line-height: 2em;
}

@media screen and (max-width: 767px) {
	.featured-posts {
		display: block;
	}

	.featured-posts li {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.featured-posts li:last-of-type {
		margin-bottom: 0;
	}
}

/*--------------------------------------------------------------
## Identity and Menu
--------------------------------------------------------------*/

#footer {
	background: #000;
	color: #fff;
	padding: 45px 30px 10px;
	text-align: center;
}

#footer a {
	color: #fff;
}

#footer-identity .site-title-text {
	font-size: 45px;
}

#footer-menu {
	max-width: 520px;
	margin: 40px auto 0;
	-moz-column-count: 3;
	-moz-column-gap: 20px;
	-webkit-column-count: 3;
	-webkit-column-gap: 20px;
	column-count: 3;
	column-gap: 20px;
}

#footer-menu li {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .25em;
	margin-bottom: 15px;
}

#footer .social-menu {
	margin: 40px 0 0 0;
}

#footer .social-menu li:first-of-type {
	margin-left: 0;
}

@media screen and (max-width: 600px) {
	#footer-menu {
		-moz-column-count: 1;
		-moz-column-gap: 0;
		-webkit-column-count: 1;
		-webkit-column-gap: 0;
		column-count: 1;
		column-gap: 0;
	}
}

/*--------------------------------------------------------------
## Instagram
--------------------------------------------------------------*/

#instagram-widget-area {
	margin-top: 5px;
}

#instagram-widget-area .widget-title,
#instagram-widget-area .null-instagram-feed p {
	display: none;
}

#instagram-widget-area .instagram-pics {
	display: flex;
	justify-content: space-between;
}

	#instagram-widget-area .instagram-pics li {
		margin-right: 5px;
	}

	#instagram-widget-area .instagram-pics li:last-of-type {
		margin-right: 0;
	}

	.instagram-pics a,
	.instagram-pics img {
		display: block;
		position: relative;
	}

	.instagram-pics a:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		background: rgba(0,0,0,.5);
		opacity: 0;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
		-webkit-backface-visibility: none;
		backface-visibility: none;
	}

	.instagram-pics a:after {
		content: '\f16d';
		display: block;
		font: 45px FontAwesome;
		color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 3;
		transform: translate(-50%,-50%);
		opacity: 0;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
		-webkit-backface-visibility: none;
		backface-visibility: none;
	}

	.instagram-pics a:hover:before,
	.instagram-pics a:hover:after {
		opacity: 1;
	}

@media screen and (max-width: 767px) {
	#instagram-widget-area .instagram-pics {
		flex-wrap: wrap;
	}
	
	#instagram-widget-area .instagram-pics li {
		width: 49.5%;
		margin: 0 0 5px 0;
	}

}

@media screen and (max-width: 400px) {
	#instagram-widget-area .instagram-pics li {
		width: 100%;
	}
}

/*--------------------------------------------------------------
## Credits
--------------------------------------------------------------*/

#site-credits {
	padding: 10px 0;
	text-align: center;
}

#site-credits li {
	display: inline-block;
	font: 8px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .1em;
	margin: 0 10px;
}



/*--------------------------------------------------------------
# Blog Post Feed
--------------------------------------------------------------*/

.post {
	margin-bottom: 95px;
}

.post-icon {
	text-align: center;
	font-size: 20px;
	margin-bottom: 5px;
}

.post-category,
.posted-on,
.post .comments-link {
	text-align: center;
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .15em;
}

.post-category {
	margin-bottom: 25px;
}

.posted-on {
	margin-bottom: 20px;
}

.post .featured-image {
	margin-bottom: 25px;
}

.post .featured-image a,
.post .featured-image img {
	display: block;
}

.post .featured-image img {
	margin: 0 auto;
}

.post .entry-title {
	margin-bottom: 20px;
}

.post .more-link {
	display: block;
	margin-top: 35px;
	padding: 15px;
	background: #F1F1F1;
	text-align: center;
	font: 20px 'Butler', serif;
	font-weight: 800;
	text-transform: lowercase;
}

.post .more-link:hover {
	background: #000;
	color: #fff;
}

.post .more-link:hover .arrow {
	background: #fff;
}

.post .more-link:hover .arrow-right:after {
	border-color: transparent transparent transparent #fff;
}

.post .comments-link {
	margin-top: 15px;
}

.post .comments-link i {
	font-size: 13px;
	vertical-align: middle;
}

/*--------------------------------------------------------------
## Posts Navigation
--------------------------------------------------------------*/

.posts-navigation,
.post-navigation {
	text-align: center;
}

.post-navigation {
	margin-bottom: 95px;
	margin-top: 40px;
}

.nav-links {
	display: inline-block;
	padding: 15px 20px;
	background: #000;
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .25em;
}

.nav-links > div {
	display: inline-block;
}

.nav-links a {
	color: #fff;
	display: inline-block;
	padding: 10px 20px;
}

.nav-links > div:first-of-type a {
	border-right: 1px solid #fff;
}

.nav-links > div:last-of-type a {
	border-right: none;
}

/*--------------------------------------------------------------
# Single Post
--------------------------------------------------------------*/

.post.post-single {
	margin-bottom: 145px;
}

.post .entry-footer {
	text-align: center;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 2px solid #F1F1F1;
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .15em;
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

#comments .wrap {
	max-width: 800px;
}

#comments-section {
	position: relative;
	padding: 70px 0 95px;
	background: #f1f1f1;
}

.comments-title {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 45px;
	font-weight: 500;
	text-transform: lowercase;
	white-space: nowrap;
}

#comments-section ul,
#comments-section ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

	.comment-list > li {
		padding-bottom: 25px;
		margin-bottom: 25px;
		border-bottom: 2px solid #fff;
	}

	.comment-list > li:last-of-type {
		padding-bottom: 0;
		margin-bottom: 0;
		border-bottom: none;
	}

	.comment-list .children li {
		margin-top: 30px;
		padding-left: 50px;
	}

	.comment-author,
	.comment-meta {
		font: 10px 'Lato', sans-serif;
		text-transform: uppercase;
		font-weight: normal;
		letter-spacing: .1em;
	}

	.comment-text {
		margin: 20px 0;
		font: 17px/1.47em 'Butler', serif;
	}

	.comment-meta a {
		border-bottom: 1px solid transparent;
	}

	.comment-meta a:hover {
		border-color: #000;
	}

#respond {
	position: relative;
	padding: 50px 0 55px;
}

#reply-title {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 45px;
	font-weight: 500;
	text-transform: lowercase;
	white-space: nowrap;
}

.comment-list #reply-title {
	display: none;
}

#commentform {
	display: grid;
	grid-template-columns: 38.75% 50%;
	grid-template-rows: auto auto auto auto;
	grid-column-gap: 11.25%;
}

	#commentform label {
		margin-bottom: 15px;
	}

	#commentform p {
		margin-bottom: 20px;
	}

	#commentform .comment-form-author {
		grid-column-start: 1;
		grid-row-start: 1;
	}

	#commentform .comment-form-email {
		grid-column-start: 1;
		grid-row-start: 2;
	}

	#commentform .comment-form-url {
		grid-column-start: 1;
		grid-row-start: 3;
		margin-bottom: 10px;
	}

	#commentform .comment-form-comment {
		grid-column-start: 2;
		grid-row-start: 1;
		grid-row-end: span 3;
		margin-bottom: 0;
	}

	#commentform .form-submit {
		grid-column-start: 2;
		text-align: right;
	}

	.comment-list #commentform input,
	.comment-list #commentform textarea {
		background: #fff;
	}

	.comment-list #commentform input[type="submit"] {
		background: none;
	}

@media screen and (max-width: 767px) {
	#commentform {
		display: block;
	}
	
	#commentform .comment-form-comment {
		margin-bottom: 20px;
	}
}

/*--------------------------------------------------------------
## Related Posts
--------------------------------------------------------------*/

#related-posts {
	padding: 75px 0 50px;
	background: #F1F1F1;
	position: relative;
}

#related-posts h3 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	font-weight: 800;
	font-size: 35px;
	white-space: nowrap;
}

.related-post {
	width: 31.818181%; /* 350/1100 */
	text-align: center;
}

.related-post .featured-image a,
.related-post .featured-image img {
	display: block;
}

.related-post .featured-image img {
	margin: 0 auto;
}

.related-post .featured-image {
	margin-bottom: 10px;
}

.related-post .post-number {
	font: 85px/1em 'Butler', serif;
	letter-spacing: normal;
	font-weight: 900;
	color: #DEDEDE;
	margin-bottom: 25px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.related-post:hover .post-number {
	color: #444;
}

.related-post h4 {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .2em;
	line-height: 2em;
}

@media screen and (max-width: 767px) {
	.related-post {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.related-post:last-of-type {
		margin-bottom: 0;
	}
}


/*--------------------------------------------------------------
# Archives
--------------------------------------------------------------*/

.archive-title {
	font-size: 20px;
	font-weight: 800;
	text-transform: lowercase;
	padding: 0 15px 20px;
	text-align: center;
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Info Page
--------------------------------------------------------------*/

.info-page .featured-image {
	margin-bottom: 20px;
}

.info-page .entry-title {
	font-size: 45px;
	text-transform: lowercase;
	font-weight: 500;
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
# 404/Not Found
--------------------------------------------------------------*/

.not-found .entry-title {
	margin-bottom: 20px;
}

.not-found p {
	text-align: center;
	margin-bottom: 20px;
}

.search-form {
	display: flex;
	justify-content: space-between;
}

.search-form .search-text {
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: .1em;
	color: #000000;
}

.search-form button {
	padding: 20px;
	background: #000;
	color: #fff;
	font-size: 14px;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## EmPress Shop the Post
--------------------------------------------------------------*/

.em-shop-the-post {
	margin-top: 30px;
	padding-bottom: 35px;
	border-bottom: 2px solid #f1f1f1;
}

.em-shop-the-post .em-shop-title {
	text-align: center;
	font: 10px 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .25em;
	margin-bottom: 10px;
}

.post-single .em-shop-the-post {
	padding-bottom: 0;
	border-bottom: none;
}

.post-single .em-shop-the-post .em-shop-title {
	font: 20px 'Butler', serif;
	font-weight: 800;
	text-transform: lowercase;
	letter-spacing: normal;
	padding: 15px;
	text-align: center;
	background: #f1f1f1;
}

/*--------------------------------------------------------------
## EmPress Grid
--------------------------------------------------------------*/

#template-em-grid {
	margin: 0 auto !important;
	max-width: 800px !important;
	width: 100% !important;
}

@media screen and (max-width: 1200px) and (min-width: 1025px) {
	#template-em-grid {
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 190px;
	}
}

/*--------------------------------------------------------------
## EmPress Boutiques
--------------------------------------------------------------*/

.template-em-boutiques {
	margin: 0 auto !important;
	max-width: 800px !important;
	width: 100% !important;
}

@media screen and (max-width: 1200px) and (min-width: 1025px) {
	.template-em-boutiques {
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 190px;
	}
}

