

/* Reset */
html,
body {
	border: none;
	margin: 0;
	padding: 0;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
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;
	text-decoration: none;
}

blockquote::before,
blockquote::after {
	content: "";
}


/* Other */
::selection {
	background: #859188;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #859188;
	color: #fff;
	text-shadow: none;
}


/* Html and body */
html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
	background: #708274;
	color: #000;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	box-sizing: border-box;
	background: #708274;
	color: #000;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 1.8rem;
	letter-spacing: -0.015em;
	text-align: left;
}

#body_wrapper {
	background: #fff;
}

@supports ( font-variation-settings: normal ) {

	body {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}

*,
*::before,
*::after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
	word-wrap: break-word;
}

#site-content {
	overflow: hidden;
}


/* Header main menu */
#header-main-menu-wrapper {
	text-align: center;
	position: relative;
	margin-bottom: 50px;
}

#header-main-menu-wrapper:after {
	content: '';

	width: 100%;
	position: absolute;
	left: 0;
	bottom: -5px;

	border-width: 0 0 1px;
	border-style: solid;
	border-color: #eaeceb;
}

#header-main-menu {
	width: auto;
	display: inline-block;
}

#header-main-menu li {
	float: left;
	display: block;
}

#header-main-menu li a {
	margin: 10px;
	display: block;
	padding: 15px 11px;
	color: #4f5458;
	font-size: 1.5rem;
	font-weight: 400;
	font-family: 'Yantramanav', sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1;
	position: relative;
	transition: background 0.2s;
}

#header-main-menu li a:hover {
	background: #f5f9f6;
}

#header-main-menu li a:after {
	content: '';

	width: 100%;
	position: absolute;
	left: 0;
	bottom: -5px;

	border-width: 0 0 1px;
	border-color: transparent;
	border-style: solid;

	transition: border-color 0.2s;
}

#header-main-menu li a:hover:after {
	border-color: #f5f9f6;
}


/* Header title */
#header_title {
	text-align: center;
	font-family: 'Parisienne', cursive;
	font-size: 6.0rem;
	padding-top: 25px;
	margin-bottom: 10px;
}

#header_title a {
	color: #2d2f2d;
	letter-spacing: 1px;
	transition: letter-spacing 1s;
}

#header_title a:hover {
	letter-spacing: 1.2px;
}


/* Posts wrapper */
.posts {
	margin: auto;
	width: 80%;
	text-align: center;

	/* display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between; */
}

@media (max-width: 1003px) {
	.posts {
		width: 100%;
	}
}

.posts .post {
	width: 334px;
	margin: 0 15px 50px;

	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.posts .post .img {
	background: rgb(248, 249, 250);
	margin-bottom: 16px;

	display: inline-block;

	width: 100%;
	height: 258px;
	vertical-align: middle;
}

.posts .post .img img {
	width: 100%;
	height: 100%;
}

.posts .post .img:hover ~ .title a {
	color: #c8a25a;
}

.posts .post .cats {
	text-align: center;
	margin-bottom: 10px;
	letter-spacing: 2px;
	font-size: 1.3rem;
	text-transform: uppercase;
	font-weight: 400;
}

.posts .post .cats li {
	display: inline-block;
	margin: 4px 6px;
}

.posts .post .cats li a {
	color: #839e94;
	transition: color 0.5s;
	font-family: 'Yantramanav', sans-serif;
}

.posts .post .cats li a:hover {
	color: #6e7a74;
	text-decoration: underline;
}

.posts .post .title {
	margin-bottom: 18px;
	color: #2d2f2d;
	font-size: 2.1rem;
	font-weight: 400;
	font-family: 'Yantramanav', sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	line-height: 3.0rem;
}

.posts .post .title a {
	color: #2d2f2d;
	transition: color 0.2s;
}

.posts .post .title a:hover {
	color: #c8a25a;
}

.posts .post .title_divider {
	margin: 0 auto 20px;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	width: 50px;
	height: 1px;
	box-sizing: content-box;
}

.posts .post .excerpt {
	margin-bottom: 10px;
	font-size: 1.8rem;
	letter-spacing: 0.5px;
	line-height: 2.5rem;
	font-family: Georgia, serif;
}

.posts .post .date {
	color: rgb(154, 161, 168);
	font-style: italic;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.8rem;
}


/* Footer */
#site-footer {
	overflow: hidden;
}

#footer_wrapper::before {
	content: "";
	display: block;
	position: absolute;
	top: -49px;
	border-bottom: 50px solid #708274;
	border-right: 100vw solid transparent;
}

#footer_wrapper {
	margin-top: 100px;
	position: relative;
	background: #708274;

	font-size: 1.5rem;
	color: #ffffff;
	font-weight: 400;
	font-family: 'Yantramanav', sans-serif;
	line-height: 1;
	padding: 50px 0;
}

#footer_wrapper a {
	color: #ffffff;
}

#footer_wrapper a:hover {
	text-decoration: underline;
}

#footer {
	
}


/* Footer main menu */
#footer_menu_main_wrapper {
	text-align: center;
	position: relative;
	margin-bottom: 20px;
}

#footer_menu_main {
	width: auto;
	display: inline-block;
}

#footer_menu_main li {
	display: inline-block;
}

#footer_menu_main li a {
	margin: 0 10px;
	display: block;
	position: relative;
	letter-spacing: 2px;
	text-transform: uppercase;
}


/* Footer copyright */
#footer_copyright {
	text-align: center;
}