/* //////////////////////////////////////////////////////////////////////////

   Ikken 4.3.1

   //////////////////////////////////////////////////////////////////////////

   I. Customize
   |
   ├─ Global settings
   ├─ Fonts
   ├─ Color of details
   ├─ Light version
   ├─ Dark version
   ├─ Logo for dark version
   ├─ Hide 'Portal' notifications
   └─ Ghost 'Custom Fonts' adjustment

   II. 3rd party scripts
   |
   ├─ Normalize.css
   ├─ delicious-hamburgers
   └─ Flickity, AOS, lightense-images.js, radialIndicator

   III. Theme
   |
   ├─ 1.Global
   ├─ 2.Header
   ├─ 3.Menu
   ├─ 4.Navigation
   ├─ 5.Search
   ├─ 6.Suggestion
   ├─ 7.Slider
   ├─ 8.Post and slider header
   ├─ 9.Post
   ├─ 10.Post share
   ├─ 11.Post navigation
   ├─ 12.Comments
   ├─ 13.Loop
   ├─ 14.Load more
   ├─ 15.Archive — Author & Tag page
   ├─ 16.Subscribe form
   ├─ 17.Members
   ├─ 18.Footer
   ├─ 19.Custom pages
   ├─ 20.Subscribe page
   ├─ 21.Error page
   ├─ 22.Contact page
   ├─ 23.Tags page
   └─ 24.Membership & Account page

   //////////////////////////////////////////////////////////////////////////

   I. Customize

   ////////////////////////////////////////////////////////////////////////// */

:root {

	/* Global settings
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */

	/* Logo */
	--height-logo-header: 50px;

	/* Logo for mobile devices */
	--height-logo-mobile-header: 30px;


	/* Fonts
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */

	/* Primary */
	--font-family-primary: var(--gh-font-heading, 'Josefin Sans', sans-serif);
	--font-weight-primary-bold: 600;

	/* Secondary */
	--font-family-secondary: var(--gh-font-body, 'Mulish', sans-serif);
	--font-weight-secondary-regular: 400;
	--font-weight-secondary-bolder: 700;


	/* Color of details
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
	--ghost-accent-color: #ff6dc4;


	/* Light version
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */

	/* Fonts */
	--color-font-one: #0f0f0f;
	--color-font-two: #484848;
	--color-font-white: #fff;

	/* Fonts — subscribe form */
	--color-font-alert-red: #f74856;
	--color-font-alert-orange: #ff970d;
	--color-font-notification-success: #fff;

	/* Background */
	--color-bg-body: #fff;
	--color-bg-gray-one: #f9f9f9;
	--color-bg-gray-two: #f1f1f1;
	--color-bg-cta: #fff;
	--color-bg-notification-success: #26cd3d;
	--color-bg-notification-false: #f74856;
	--color-bg-membership-icon: #bca070;

	/* Featured label & login panel */
	--color-gold: #967a47;

	/* hr, links, underline, etc. */
	--color-elements-one: #0f0f0f;
	--color-elements-two: #e8e8e8;

	/* Overlay image */
	--color-image-overlay: 255, 255, 255
}

/* Dark version
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.dark-mode {

	/* Fonts */
	--color-font-one: #fff;
	--color-font-two: #bdbdbd;
	--color-font-white: #fff;

	/* Fonts — subscribe form */
	--color-font-alert-red: #f74856;
	--color-font-alert-orange: #ff970d;

	/* Background */
	--color-bg-body: #121212;
	--color-bg-gray-one: #1c1c1c;
	--color-bg-gray-two: #232323;
	--color-bg-cta: #1c1c1c;
	--color-bg-membership-icon: #9c8454;

	/* Featured label & login panel */
	--color-gold: #9c8454;

	/* hr, links, underline, etc. */
	--color-elements-one: #fff;
	--color-elements-two: #3e3e3e;

	/* Overlay image */
	--color-image-overlay: 15, 15, 15
}

/* Automatic dark version [duplicate dark version]
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (prefers-color-scheme: dark) {
	.auto-dark-mode {

		/* Fonts */
		--color-font-one: #fff;
		--color-font-two: #bdbdbd;
		--color-font-white: #fff;

		/* Fonts — subscribe form */
		--color-font-alert-red: #f74856;
		--color-font-alert-orange: #ff970d;

		/* Background */
		--color-bg-body: #121212;
		--color-bg-gray-one: #1c1c1c;
		--color-bg-gray-two: #232323;
		--color-bg-cta: #1c1c1c;
		--color-bg-membership-icon: #9c8454;

		/* Featured label & login panel */
		--color-gold: #9c8454;

		/* hr, links, underline, etc. */
		--color-elements-one: #fff;
		--color-elements-two: #3e3e3e;

		/* Overlay image */
		--color-image-overlay: 15, 15, 15
	}
}

/* Logo for dark version
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (prefers-color-scheme:dark) {
	.auto-dark-mode a.is-dark+a {
		display: none;
	}
}

@media (prefers-color-scheme:light) {
	.auto-dark-mode a.is-dark {
		display: none;
	}
}

/* Hide 'Portal' notifications
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
iframe[title="portal-notification"] {
	display: none
}

/* Ghost 'Custom Fonts' adjustment
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
body[class*='gh-font-heading'] {
	--font-weight-primary-bold: 700;
}

/* //////////////////////////////////////////////////////////////////////////

   II. 3rd party scripts

   ////////////////////////////////////////////////////////////////////////// */

/* Normalize.css
   ––––––––––––––––––––––––––––––––––––––––––––––––––––
   Version : 8.0.1
   Website : necolas.github.io/normalize.css
   Repo    : github.com/necolas/normalize.css
   Author  : Nicolas Gallagher
   License : MIT
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

main {
	display: block
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

hr {
	overflow: visible;
	box-sizing: content-box;
	height: 0
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent
}

abbr[title] {
	text-decoration: underline;
	text-decoration: underline dotted;
	border-bottom: none
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

img {
	border-style: none
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0
}

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	padding: 0;
	border-style: none
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: 1px dotted ButtonText
}

fieldset {
	padding: .35em .75em .625em
}

legend {
	display: table;
	box-sizing: border-box;
	max-width: 100%;
	padding: 0;
	white-space: normal;
	color: inherit
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type='checkbox'],
[type='radio'] {
	box-sizing: border-box;
	padding: 0
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto
}

[type='search'] {
	outline-offset: -2px;
	-webkit-appearance: textfield
}

[type='search']::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button
}

details {
	display: block
}

summary {
	display: list-item
}

template {
	display: none
}

[hidden] {
	display: none
}

/* delicious-hamburgers [with modifications]
   ––––––––––––––––––––––––––––––––––––––––––––––––––––
   Version : 0.3.5
   Website : kapoko.github.io/delicious-hamburgers
   Repo    : github.com/kapoko/delicious-hamburgers
   Author  : Kasper Koman
   License : MIT
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.hamburger {
	font: inherit;
	display: inline-block;
	overflow: visible;
	margin: 0;
	padding: 5px;
	cursor: pointer;
	text-transform: none;
	color: inherit;
	border: 0 transparent solid;
	background-color: transparent;
}

.hamburger:focus {
	outline: 0
}

.hamburger-inner {
	position: relative;
	top: 0;
	display: block;
	width: 100%;
	margin: 0;
	margin-top: -1px;
	transition: transform .5s ease, top .5s ease
}

.hamburger-bar {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	content: '';
	border-radius: 0;
	background-color: black;
}

.home-template .hamburger-bar,
.post-template .hamburger-bar {
	background-color: #ffffff;
}

.hamburger.is-active .hamburger-bar {
	background-color: black;
}

.hamburger-bar:nth-child(1) {
	top: -8px;
	transition: top .5s ease, transform .25s ease
}

.hamburger.is-active .hamburger-bar:nth-child(2) {
	display: none
}

.hamburger-bar:nth-child(3) {
	top: 8px;
	transition: top .5s ease, transform .35s ease
}

.hamburger.is-active {
	pointer-events: none;
}

.hamburger.is-active>.hamburger-inner {
	transition: transform .35s ease;
	transform: rotate(90deg) translate3d(1px, -1px, 0)
}

.hamburger.is-active .hamburger-bar {
	transition: top .5s ease, transform .35s ease .15s
}

.hamburger.is-active .hamburger-bar:nth-child(1) {
	top: 0;
	transform: rotate(45deg)
}

.hamburger.is-active .hamburger-bar:nth-child(3) {
	top: 0;
	transform: rotate(-45deg)
}

/* Custom settings for Flickity, AOS,
   lightense-images.js, radialIndicator
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.flickity-enabled {
	position: relative
}

.flickity-enabled:focus {
	outline: none
}

.flickity-viewport {
	position: relative;
	overflow: hidden;
	height: 100%
}

.flickity-slider {
	position: absolute;
	width: 100%;
	height: 100%
}

.flickity-enabled.is-draggable {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent
}

.flickity-enabled.is-draggable .flickity-viewport {
	cursor: -webkit-grab;
	cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
	cursor: -webkit-grabbing;
	cursor: grabbing
}

.flickity-page-dots {
	display: none
}

.flickity-page-dots.is-active {
	line-height: 1;
	position: absolute;
	top: calc(46vh + 40px);
	right: 37px;
	display: inline-block;
	width: 100%;
	max-width: 50px;
	height: 100vh;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left
}

.flickity-page-dots.is-active .dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 7px;
	cursor: pointer;
	transition-duration: .15s;
	transition-property: background-color, opacity, transform;
	opacity: .2;
	border-radius: 50%;
	background-color: var(--color-elements-one)
}

.flickity-page-dots.is-active .dot:hover,
.flickity-page-dots.is-active .dot.is-selected {
	opacity: 1
}

.flickity-page-dots.is-active .dot:hover {
	transform: scale(1.38);
	background-color: var(--ghost-accent-color)
}

@media (max-width:959px) {
	.flickity-page-dots.is-active {
		display: none
	}
}

.aos-init {
	transition: transform .8s ease-in-out
}

.aos-init,
.loop-item,
.account-loop-section .membership-heading {
	transform: translateY(150px)
}

.slider-section.is-active+.aos-init.aos-animate {
	transform: translateY(-75px)
}

.aos-init.subscribe-form {
	transform: translateY(70px)
}

.aos-init.aos-animate {
	transform: translateY(0)
}

@media (max-width:479px) {

	.slider-section.is-active+.aos-init.aos-animate,
	.loop-item,
	.account-loop-section .membership-heading {
		transform: translateY(75px)
	}
}

@media (max-width:959px) {
	.slider-section.is-active+.aos-init.aos-animate {
		transform: translateY(0)
	}
}

.lightense-backdrop {
	background-color: rgba(0, 0, 0, .6) !important;
	-webkit-backdrop-filter: initial !important;
	backdrop-filter: initial !important
}

.lightense-wrap~br,
.lightense-wrap~small {
	display: none
}

.post-indicator {
	position: fixed;
	z-index: 99;
	bottom: 45px;
	left: 2%;
	transition: opacity .3s ease-in-out;
	color: var(--color-elements-two)
}

.post-indicator.is-start,
.post-indicator.is-end {
	opacity: 0
}

@media (max-width:768px) {
	.post-indicator {
		display: none
	}
}

/* //////////////////////////////////////////////////////////////////////////

   III. Theme

   ////////////////////////////////////////////////////////////////////////// */

/* --------------------------------------------------------------------------
   1.Global
   -------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}

html,
body {
	height: 100%;
	max-height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font-family: var(--font-family-secondary);
	font-size: 19px;
	font-weight: var(--font-weight-secondary-regular);
	line-height: 1.5;
	word-wrap: break-word;
	word-break: break-word;
	color: var(--color-font-one);
	background-color: var(--color-bg-body);
}

/* Typography
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6,
input,
blockquote {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-primary-bold);
	line-height: 1.3;
	letter-spacing: -.018em;
	word-spacing: -.05em;
	color: var(--color-font-one);
}

/* Links
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
	transition: all .15s ease;
	text-decoration: none;
	color: var(--color-font-one);
}

p a {
	color: #cc0000;
}

/* input
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
input {
	color: var(--color-font-one);
	border: none;
	border-radius: 0;
	outline: 0;
	background-color: transparent;
	box-shadow: none;
}

input::-webkit-input-placeholder {
	color: var(--color-font-one);
}

input::-ms-input-placeholder {
	color: var(--color-font-one);
}

input::-moz-placeholder {
	opacity: 1;
	color: var(--color-font-one);
}

input::placeholder {
	color: var(--color-font-one);
}

/* Underline
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-underline {
	transition: background-size .6s ease-out;
	background: linear-gradient(var(--ghost-accent-color), var(--ghost-accent-color)) no-repeat left 87%/0 30%;
}

.global-underline:hover {
	background-size: 97% 30%;
}

/* svg
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-svg {
	transition: fill .15s ease-out;
	fill: var(--color-elements-one);
}

.global-svg:hover {
	fill: var(--ghost-accent-color);
}

/* Title
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-title {
	line-height: 1.1;
	margin: 15px 0 5px -3px;
}

/* Image
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-image {
	background: no-repeat center center/cover;
}

/* Button
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-button {
	font-size: 11px;
	font-weight: var(--font-weight-secondary-bolder);
	display: inline-block;
	padding: 25px;
	cursor: pointer;
	transition-duration: .15s;
	transition-property: background-color, color;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-font-one);
	border: 2px solid var(--color-elements-one);
	outline: none;
	background-color: transparent;
}

.global-button:hover {
	color: var(--color-bg-body);
	background-color: var(--color-elements-one);
}

/* Account question
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-question {
	font-size: 12px;
	display: block;
	margin-top: 3.5vh;
	letter-spacing: .5px;
}

.global-question a {
	font-weight: var(--font-weight-secondary-bolder);
	color: var(--color-font-one) !important;
}

/* Featured label
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-featured {
	font-family: var(--font-family-primary);
	font-size: 15px;
	font-weight: var(--font-weight-primary-bold);
	line-height: 1.2;
	display: inline-block;
	max-width: 300px;
	margin: 0 0 60px;
	padding: 14px 12px 9px;
	text-align: left;
	letter-spacing: .2px;
	text-transform: uppercase;
	opacity: .8;
	color: var(--color-gold);
	border: 1px solid;
}

.global-featured small {
	font-size: 10px;
	display: block;
}

.global-featured-date>div {
	margin: -1px 0 2px 9px;
	padding: 0 0 0 10px;
	border-left: 1px solid;
}

.global-featured-date span {
	font-family: var(--font-family-secondary);
	font-size: 10px;
	font-weight: var(--font-weight-secondary-bolder);
	display: block;
	letter-spacing: .4px;
}

.global-featured svg,
.global-featured svg:hover {
	fill: var(--color-gold);
}

.global-featured svg {
	width: 11px;
	height: 20px;
	margin-right: 7px;
}

/* Remove label, icon or date */
.global-label-disable .global-featured,
.global-label-icon-hide .global-featured svg,
.global-label-small-hide .global-featured-claim small,
.global-label-date-hide .global-featured-date {
	display: none;
}

/* Small icon */
.global-label-icon-small .global-featured svg {
	width: 8px;
	height: 15px;
	margin-right: 5px;
}

/* Authors
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-authors {
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-weight: var(--font-weight-primary-bold);
	width: 80%;
	padding: 2px 20% 10px 0;
}

.global-authors time {
	display: inline-block;
}

.global-authors time::first-letter {
	text-transform: capitalize;
}

/* Excerpt
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-excerpt {
	font-size: 16px;
	width: 90%;
	padding: 20px 10% 15px 0;
}

/* Tags
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-tags {
	font-family: var(--font-family-primary);
	font-size: 15px;
	font-weight: var(--font-weight-primary-bold);
	width: 100%;
	padding: 20px 0 0;
}

.global-tags a {
	line-height: 1.1;
	display: inline-flex;
	padding: 10px 10px 0 0;
	letter-spacing: 1px;
}

/* Flexbox
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-flex {
	display: flex;
	flex-wrap: wrap;
}

/* Notifications
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-notification div {
	font-size: 15px;
	font-weight: var(--font-weight-secondary-bolder);
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	left: 0;
	display: none;
	visibility: hidden;
	padding: 15px;
	transform: translateY(-130%);
	-webkit-animation: slideDownNotification 5s cubic-bezier(.19, 1, .22, 1) forwards;
	animation: slideDownNotification 5s cubic-bezier(.19, 1, .22, 1) forwards;
	text-align: center;
	color: var(--color-font-notification-success);
	background-color: var(--color-bg-notification-success);
}

.global-notification .expired {
	background-color: var(--color-bg-notification-false);
}

.global-notification.is-subscribe .subscribe,
.global-notification.is-signin .signin,
.global-notification.is-signup .signup,
.global-notification.is-update-email .update-email,
.global-notification.is-expired .expired,
.global-notification.is-checkout-success .checkout-success {
	display: block;
}

@-webkit-keyframes slideDownNotification {
	15% {
		transform: translateY(0)
	}

	85% {
		transform: translateY(0)
	}

	100% {
		visibility: visible
	}
}

@keyframes slideDownNotification {
	15% {
		transform: translateY(0)
	}

	85% {
		transform: translateY(0)
	}

	100% {
		visibility: visible
	}
}

/* Sticky Footer
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-overlay {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.global-main {
	flex: 1 0 auto;
}

.global-footer {
	flex-shrink: 0;
}

/* Fixes flickering when page load
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.global-preload .menu-section,
.global-preload .loop-section a,
.global-preload .tags-item a,
.global-preload .footer-section a {
	transition: none !important;
}

/* RWD — Global settings
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:768px) {
	.global-button {
		line-height: 1.1;
		padding: 20px 25px;
	}

}

@media (max-width:1024px) {

	.global-featured,
	.global-featured small,
	.global-featured-date span {
		font-size: 9px;
	}

	.global-featured {
		font-family: var(--font-family-secondary);
		font-weight: var(--font-weight-secondary-bolder);
		max-width: 230px;
		margin-bottom: 30px;
		padding: 10px 11px 8px;
	}

	.global-featured-date>div {
		margin: 0 0 1px 8px;
		padding: 0 0 0 9px;
	}

	.global-featured-date span {
		letter-spacing: .2px;
	}

	.global-featured svg {
		width: 9px;
		height: 18px;
	}

	.global-label-icon-small .global-featured svg {
		width: 6px;
		height: 12px;
		margin-right: 4px;
	}

	.global-authors,
	.global-excerpt,
	.global-tags {
		font-size: 14px;
	}

}

/* --------------------------------------------------------------------------
   2.Header
   -------------------------------------------------------------------------- */
.header-logo {
	position: absolute;
	z-index: 2;
	top: 55px;
	left: 5%;
}

.header-logo .is-logo {
	line-height: 0;
	margin: 0;
}

.header-logo img {
	max-width: 300px;
	height: var(--height-logo-header);
	max-height: var(--height-logo-header);
	aspect-ratio: attr(width)/attr(height);
}

.header-logo .no-logo {
	font-family: var(--font-family-primary);
	font-size: 40px;
	font-weight: var(--font-weight-primary-bold);
	line-height: 1.1;
	margin: 0;
	letter-spacing: -.018em;
	word-spacing: -.05em;
}

/* Description
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.header-description {
	font-size: 11px;
	font-weight: var(--font-weight-secondary-bolder);
	line-height: 1.4;
	position: fixed;
	z-index: 2;
	top: 55px;
	left: 33px;
	max-width: 400px;
	height: 100px;
	cursor: default;
	transform: rotate(-90deg) translate(-100%, 0%);
	transform-origin: 0 0;
	text-align: right;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

/* RWD — Header
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.header-logo {
		top: 33px;
		left: 30px;
	}

	.header-logo a img {
		max-height: var(--height-logo-mobile-header);
	}

	.header-logo .no-logo {
		font-size: 30px;
		line-height: 1.3;
	}

}

@media (min-width:480px) and (max-width:959px) {
	.header-logo {
		left: 40px;
	}

}

@media (max-width:959px) {
	.header-description {
		display: none;
	}

}

@media (min-width:960px) and (max-width:1569px) {
	.header-logo {
		left: 75px;
	}

}

/* --------------------------------------------------------------------------
   3.Menu
   -------------------------------------------------------------------------- */
.menu-section,
.menu-overlay {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	bottom: 0;
}

.menu-section {
	visibility: hidden;
	overflow: auto;
	box-sizing: border-box;
	min-width: 320px;
	max-width: 500px;
	height: 100%;
	padding: 60px 50px 50px;
	transition: all .6s ease-in-out;
	transform: translateX(100%);
	background-color: var(--color-bg-body);
	-webkit-overflow-scrolling: touch;
}

.menu-overlay {
	width: 100%;
	height: 100%;
	transition: background-color .4s ease-in-out;
	pointer-events: none;
}

/* Trigger
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu-open {
	z-index: 9999;
}

.menu-close {
	z-index: 9998;
	border: none;
	outline: none;
	background-color: transparent;
}

.menu-trigger {
	position: absolute;
	top: 50px;
	right: 40px;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

/* Opened
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu-opened {
	overflow: hidden;
	-webkit-overflow-scrolling: auto;
}

.menu-opened .menu-section {
	visibility: visible;
	transform: translateX(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.menu-opened .global-overlay {
	overflow-x: hidden;
	overflow-y: scroll;
}

.menu-opened .menu-overlay {
	pointer-events: auto;
	background-color: rgba(0, 0, 0, .6);
}

/* RWD — Menu
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.menu-section {
		padding: 40px 30px;
	}

	.menu-trigger {
		top: 30px;
		right: 30px;
		width: 40px;
		height: 40px;
	}

}

@media (max-width:1024px) {
	.menu-opened .menu-trigger {
		position: fixed;
	}

}

@media (min-width:1025px) {
	.menu-section {
		min-width: 450px
	}

}

/* --------------------------------------------------------------------------
   4.Navigation
   -------------------------------------------------------------------------- */
.nav-section,
.nav-section ul {
	margin: 0;
	padding: 0;
}

.nav-section li {
	font-size: 24px;
	line-height: 1.8;
	list-style: none;
}

.nav-section li a {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-primary-bold);
	display: inline-block;
	padding: 0 0 3px 0;
	background-position: 2px 68%;
	background-size: 0 25%;
}

.nav-section li a:hover,
.nav-section li.nav-current a {
	background-size: 80% 25%;
}

.nav-section li.nav-current a:hover {
	background-size: 97% 25%;
}

/* RWD — Navigation
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.nav-section li {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 7px;
	}

}

/* --------------------------------------------------------------------------
   5.Search
   -------------------------------------------------------------------------- */
.search-section {
	width: 100%;
	padding: 8vh 0 0;
}

.search-section {
	display: none;
}

/* Form
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.search-form input {
	font-size: 24px;
	display: block;
	width: 80%;
	height: 40px;
	padding: 0;
	transition: width .3s ease;
	border-bottom: 2px solid var(--color-elements-one);
}

.search-form input:focus {
	width: 100%;
}

/* Ghost search */
.search-form input.is-ghost-search {
	width: 80%;
	cursor: pointer;
}

/* Meta
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.search-meta {
	font-size: 10px;
	font-weight: var(--font-weight-secondary-bolder);
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 0;
	text-align: left;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	opacity: .8;
}

.search-meta .is-hide {
	display: none;
}

/* Results
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.search-results h4 {
	font-size: 22px;
	line-height: 1.3;
	position: relative;
	margin: 45px 0;
	padding: 0;
}

.search-date {
	font-family: var(--font-family-secondary);
	font-size: 12px;
	font-weight: var(--font-weight-secondary-regular);
	position: absolute;
	top: -23px;
	left: 0;
	width: 100%;
	letter-spacing: .5px;
	opacity: .8;
}

/* RWD — Search function
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.search-section {
		padding-top: 5vh;
	}

	.search-form input {
		font-size: 20px;
	}

	.search-results h4 {
		font-size: 16px;
	}

}

@media (min-width:1025px) {
	.search-results {
		max-width: 400px
	}

}

/* --------------------------------------------------------------------------
   6.Suggestion
   -------------------------------------------------------------------------- */
.suggestion-section {
	width: 100%;
	margin: 4vh 0;
}

.suggestion-section h3 {
	font-size: 24px;
	line-height: 1.3;
	margin: 20px 0;
}

.suggestion-tags,
.suggestion-authors {
	padding-bottom: 20px;
}

/* RWD — Suggestion
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.suggestion-section h3 {
		font-size: 20px;
	}

}

/* --------------------------------------------------------------------------
   7.Slider
   -------------------------------------------------------------------------- */
.slider-section {
	position: relative;
}

/* Counter
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.slider-counter,
.slider-counter-wrap {
	position: absolute;
	right: 0;
}

.slider-counter {
	top: 0;
	display: none;
	height: 100vh;
}

.slider-counter-wrap {
	top: 46vh;
	right: 0;
	width: 130px;
	text-align: center;
}

.slider-counter span {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-primary-bold);
}

.slider-counter.is-active {
	display: block;
}

/* RWD — Slider
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:959px) {
	.slider-counter.is-active {
		display: none;
	}

	.slider-excerpt {
		display: none;
	}

}

/* --------------------------------------------------------------------------
   8.Post and slider header
   -------------------------------------------------------------------------- */
.post-section {
	overflow: hidden;
}

.post-header {
	justify-content: center;
	width: 100%;
}

.post-title-wrap {
	align-items: center;
	justify-content: flex-end;
	min-height: 100vh;
	margin: 0;
	padding: 100px 0px 0px 0px;
}

.post-title-wrap,
.post-title-content {
	box-sizing: border-box;
}

.post-title-content {
	width: 100%;
	max-width: 700px;
	margin-left: 80px;
	padding-right: 80px;
}

.post-title-wrap,
.post-image-wrap {
	position: relative;
	flex: 1 0 50%;
	max-width: 830px;
}

/* Image
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-image-wrap {
	min-height: 700px;
}

/* Title
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-title {
	font-size: 72px;
}

/* Title without image
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-title-wrap.no-image {
	align-items: center;
	flex-basis: 80%;
	flex-grow: 0;
	max-width: 1100px;
	text-align: center;
}

.post-section .post-title-wrap.no-image {
	min-height: 50vh;
}

.post-title-wrap.no-image>div {
	max-width: initial;
}

.post-title-wrap.no-image .post-title {
	margin-left: 0;
}

.post-title-wrap.no-image .post-meta {
	width: 80%;
	padding-right: 10%;
	padding-left: 10%;
}

.post-title-wrap.no-image .post-tags a {
	padding-right: 5px;
	padding-left: 5px;
}

/* Reading time
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-reading,
.post-reading span,
.post-reading small {
	display: inline-block;
}

.post-reading.is-even {
	margin-left: 10px;
}

.tag-hash-full-width .post-reading.is-even {
	margin-left: 0;
}

.post-reading span {
	font-family: var(--font-family-primary);
	font-size: 13px;
	font-weight: var(--font-weight-primary-bold);
	line-height: 1.4;
	width: 15px;
	height: 15px;
	padding: 3px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--color-elements-two);
}

.post-reading small {
	font-family: var(--font-family-secondary);
	font-size: 10px;
	font-weight: var(--font-weight-secondary-regular);
	padding: 3px 0 3px 1px;
	letter-spacing: .3px;
	text-transform: uppercase;
}

/* RWD — Post and slider header
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.post-title-wrap {
		align-items: initial;
		min-height: 10vh;
		padding-top: 30px;
		padding-bottom: 60px;
	}

	.post-title-wrap.no-image {
		min-height: 90vh;
		padding-top: 80px;
	}

	.post-section .post-title-wrap.no-image {
		min-height: 50vh;
	}

	.post-image-wrap {
		min-height: 50vh;
	}

	.post-title-content {
		margin-left: 30px;
		padding-right: 30px;
	}

	.post-title {
		font-size: 30px;
		margin-top: 5px;
	}

	.post-reading {
		display: none;
	}

	.post-tags {
		padding-top: 10px;
	}

}

@media (min-width:480px) and (max-width:959px) {
	.post-title-wrap {
		padding-top: 50px;
	}

	.post-title-wrap.no-image {
		min-height: 800px;
		padding-top: 100px;
	}

	.post-title-wrap {
		min-height: 300px;
	}

	.post-image-wrap {
		min-height: 500px;
	}

	.post-title {
		font-size: 40px;
	}

}

@media (max-width:959px) {
	.post-title-wrap {
		align-self: center;
		justify-content: center;
		order: 2;
		width: 100%;
		text-align: center;
	}

	.post-title-wrap.no-image {
		max-width: 780px;
		margin-top: 0;
	}

	.post-section .post-title-wrap.no-image {
		padding-top: 100px;
		padding-bottom: 50px;
	}

	.post-title-wrap,
	.post-title-wrap.no-image,
	.post-image-wrap {
		flex-basis: 100%;
	}

	.post-title-wrap,
	.post-image-wrap {
		max-width: 100%;
	}

	.post-image-wrap {
		order: 1;
	}

	.post-title {
		margin-left: 0;
	}

	.post-meta {
		width: 90%;
		padding-right: 5%;
		padding-left: 5%;
	}

	.post-tags a {
		padding-right: 5px;
		padding-left: 5px;
	}

}

@media (min-width:960px) and (max-width:1199px) {
	.post-title {
		font-size: 45px;
	}

}

@media (min-width:1200px) and (max-width:1399px) {
	.post-title {
		font-size: 55px;
	}

}

@media (max-width:1660px) {
	.post-image-wrap::before {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		height: 260px;
		content: '';
		opacity: .3;
		background-image: linear-gradient(to bottom, rgb(var(--color-image-overlay)), rgba(var(--color-image-overlay), .94505) 7.9%, rgba(var(--color-image-overlay), .88294) 15.3%, rgba(var(--color-image-overlay), .81522) 22.2%, rgba(var(--color-image-overlay), .7426) 28.7%, rgba(var(--color-image-overlay), .66692) 34.8%, rgba(var(--color-image-overlay), .58891) 40.6%, rgba(var(--color-image-overlay), .50925) 46.2%, rgba(var(--color-image-overlay), .42866) 51.7%, rgba(var(--color-image-overlay), .34817) 57.2%, rgba(var(--color-image-overlay), .2693) 62.8%, rgba(var(--color-image-overlay), .19309) 68.7%, rgba(var(--color-image-overlay), .12126) 75.2%, rgba(var(--color-image-overlay), .05882) 82.6%, rgba(var(--color-image-overlay), .01457) 91.2%, rgba(var(--color-image-overlay), 0));
	}

}

@media (min-width:1661px) and (max-width:1920px) {

	.post-title-wrap,
	.post-image-wrap {
		max-width: 100%;
	}

	.post-image-wrap {
		flex-basis: calc(50% - 130px);
		margin-right: 130px;
	}

}

/* --------------------------------------------------------------------------
   Post content
   -------------------------------------------------------------------------- */
.post-content {
	position: relative;
	overflow: visible;
	max-width: 740px;
	margin: 100px auto 15vh;
	padding: 0 80px;
	color: var(--color-font-two);
}

.post-content.no-image {
	margin-top: 0;
}

/* Margin elements
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content p,
.post-content iframe,
.post-content ol,
.post-content ul,
.post-content table,
.post-content p img {
	margin-top: 0;
	margin-bottom: 40px;
}

.post-content blockquote {
	margin-top: 80px;
	margin-bottom: 80px;
}

.post-content pre,
.post-content .kg-card,
.post-content .kg-code-card,
.post-content .kg-bookmark-card {
	margin-top: 30px;
	margin-bottom: 40px;
}

.post-content hr,
.post-content .kg-image-card,
.post-content .kg-gallery-card,
.post-content .kg-embed-card {
	margin-top: 60px;
	margin-bottom: 80px;
}

.post-content p,
.post-content blockquote,
.post-content table,
.post-content pre,
.post-content p img,
.post-content hr,
.post-content .kg-card {
	margin-right: 0;
	margin-left: 0;
}

.post-content iframe,
.post-content .kg-embed-card>div,
.post-content .kg-embed-card>iframe,
.post-content .kg-embed-card>.fb-post,
.post-content .kg-embed-card>.twitter-tweet {
	margin-right: auto !important;
	margin-left: auto !important;
}

.post-content .kg-embed-card>.twitter-tweet>iframe {
	margin-bottom: 0;
}

/* Typography
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: -1px;
}

.post-content h1 {
	font-size: 55px;
	margin-top: 60px;
}

.post-content h2 {
	font-size: 41px;
	margin-top: 55px;
}

.post-content h2:first-of-type {
	margin-top: 0;
}

.post-content h3 {
	font-size: 32px;
	margin-top: 45px;
}

.post-content h4 {
	font-size: 25px;
	margin-top: 40px;
}

.post-content h5 {
	font-size: 20px;
	margin-top: 35px;
}

.post-content h6 {
	font-size: 17px;
	margin-top: 35px;
}

.page-news .loop-section {
	margin-top: 0px !important;
}

/* Links
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content h1 a,
.post-content h2 a,
.post-content h3 a,
.post-content h4 a,
.post-content h5 a,
.post-content h6 a,
.post-content blockquote a {
	transition: background-size .6s ease-out;
	color: var(--color-font-one);
	border: none;
	background: linear-gradient(var(--ghost-accent-color), var(--ghost-accent-color)) no-repeat left 87%/80% 30%;
}

.post-content h1 a:hover,
.post-content h2 a:hover,
.post-content h3 a:hover,
.post-content h4 a:hover,
.post-content h5 a:hover,
.post-content h6 a:hover,
.post-content blockquote a:hover {
	background-size: 97% 30%;
}

.post-content a {
	transition: background-size .3s ease-out;
	color: var(--color-font-two);
	background: linear-gradient(var(--ghost-accent-color), var(--ghost-accent-color)) no-repeat left 100%/90% 1px;
}

.post-content a:hover {
	background-size: 97% 1px;
}

/* Disable styling for image when is a link */
.post-content .link-image,
.post-content .link-image:hover {
	border: none !important;
	background: transparent !important;
}

/* Paragraph
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content p {
	line-height: 1.6;
	position: relative;
}

/* strong
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content strong {
	color: var(--color-font-one);
}

/* blockquote
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content blockquote {
	font-size: 40px;
	box-sizing: border-box;
	width: 100%;
	padding: 130px 180px 140px;
	background-color: var(--color-bg-gray-one);
}

.post-content blockquote cite {
	font-size: 25px;
	font-style: normal;
}

/* Alternative */
.post-content blockquote.kg-blockquote-alt {
	position: relative;
	box-sizing: border-box;
	padding: 60px 0 0;
	text-align: center;
	background-color: transparent;
}

.post-content blockquote.kg-blockquote-alt::before {
	font-size: 100px;
	position: absolute;
	top: -25px;
	left: 50%;
	content: '"';
	transform: translateX(-50%);
	color: var(--ghost-accent-color);
}


/* blockquote — Markdown
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content blockquote p {
	line-height: 1.3;
	margin: 0;
}

/* hr
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content hr {
	position: relative;
	display: block;
	width: 80px;
	height: 2px;
	text-align: right;
	border: 0;
	background-color: var(--color-elements-two);
}

/* mark
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content mark {
	padding: 0 4px 2px;
	color: var(--color-font-one);
	border-radius: 3px;
	background-color: var(--ghost-accent-color);
}

.post-content mark a {
	color: var(--color-font-one)
}

/* kbd
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content kbd {
	font-size: 70%;
	font-weight: var(--font-weight-secondary-bolder);
	display: inline-block;
	padding: 1px 8px;
	border: 1px solid var(--color-elements-two);
	border-radius: 3px;
	background-color: var(--color-bg-body);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .2), 0 1px 0 0 var(--color-bg-body) inset;
	text-shadow: var(--color-bg-body) 0 1px 0;
}

/* iframe
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content iframe {
	display: block;
}

/* Lists
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content ol,
.post-content ul {
	margin-right: 0;
	margin-left: 15px;
	padding-left: 20px;
}

.post-content ul {
	list-style: disc outside;
}

.post-content ul li ul {
	list-style: circle outside;
}

.post-content ol,
.post-content ol li ol {
	list-style: decimal outside;
}

.post-content ul ul,
.post-content ul ol,
.post-content ol ol,
.post-content ol ul {
	font-size: 90%;
	margin: 15px 0;
}

.post-content li {
	margin-bottom: 10px;
}

.post-content dl dt {
	font-weight: var(--font-weight-secondary-bolder);
	float: left;
	clear: left;
	overflow: hidden;
	width: 180px;
	margin-bottom: 1em;
	text-align: right;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.post-content dl dd {
	margin-bottom: 1em;
	margin-left: 200px;
}

/* Table
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content table {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	background-color: transparent;
}

.post-content th {
	color: var(--color-elements-one);
}

.post-content th,
.post-content td {
	padding: 10px 12px;
	text-align: left;
	border-bottom: 1px solid var(--color-elements-two);
}

.post-content th:first-child,
.post-content td:first-child {
	padding-left: 3px;
}

.post-content th:last-child,
.post-content td:last-child {
	padding-right: 0;
}

/* Responsive */
.post-content .responsive-table {
	overflow-x: auto;
	word-break: normal;
}

/* Code
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content code {
	font-size: 85%;
	padding: 2px 5px;
	background-color: var(--color-bg-gray-two);
}

.post-content pre>code {
	display: block;
	padding: 10px 15px;
	white-space: pre-wrap;
}

/* Inline*/
.post-content p code {
	border-radius: 3px;
	background-color: var(--color-elements-two);
}

/* Code — Koenig
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content pre,
.kg-code-card {
	min-width: 100%;
}

.kg-code-card pre,
.kg-code-card code {
	margin: 0;
}

/* Koenig
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content .kg-card {
	width: 100%;
}

/* Image — Markdown
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content img,
.post-content p img {
	position: relative;
	width: 100%;
	height: auto;
}

/* Image — Koenig
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content .kg-card img {
	margin: 0;
}

.post-content .kg-image-card {
	line-height: 0;
}

.post-content .kg-image-card.kg-width-full img {
	position: relative;
	right: 50%;
	left: 50%;
	width: 100vw;
	margin: 0 -50vw;
}

/* Gallery — Koenig
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content .kg-gallery-card .kg-gallery-image img {
	display: block;
}

.post-content .kg-gallery-card .kg-gallery-container,
.post-content .kg-gallery-card .kg-gallery-row {
	display: flex;
}

.post-content .kg-gallery-card .kg-gallery-container {
	flex-direction: column;
	margin: 15px auto;
}

.post-content .kg-gallery-card .kg-gallery-row {
	flex-direction: row;
	justify-content: center;
}

.post-content .kg-gallery-card .kg-gallery-row:not(:first-of-type) {
	margin: 15px 0 0 0;
}

.post-content .kg-gallery-card .kg-gallery-image:not(:first-of-type) {
	margin: 0 0 0 15px;
}

/* Bookmark card
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content .kg-bookmark-card {
	margin-right: 0;
	margin-left: 0;
}

.post-content .kg-bookmark-card+.kg-bookmark-card {
	margin-top: -10px;
}

.post-content .kg-bookmark-container {
	font-family: var(--font-family-secondary);
	min-height: 140px;
	transition: background-color .15s ease-in-out;
	text-decoration: none;
	color: var(--color-font-one);
	border: 10px solid var(--color-bg-gray-one);
	background-color: var(--color-bg-gray-one);
	background-image: none;
}

.post-content .kg-bookmark-container:hover {
	background-color: var(--color-bg-gray-two);
}

.post-content .kg-bookmark-container,
.post-content .kg-bookmark-content,
.post-content .kg-bookmark-metadata {
	display: flex;
}

.post-content .kg-bookmark-title,
.post-content .kg-bookmark-metadata {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-primary-bold);
	color: var(--color-font-one);
}

.post-content .kg-bookmark-description,
.post-content .kg-bookmark-metadata {
	display: -webkit-box;
	overflow-y: hidden;
	-webkit-box-orient: vertical;
}

/* Content */
.post-content .kg-bookmark-content {
	align-items: flex-start;
	flex-direction: column;
	flex-grow: 1;
	justify-content: start;
	padding: 15px 20px 15px 15px;
}

/* Title */
.post-content .kg-bookmark-title {
	font-size: 20px;
	line-height: 1.3;
}

/* Description */
.post-content .kg-bookmark-description {
	font-size: 15px;
	line-height: 1.3;
	max-height: 40px;
	margin-top: 12px;
	color: var(--color-font-two);
	-webkit-line-clamp: 2;
}

/* Meta */
.post-content .kg-bookmark-metadata {
	font-size: 15px;
	align-items: center;
	flex-wrap: wrap;
	height: 22px;
	margin-top: 18px;
	-webkit-line-clamp: 1;
}

.post-content .kg-bookmark-metadata .kg-bookmark-icon {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	margin-bottom: -5px;
}

.post-content .kg-bookmark-author,
.post-content .kg-bookmark-publisher {
	height: 18px;
}

.post-content .kg-bookmark-metadata span:nth-of-type(2)::before {
	margin-right: 6px;
	margin-left: 6px;
	content: '•';
}

/* Image */
.post-content .kg-bookmark-thumbnail {
	position: relative;
	min-width: 30%;
	max-height: 100%;
}

.post-content .kg-bookmark-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* Figcaption
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content figcaption {
	font-size: 11px;
	line-height: 1.2;
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin-top: 15px;
	padding: 0 15px;
	text-align: center;
	letter-spacing: .5px;
	opacity: .8;
}

/* Figcaption — Markdown
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content img~small,
.post-content p img~small {
	font-size: 11px;
	line-height: 1.2;
	position: absolute;
	right: 0;
	bottom: 25px;
	left: 0;
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 740px;
	margin: 0 auto;
	padding: 0 15px;
	text-align: center;
	letter-spacing: .5px;
	opacity: .8;
}

/* Footnotes
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content .footnotes {
	padding: 10px 0 0;
}

.post-content .footnotes-list {
	padding-left: 20px;
	list-style: decimal;
}

.post-content .footnotes-sep {
	margin: 50px 0 10px;
}

.post-content .footnotes p,
.post-content .footnote-item {
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 10px;
}

/* Cardmas
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content .kg-card,
.post-content .kg-card * {
	box-sizing: border-box;
}

.post-content .kg-button-card .kg-btn,
.post-content .kg-file-card-container,
.post-content .kg-nft-card a,
.post-content .kg-product-card-button,
.post-content .kg-cta-card .kg-cta-button {
	border: none;
	background: transparent;
}

.post-content .kg-audio-card,
.post-content .kg-audio-card .kg-audio-thumbnail,
.post-content .kg-callout-card,
.post-content .kg-file-card .kg-file-card-container,
.post-content .kg-file-card .kg-file-card-icon::before,
.post-content .kg-nft-card .kg-nft-card-container,
.post-content .kg-nft-card .kg-nft-image,
.post-content .kg-product-card .kg-product-card-container,
.post-content .kg-product-card .kg-product-card-image,
.post-content .kg-toggle-card,
.post-content .kg-cta-card {
	border-radius: 0;
}

.post-content .kg-audio-card .kg-audio-title,
.post-content .kg-file-card .kg-file-card-title,
.post-content .kg-product-card .kg-product-card-title {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-primary-bold);
	color: var(--color-font-one);
}

/* Audio card */
.post-content .kg-audio-card .kg-audio-volume-slider {
	width: 55px;
}

.post-content .kg-audio-card .kg-audio-thumbnail {
	width: 80px;
	min-width: 80px;
	margin: 8px;
}

.post-content .kg-audio-card svg {
	fill: var(--color-font-one);
}

.post-content .kg-audio-card .kg-audio-playback-rate {
	color: var(--color-font-one);
}

/* Button card & Product 'button' card */
.post-content .kg-button-card {
	display: flex;
}

.post-content .kg-btn-accent {
	background-color: transparent;
}

.post-content .kg-button-card.kg-align-left {
	justify-content: flex-start;
}

.post-content .kg-button-card.kg-align-center {
	justify-content: center;
}

.post-content .kg-button-card .kg-btn,
.post-content .kg-product-card .kg-product-card-button,
.post-content .kg-cta-card .kg-cta-button {
	font-family: var(--font-family-secondary);
	font-size: 11px;
	font-weight: var(--font-weight-secondary-bolder);
	cursor: pointer;
	transition-duration: .15s;
	transition-property: background-color, color;
	text-align: center;
	text-decoration: none;
	letter-spacing: 3px;
	text-transform: uppercase;
	border-radius: 0;
	outline: none;
}

.post-content .kg-button-card .kg-btn {
	display: inline-block;
	width: auto;
	height: 100%;
	padding: 1.8em;
	color: var(--color-font-one);
	border: 2px solid var(--color-elements-one);
}

.post-content .kg-button-card .kg-btn:hover,
.post-content .kg-product-card .kg-product-card-button {
	color: var(--color-bg-body);
	background-color: var(--color-elements-one);
}

.post-content .kg-product-card .kg-product-card-button,
.post-content .kg-cta-card .kg-cta-button {
	height: 3.6em;
}

.post-content .kg-product-card .kg-product-card-button:hover {
	color: var(--color-font-white);
	background-color: var(--ghost-accent-color);
}

/* Callout card */
.post-content .kg-callout-card .kg-callout-emoji {
	flex-shrink: 0;
}

/* NFT card */
.post-content .kg-nft-card a {
	text-decoration: none;
}

.post-content .kg-nft-opensea-logo {
	width: 100px;
}

.post-content .kg-nft-card .kg-nft-card-container {
	box-shadow: inset 0 0 0 1px rgb(124 139 154/25%);
}

/* Video card */
.post-content .kg-video-card.kg-width-full {
	right: 50%;
	left: 50%;
	width: 100vw;
	margin: 0 -50vw;
}

/* Temporarily disable the alternative Blockquote */
.post-content .kg-blockquote-alt {
	position: relative;
}

/* Dark scheme for Product, Audio and File card */
.post-content .kg-product-card-container,
.post-content .kg-audio-card,
.post-content .kg-file-card :is(.kg-file-card-container, .kg-file-card-container:hover) {
	background-color: var(--color-one);
}

.post-content :is(.kg-product-card-container, .kg-product-card-container a),
.post-content .kg-audio-card,
.post-content .kg-file-card .kg-file-card-container {
	color: var(--color-font-one);
}

/* RWD — Video card */
@media (min-width:960px) and (max-width:1260px) {
	.post-content .kg-video-card.kg-width-wide {
		position: relative;
		right: 50%;
		left: 50%;
		width: calc(100vw - 80px - 80px);
		margin-right: calc(-50vw + 80px);
		margin-left: calc(-50vw + 80px);
	}

}

@media (min-width:1261px) {
	.post-content .kg-video-card.kg-width-wide {
		width: calc(100% + 180px + 180px);
		margin-left: -180px;
	}

}

/* Beta editor
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-content:first-child,
.post-content:first-child .kg-width-full:first-child {
	margin-top: 0;
}

.post-content .kg-signup-card-image,
.post-content .kg-header-card-image {
	right: 0 !important;
	left: 0 !important;
	display: block;
	margin: 0 !important;
}

/* Signup card & Header card 'v2' */
.post-content .kg-signup-card.kg-width-full,
.post-content .kg-header-card.kg-v2.kg-width-full {
	position: relative;
	right: 50%;
	left: 50%;
	width: 100vw;
	margin: 0 -50vw;
}

.post-content .kg-signup-card,
.post-content .kg-header-card.kg-v2,
.post-content .kg-signup-card.kg-width-regular,
.post-content .kg-signup-card.kg-width-wide,
.post-content .kg-header-card.kg-v2.kg-width-regular,
.post-content .kg-header-card.kg-v2.kg-width-wide {
	overflow: hidden;
	border-radius: 0;
}

.post-content .kg-signup-card.kg-width-regular,
.post-content .kg-signup-card.kg-width-wide,
.post-content .kg-header-card.kg-v2.kg-width-regular,
.post-content .kg-header-card.kg-v2.kg-width-wide {
	position: relative;
	right: 0;
	left: 0;
	width: 100%;
	margin-left: 0;
}

.post-content .kg-signup-card.kg-width-full.kg-content-wide,
.post-content .kg-header-card.kg-v2.kg-width-full.kg-content-wide {
	padding-right: 4vw;
	padding-left: 4vw;
}

.post-content .kg-signup-card.kg-width-full.kg-content-wide .kg-signup-card-content,
.post-content .kg-header-card.kg-v2.kg-width-full.kg-content-wide .kg-header-card-content {
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.post-content .kg-signup-card.kg-width-full .kg-signup-card-image,
.post-content .kg-header-card.kg-v2.kg-width-full .kg-header-card-image {
	width: 100%;
	border-radius: 0;
}

.post-content .kg-header-card.kg-v2.kg-layout-split {
	display: -webkit-box;
}

.post-content div.kg-signup-card h2,
.post-content div.kg-header-card.kg-v2 h2 {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-primary-regular);
}

.post-content .kg-signup-card h3.kg-signup-card-subheading,
.post-content .kg-header-card.kg-v2 h3.kg-header-card-subheading,
.post-content div.kg-signup-card .kg-signup-card-success {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-secondary-regular);
	line-height: 1.2;
}

.post-content div.kg-signup-card .kg-signup-card-success {
	font-size: clamp(1.05em, 2vw, 2.4rem);
}

.post-content .kg-signup-card h2+h3.kg-signup-card-subheading,
.post-content .kg-header-card.kg-v2 h2+h3.kg-header-card-subheading {
	margin: 1em 0 0;
}

.post-content .kg-signup-card .kg-signup-card-fields {
	padding: .3em;
	border: none;
	border-radius: 0;
}

.post-content .kg-signup-card .kg-signup-card-fields,
.post-content .kg-signup-card-input {
	background-color: var(--color-bg-body);
}

.post-content div.kg-signup-card .kg-signup-card-button,
.post-content .kg-header-card.kg-v2 .kg-header-card-button {
	padding: 1.3em 1.8em;
	cursor: pointer;
}

.post-content div.kg-signup-card .kg-signup-card-button,
.post-content div.kg-signup-card .kg-signup-card-input,
.post-content div.kg-header-card.kg-v2 .kg-header-card-button {
	font-size: 18px;
	border-radius: 0;
}

.post-content .kg-signup-card-input {
	line-height: 1;
	overflow: hidden;
	align-self: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: var(--color-font-one);
}

.post-content .kg-signup-card-input::-moz-placeholder {
	opacity: .6;
}

.post-content .kg-signup-card-input::placeholder {
	opacity: .6;
}

.post-content div.kg-signup-card .kg-signup-card-disclaimer,
.post-content div.kg-signup-card .kg-signup-card-error {
	font-size: 12px;
	margin: 1vh 0 0;
}

/* RWD — Beta editor */
@media (min-width:1261px) {

	.post-content .kg-signup-card.kg-width-wide,
	.post-content .kg-header-card.kg-v2.kg-width-wide {
		width: calc(100% + 180px + 180px);
		margin-left: -180px;
	}

}

@media (min-width:960px) and (max-width:1260px) {

	.post-content .kg-signup-card.kg-width-wide,
	.post-content .kg-header-card.kg-v2.kg-width-wide {
		position: relative;
		right: 50%;
		left: 50%;
		width: calc(100vw - 80px - 80px);
		margin-right: calc(-50vw + 80px);
		margin-left: calc(-50vw + 80px);
	}

}

@media (max-width:480px) {

	.post-content div.kg-signup-card .kg-signup-card-button,
	.post-content div.kg-signup-card .kg-signup-card-input,
	.post-content div.kg-header-card.kg-v2 .kg-header-card-button {
		font-size: 16px;
	}

}

@media (max-width:1024px) {
	.post-content .kg-width-full+.kg-width-full {
		margin-top: 0;
	}

	.post-content:first-child,
	.post-content:first-child .kg-width-full:first-child,
	.post-content .kg-width-full:not(.kg-width-full.kg-card-hascaption) {
		margin-bottom: 0;
	}

	.post-content .kg-signup-card,
	.post-content .kg-header-card.kg-v2 {
		border-radius: 0;
	}

	.post-content .kg-width-full:not(.kg-width-full.kg-card-hascaption)+:not(.kg-width-full) {
		margin-top: 5vh !important;
	}

	.post-content .kg-signup-card.kg-width-full,
	.post-content .kg-header-card.kg-v2.kg-width-full {
		width: 100vw;
		margin-right: -50vw;
		margin-left: -50vw;
	}

}

/* RWD — Post
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.post-content {
		padding-right: 20px;
		padding-left: 20px;
	}

	.post-content blockquote {
		font-size: 20px;
		padding: 30px 20px;
	}

	.post-content h1,
	.post-content h2,
	.post-content h3,
	.post-content h4,
	.post-content h5,
	.post-content h6 {
		margin-bottom: 15px;
	}

	.post-content h1 {
		font-size: 38px;
		margin-top: 45px;
	}

	.post-content h2 {
		font-size: 30px;
		margin-top: 40px;
	}

	.post-content h3 {
		font-size: 24px;
		margin-top: 35px;
	}

	.post-content h4 {
		font-size: 19px;
		margin-top: 30px;
	}

	.post-content h5 {
		font-size: 16px;
		margin-top: 25px;
	}

	.post-content h6 {
		font-size: 14px;
		margin-top: 25px;
	}

	.post-content .kg-gallery-card .kg-gallery-container {
		margin-bottom: 5px;
	}

	.post-content .kg-gallery-card .kg-gallery-container,
	.post-content .kg-gallery-card .kg-gallery-row:not(:first-of-type) {
		margin-top: 5px;
	}

	.post-content .kg-gallery-card .kg-gallery-image:not(:first-of-type) {
		margin-left: 5px;
	}

	.post-content .kg-bookmark-container {
		flex-direction: column;
	}

	.post-content .kg-bookmark-content {
		order: 2;
	}

	.post-content .kg-bookmark-thumbnail {
		order: 1;
		width: 100%;
		min-height: 160px;
	}

}

@media (max-width:768px) {

	.post-content p,
	.post-content iframe,
	.post-content ol,
	.post-content ul,
	.post-content table {
		margin-bottom: 30px;
	}

	.post-content pre,
	.post-content .kg-card,
	.post-content .kg-code-card,
	.post-content .kg-bookmark-card {
		margin-top: 20px;
		margin-bottom: 30px;
	}

	.post-content hr,
	.post-content blockquote,
	.post-content .kg-image-card,
	.post-content .kg-gallery-card,
	.post-content .kg-embed-card {
		margin-top: 30px;
		margin-bottom: 40px;
	}

	.post-content p img {
		margin-bottom: 5px;
	}

	.post-content img~small,
	.post-content p img~small {
		bottom: -10px;
	}

}

@media (max-width:959px) {
	.post-content {
		font-size: 16px;
		margin-top: 0;
	}

}

@media (min-width:480px) and (max-width:768px) {
	.post-content {
		padding-right: 40px;
		padding-left: 40px;
	}

	.post-content h1 {
		font-size: 45px;
		margin-top: 50px;
	}

	.post-content h2 {
		font-size: 33px;
		margin-top: 45px;
	}

	.post-content h3 {
		font-size: 26px;
		margin-top: 40px;
	}

	.post-content h4 {
		font-size: 20px;
		margin-top: 35px;
	}

	.post-content h5 {
		font-size: 17px;
		margin-top: 30px;
	}

	.post-content h6 {
		font-size: 15px;
		margin-top: 30px;
	}

}

@media (min-width:480px) and (max-width:959px) {
	.post-content blockquote {
		font-size: 28px;
		padding: 50px 35px;
	}

	.post-content .kg-gallery-card .kg-gallery-container {
		margin-bottom: 10px;
	}

	.post-content .kg-gallery-card .kg-gallery-container,
	.post-content .kg-gallery-card .kg-gallery-row:not(:first-of-type) {
		margin-top: 10px;
	}

	.post-content .kg-gallery-card .kg-gallery-image:not(:first-of-type) {
		margin-left: 10px;
	}

}

@media (min-width:960px) and (max-width:1260px) {
	.post-content blockquote {
		font-size: 35px;
		padding: 80px 90px;
	}

	.post-content blockquote,
	.post-content .kg-image-card.kg-width-wide img,
	.post-content .kg-gallery-card .kg-gallery-container {
		position: relative;
		right: 50%;
		left: 50%;
		width: calc(100vw - 80px - 80px);
		margin-right: calc(-50vw + 80px);
		margin-left: calc(-50vw + 80px);
	}

}

@media (min-width:1261px) {

	.post-content blockquote,
	.post-content .kg-image-card.kg-width-wide img,
	.post-content .kg-gallery-card .kg-gallery-container {
		width: calc(100% + 180px + 180px);
		margin-left: -180px;
	}

}

/* --------------------------------------------------------------------------
   10.Post share
   -------------------------------------------------------------------------- */
.share-section {
	width: 100%;
	padding-top: 30px;
}

.share-wrap {
	position: relative;
	width: 240px;
}

/* Title
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.share-title {
	font-family: var(--font-family-primary);
	font-size: 14px;
	font-weight: var(--font-weight-primary-bold);
	display: inline-block;
	padding: 6px 20px 2px;
	background-color: var(--color-bg-gray-two);
}

/* Icons
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.share-icons {
	display: inline-flex;
}

.share-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	transition: background-color .15s ease;
	border: none;
	background-color: var(--color-bg-gray-one);
}

.share-icons a,
.share-icons a:hover {
	background-size: 0;
}

.share-icons a:hover {
	background-color: var(--color-bg-gray-two);
}

.share-icons svg,
.share-icons svg:hover {
	fill: var(--color-font-one);
}

.share-icons svg {
	width: 23px;
	height: 23px;
}

.share-icons a:hover svg {
	fill: var(--color-font-one);
}

/* Copy link
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.share-wrap input {
	display: block;
	cursor: default;
	opacity: 0;
	color: transparent;
	border: none;
	outline: none;
}

.share-link {
	margin-right: 0 !important;
	cursor: pointer;
}

.share-link-info {
	font-size: 10px;
	position: absolute;
	bottom: 0;
	left: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0;
	color: var(--color-font-one);
}

.share-link:not(:active)~.share-link-info {
	transition: opacity 10s step-end;
}

.share-link:active~.share-link-info {
	opacity: .6;
}

/* RWD — Post share
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.share-icons a {
		width: 60px;
		height: 60px;
	}

	.share-icons svg {
		width: 18px;
		height: 18px;
	}

	.share-link-info {
		left: 0;
	}

}

@media (min-width:480px) and (max-width:959px) {
	.share-icons a {
		width: 70px;
		height: 70px;
	}

	.share-icons svg {
		width: 20px;
		height: 20px;
	}

}

/* --------------------------------------------------------------------------
   11.Post navigation
   -------------------------------------------------------------------------- */
.nextprev-section {
	max-width: 1400px;
	margin: 0 auto 150px;
	padding: 0 80px;
}

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

.nextprev-newer,
.nextprev-older {
	z-index: 2;
	flex-grow: 1;
	min-width: 50%;
}

.nextprev-newer section {
	padding: 50px 40px;
}

.nextprev-older section {
	padding: 50px 40px 50px 80px;
}

.nextprev-wrap section {
	display: block;
	flex: 1 0 calc(100% - 250px);
	box-sizing: border-box;
	min-height: 215px;
	transition: all .15s ease;
	letter-spacing: 1px;
}

.nextprev-image {
	z-index: 2;
	flex: 0 0 215px;
}

.nextprev-wrap span {
	font-size: 11px;
	font-weight: var(--font-weight-secondary-bolder);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-font-two);
}

.nextprev-title {
	font-size: 34px;
	margin: 15px 0 8px;
}

.nextprev-older {
	position: relative;
	z-index: 0;
	margin: 50px 0 -50px;
}

.nextprev-newer section {
	margin-right: -20px;
	text-align: left;
}

.nextprev-newer section,
.nextprev-wrap.is-one section {
	background-color: var(--color-bg-gray-one);
}

.nextprev-older section {
	margin-left: -20px;
	text-align: right;
	background-color: var(--color-bg-gray-two);
}

.nextprev-wrap.is-one section,
.nextprev-wrap.is-one .nextprev-older {
	margin: 0;
}

/* RWD — Post navigation
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.nextprev-section {
		margin-bottom: 5vh;
		padding-right: 20px;
		padding-left: 20px;
	}

	.nextprev-wrap section {
		min-height: 140px;
		padding: 20px;
	}

	.nextprev-image {
		flex-basis: 95px;
	}

	.nextprev-title {
		font-size: 17px;
	}

}

@media (max-width:768px) {
	.nextprev-older {
		margin: 20px 0 0;
	}

	.nextprev-newer,
	.nextprev-older {
		min-width: 80%;
	}

	.nextprev-wrap section {
		background-color: var(--color-bg-gray-one);
	}

}

@media (min-width:480px) and (max-width:768px) {
	.nextprev-section {
		margin-bottom: 10vh;
		padding-right: 40px;
		padding-left: 40px;
	}

	.nextprev-wrap section {
		padding: 40px 30px;
	}

	.nextprev-title {
		font-size: 20px;
	}

}

@media (max-width:959px) {
	.nextprev-wrap {
		flex-wrap: wrap;
		max-width: 740px;
		margin: 0 auto;
	}

	.nextprev-wrap section {
		margin: 0;
	}

	.nextprev-wrap span {
		font-size: 9px;
	}

	.nextprev-title {
		margin-top: 10px;
		margin-bottom: 0;
	}

}

@media (min-width:480px) and (max-width:959px) {
	.nextprev-title {
		margin-top: 10px;
	}

	.nextprev-image {
		flex-basis: 150px;
	}

}

@media (min-width:769px) and (max-width:959px) {
	.nextprev-section {
		margin-bottom: 100px;
	}

	.nextprev-newer {
		margin: 0 7% 0 0;
	}

	.nextprev-newer section {
		padding: 30px 50px 30px 30px;
	}

	.nextprev-older {
		margin: -20px 0 0 7%;
	}

	.nextprev-older section {
		padding: 40px 30px 30px 50px;
	}

	.nextprev-title {
		font-size: 25px;
	}

}

@media (min-width:480px) and (max-width:1024px) {
	.nextprev-wrap section {
		min-height: 180px;
	}

}

@media (min-width:960px) and (max-width:1024px) {
	.nextprev-wrap span {
		font-size: 10px;
	}

	.nextprev-newer section {
		padding: 30px 20px;
	}

	.nextprev-older section {
		padding: 30px 20px 30px 60px;
	}

	.nextprev-image {
		flex-basis: 130px;
	}

	.nextprev-title {
		font-size: 20px;
		margin-top: 10px;
		margin-bottom: 0;
	}

}

@media (min-width:1025px) and (max-width:1399px) {
	.nextprev-newer section {
		padding: 45px 25px;
	}

	.nextprev-older section {
		padding: 45px 25px 45px 70px;
	}

	.nextprev-image {
		flex-basis: 150px;
	}

	.nextprev-title {
		font-size: 25px;
	}

}

/* --------------------------------------------------------------------------
   12.Comments
   -------------------------------------------------------------------------- */
.comments-section {
	max-width: 740px;
	margin: 0 auto;
	padding: 5px 80px 0;
}

.comments-section>div:first-of-type {
	padding-top: 50px;
}

.comments-section>div:last-of-type {
	padding-bottom: 50px;
}

/* RWD — Comments
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.nextprev-section+.comments-section>div {
		margin-top: 25px;
	}

	.comments-section {
		padding-right: 20px;
		padding-left: 20px;
	}

}

@media (min-width:480px) and (max-width:768px) {
	.comments-section {
		padding-right: 40px;
		padding-left: 40px;
	}

}

/* --------------------------------------------------------------------------
   13.Loop
   -------------------------------------------------------------------------- */
.slider-section.is-active+.loop-section {
	margin-top: 0;
}

.loop-section {
	margin: 20vh auto 0;
}

.loop-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 80px;
}

.loop-item {
	width: 100%;
	padding-bottom: 0;
	background-color: var(--color-bg-gray-one);
}

.loop-content,
.loop-image {
	flex: 1 0 400px;
}

/* Image
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.loop-image {
	min-height: 85vh;
}

/* Content
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.loop-content {
	align-self: center;
	box-sizing: border-box;
	padding: 100px 60px;
}

.loop-title {
	font-size: 60px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.loop-meta {
	width: 80%;
}

/* Featured label
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.loop-featured,
.loop-featured small,
.loop-featured .global-featured-date span {
	font-size: 9px;
}

.loop-featured {
	font-family: var(--font-family-secondary);
	font-weight: var(--font-weight-secondary-bolder);
	max-width: 230px;
	margin-bottom: 30px;
	padding: 10px 11px 8px;
}

.loop-featured .global-featured-date>div {
	margin: 0 0 1px 8px;
	padding: 0 0 0 9px;
}

.loop-featured .global-featured-date span {
	letter-spacing: .2px;
}

.loop-featured svg {
	width: 9px;
	height: 18px;
}

.global-label-icon-small .loop-featured svg {
	width: 6px;
	height: 12px;
	margin-right: 4px;
}

/* RWD — Loop
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.loop-wrap {
		padding-right: 20px;
		padding-left: 20px;
	}

	.loop-image+.loop-content {
		padding-top: 30px;
	}

	.loop-content {
		padding: 40px 0;
	}

	.loop-image {
		min-height: 300px;
		max-height: 300px;
	}

	.loop-title {
		font-size: 25px;
		margin-top: 5px;
		padding-right: 20px;
		padding-left: 20px;
	}

}

@media (min-width:480px) and (max-width:768px) {
	.loop-wrap {
		padding-right: 40px;
		padding-left: 40px;
	}

	.loop-image+.loop-content {
		padding-top: 50px;
	}

	.loop-content {
		padding: 70px 20px;
	}

}

@media (min-width:480px) and (max-width:959px) {
	.loop-image {
		min-height: 500px;
		max-height: 500px;
	}

}

@media (min-width:480px) and (max-width:1024px) {
	.loop-title {
		font-size: 33px;
	}

}

@media (min-width:769px) and (max-width:959px) {
	.loop-image+.loop-content {
		padding-top: 60px;
	}

	.loop-content {
		padding-top: 80px;
		padding-bottom: 80px;
	}

}

@media (max-width:959px) {
	.loop-item {
		margin-bottom: 20px;
		text-align: center;
	}

	.loop-content,
	.loop-image {
		flex-basis: 100%;
	}

	.loop-title {
		margin-left: 0;
	}

	.loop-meta {
		padding-right: 10%;
		padding-left: 10%;
	}

	.loop-tags a {
		padding-right: 5px;
		padding-left: 5px;
	}

}

@media (min-width:960px) {
	.loop-item {
		min-height: 500px;
	}

	.loop-item.is-even {
		flex-direction: row-reverse;
		text-align: right;
	}

	.loop-item.is-even .loop-meta {
		padding-right: 0;
		padding-left: 20%;
	}

	.loop-item.is-even .loop-tags a {
		padding-right: 0;
		padding-left: 10px;
	}

	.loop-item.tag-hash-full-width {
		justify-content: center;
		text-align: center;
	}

	.loop-item.tag-hash-full-width .loop-image {
		flex-basis: 100%;
		min-height: 70vh;
	}

	.loop-item.tag-hash-full-width .loop-content {
		max-width: 900px;
	}

	.loop-item.tag-hash-full-width.is-image .loop-content {
		padding-top: 80px;
		padding-bottom: 15vh;
	}

	.loop-item.tag-hash-full-width.no-image .loop-content {
		padding-top: 15vh;
		padding-bottom: 15vh;
	}

	.loop-item.tag-hash-full-width .loop-meta {
		padding-right: 10%;
		padding-left: 10%;
	}

	.loop-item.tag-hash-full-width .loop-tags a {
		padding-right: 5px;
		padding-left: 5px;
	}

}

@media (min-width:769px) and (max-width:1399px) {
	.loop-content {
		padding-right: 40px;
		padding-left: 40px;
	}

}

@media (min-width:1025px) and (max-width:1399px) {
	.loop-title {
		font-size: 45px;
	}

}

/* RWD — Loop Author & Tag page
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width:600px) {
	.loop-archive .loop-item {
		flex: 0 0 calc(50% - 10px);
		min-height: 400px;
		margin-bottom: 20px;
	}

	.loop-archive .loop-item.is-odd {
		margin-right: 20px;
	}

	.loop-archive .loop-image {
		max-width: 250px;
		min-height: 300px;
	}

	.loop-archive .loop-title {
		margin-left: 0;
	}

}

@media (min-width:600px) and (max-width:768px) {
	.loop-archive .loop-title {
		font-size: 25px;
	}

	.loop-archive .loop-content {
		padding: 40px 20px;
	}

}

@media (min-width:769px) {
	.loop-archive .loop-title {
		font-size: 30px;
	}

	.loop-archive .loop-content {
		padding: 60px 40px;
	}

}

@media (min-width:600px) and (max-width:1249px) {

	.loop-archive .loop-item.is-image .loop-content,
	.loop-archive .loop-image {
		align-self: baseline;
	}

	.loop-archive .loop-item {
		text-align: center;
	}

	.loop-archive .loop-image {
		max-width: 100%;
	}

	.loop-archive .loop-image,
	.loop-archive .loop-content {
		flex-basis: 100%;
	}

	.loop-archive .loop-meta {
		padding-right: 10%;
		padding-left: 10%;
	}

	.loop-archive .loop-tags a {
		padding-right: 5px;
		padding-left: 5px;
	}

}

@media (min-width:1250px) {

	.loop-archive .loop-image,
	.loop-archive .loop-content {
		flex-basis: 200px;
	}

}

/* --------------------------------------------------------------------------
   14.Load more
   -------------------------------------------------------------------------- */
.loadmore-section {
	width: 100%;
	margin: 40px auto 0;
	text-align: center;
}

.loadmore-wrap button {
	line-height: 1.3;
	padding-top: 29px;
	padding-bottom: 29px;
}

.loadmore-wrap {
	display: inline-block;
	border-radius: 5px;
}

/* Pagination
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.pagination-section {
	display: none;
}

/* --------------------------------------------------------------------------
   15.Archive — Author & Tag page
   -------------------------------------------------------------------------- */
.archive-section+.loop-section {
	margin-top: 150px;
}

.archive-section {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1400px;
	margin: 150px auto 0;
	padding: 100px 80px 0;
}

.archive-section.is-image {
	padding-top: 200px;
}

.archive-wrap {
	max-width: 1120px;
	margin: 0 auto;
}

.archive-location,
.archive-description,
.archive-counter {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-primary-bold);
}

/* Profile image
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.archive-image {
	flex: 1 0 300px;
	min-height: 200px;
}

/* Title
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.archive-title {
	align-items: center;
	flex: 999 0 200px;
	box-sizing: border-box;
	padding: 30px 50px 30px 40px;
	background-color: var(--color-bg-gray-one);
}

.archive-title.is-author {
	min-width: 250px;
}

.archive-title h1 {
	font-size: 48px;
	margin-top: 10px;
	margin-bottom: 0;
}

/* Location
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.archive-location {
	font-size: 16px;
	margin: 0;
}

/* Description
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.archive-description {
	font-size: 19px;
	line-height: 1.3;
	width: 95%;
	margin: 30px 0 15px;
}

/* Meta
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.archive-meta {
	flex-direction: column;
	max-width: 300px;
}

/* Posts counter
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.archive-counter {
	line-height: 1;
	display: flex;
	align-items: center;
	flex: 1 0 200px;
	justify-content: center;
	width: 100%;
	min-width: 200px;
	text-align: center;
	background-color: var(--color-bg-gray-two);
}

.archive-counter span {
	font-size: 85px;
	line-height: .9;
	display: block;
}

.archive-counter span+span {
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Social icons
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.archive-icons a {
	display: flex;
	align-items: center;
	flex: 1 0 30%;
	justify-content: center;
	width: 100px;
	height: 100px;
	background-color: var(--color-bg-gray-two);
}

.archive-icons a:hover {
	background-color: var(--color-bg-gray-one);
}

.archive-icons svg,
.archive-icons svg:hover {
	fill: var(--color-font-one);
}

.archive-icons svg {
	width: 26px;
	height: 26px;
}

.archive-icons a:hover svg {
	fill: var(--color-font-one);
}

/* Cover image
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.archive-cover {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 50px;
	left: 0;
}

/* RWD — Archive — Author & Tag page
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {

	.archive-section,
	.archive-section.is-image {
		padding-top: 120px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.archive-image {
		flex-basis: 100%;
	}

	.archive-title {
		padding: 20px;
	}

	.archive-title.is-author {
		min-width: 100%;
	}

	.archive-title h1 {
		font-size: 25px;
		margin-top: 5px;
	}

	.archive-location {
		font-size: 14px;
	}

	.archive-meta {
		max-width: 70px;
	}

	.archive-counter {
		flex-basis: 70px;
		min-width: 70px;
	}

	.archive-counter span {
		font-size: 33px;
	}

	.archive-counter span+span {
		font-size: 10px;
	}

}

@media (max-width:768px) {
	.archive-meta.is-author {
		flex: 1 0 100%;
		flex-direction: row;
		max-width: 100%;
	}

	.archive-counter.is-author {
		display: none;
	}

	.archive-icons {
		width: 100%;
	}

}

@media (max-width:959px) {
	.archive-icons a {
		height: 50px;
	}

	.archive-icons svg {
		width: 20px;
		height: 20px;
	}

	.archive-counter span+span {
		margin-top: 5px;
		letter-spacing: 0;
	}

	.archive-title h1 {
		margin-left: -1px;
	}

	.archive-cover {
		bottom: -150px;
	}

}

@media (min-width:480px) and (max-width:959px) {
	.archive-section {
		padding-right: 40px;
		padding-left: 40px;
	}

	.archive-title h1 {
		font-size: 33px;
	}

	.archive-meta {
		max-width: 120px;
	}

	.archive-counter {
		flex-basis: 120px;
		min-width: 120px;
	}

	.archive-counter span {
		font-size: 45px;
	}

	.archive-counter span+span {
		font-size: 14px;
	}

}

@media (min-width:769px) and (max-width:959px) {
	.archive-icons a {
		flex-basis: 100%;
	}

}

@media (min-width:480px) and (max-width:1399px) {
	.archive-section {
		padding-top: 200px;
	}

	.archive-image {
		flex-basis: 210px;
	}

	.archive-title {
		padding: 30px;
	}

}

@media (min-width:960px) and (max-width:1399px) {
	.archive-title h1 {
		font-size: 38px;
	}

	.archive-meta {
		max-width: 210px;
	}

	.archive-counter {
		flex-basis: 210px;
		min-width: 210px;
	}

	.archive-counter span {
		font-size: 65px;
	}

	.archive-icons a {
		height: 70px;
	}

	.archive-icons svg {
		width: 20px;
		height: 20px;
	}

}

@media (max-width:1399px) {
	.archive-section+.loop-section {
		margin-top: 100px;
	}

	.archive-section {
		margin-top: 0;
	}

	.archive-description {
		font-size: 16px;
		margin-top: 20px;
	}

	.archive-cover::before {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		height: 260px;
		content: '';
		opacity: .3;
		background-image: linear-gradient(to bottom, rgb(var(--color-image-overlay)), rgba(var(--color-image-overlay), .94505) 7.9%, rgba(var(--color-image-overlay), .88294) 15.3%, rgba(var(--color-image-overlay), .81522) 22.2%, rgba(var(--color-image-overlay), .7426) 28.7%, rgba(var(--color-image-overlay), .66692) 34.8%, rgba(var(--color-image-overlay), .58891) 40.6%, rgba(var(--color-image-overlay), .50925) 46.2%, rgba(var(--color-image-overlay), .42866) 51.7%, rgba(var(--color-image-overlay), .34817) 57.2%, rgba(var(--color-image-overlay), .2693) 62.8%, rgba(var(--color-image-overlay), .19309) 68.7%, rgba(var(--color-image-overlay), .12126) 75.2%, rgba(var(--color-image-overlay), .05882) 82.6%, rgba(var(--color-image-overlay), .01457) 91.2%, rgba(var(--color-image-overlay), 0));
	}

}

@media (min-width:1400px) {
	.archive-section:not(.is-image) {
		margin-top: 100px;
	}

}

/* --------------------------------------------------------------------------
   16.Subscribe form
   -------------------------------------------------------------------------- */
.nextprev-section+.subscribe-section,
.nextprev-section+.subscribe-section.is-image {
	margin-top: 25vh;
}

.subscribe-section {
	position: relative;
	max-width: 1400px;
	margin: 100px auto 0;
	padding: 100px 0;
	background-color: var(--color-bg-gray-one);
}

.subscribe-section.is-image {
	margin-top: 150px;
	background-color: transparent;
}

.subscribe-wrap {
	margin: 0 auto;
	text-align: center;
}

/* Image
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.subscribe-image {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* Form
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.subscribe-form {
	box-sizing: border-box;
	width: 100%;
	max-width: 740px;
	margin: 0 auto;
	padding: 70px 50px;
}

.subscribe-form.is-image {
	background-color: var(--color-bg-body);
}

.subscribe-form h3,
.subscribe-success h3 {
	font-size: 45px;
	line-height: 1.35;
	max-width: 600px;
	margin: 0 auto;
	padding: 15px 0;
}

.subscribe-form input {
	font-size: 20px;
	display: block;
	width: 65%;
	height: 35px;
	margin: 20px auto 30px;
	padding: 6px 9px;
	transition: width .6s ease .2s;
	text-align: center;
	border-bottom: 2px solid var(--color-elements-one);
}

.subscribe-form input:focus {
	width: 85%;
}

/* Alerts
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.subscribe-alert-loading,
.subscribe-alert-error {
	display: none;
}

.subscribe-alert-loading {
	color: var(--color-font-alert-orange);
}

.subscribe-alert-error {
	color: var(--color-font-alert-red);
}

.subscribe-form.loading~.subscribe-alert-loading,
.subscribe-form.error~.subscribe-alert-error {
	font-size: 10px;
	font-weight: var(--font-weight-secondary-bolder);
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	margin: 3vh auto 0;
	padding: 8px 15px;
	text-align: center;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	background-color: var(--color-bg-body);
}

/* Sucess info
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.subscribe-form.success,
.subscribe-form~.subscribe-success {
	display: none;
}

.subscribe-form.success~.subscribe-success {
	display: inline-block;
	padding: 6vh 6%;
	background-color: var(--color-bg-body)
}

/* RWD — Subscibe form
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.subscribe-section.is-image {
		padding: 60px 20px;
	}

	.subscribe-form,
	.subscribe-form.is-image {
		padding: 40px 20px;
	}

	.subscribe-form h3,
	.subscribe-success h3 {
		font-size: 25px;
	}

	.subscribe-form input {
		font-size: 16px;
	}

}

@media (min-width:480px) and (max-width:768px) {
	.subscribe-section.is-image {
		padding: 80px 40px;
	}

	.subscribe-form,
	.subscribe-form.is-image {
		padding: 50px;
	}

	.subscribe-form h3,
	.subscribe-success h3 {
		font-size: 35px;
	}

	.subscribe-form input {
		font-size: 18px;
	}

}

@media (max-width:768px) {
	.subscribe-section {
		padding: 0;
	}

	.nextprev-section+.subscribe-section,
	.nextprev-section+.subscribe-section.is-image {
		margin-top: 15vh;
	}

	.subscribe-section,
	.subscribe-section.is-image {
		margin-top: 10vh;
	}

	.subscribe-form input {
		margin-top: 0;
		margin-bottom: 20px;
	}

}

@media (min-width:769px) and (max-width:1024px) {

	.nextprev-section+.subscribe-section,
	.nextprev-section+.subscribe-section.is-image {
		margin-top: 18vh;
	}

}

/* --------------------------------------------------------------------------
   17.Members
   -------------------------------------------------------------------------- */

/* Login section
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.members-login-panel-section {
	position: relative;
	top: -8px;
	left: -15px;
	display: inline-block;
	margin: 0 0 25px 0;
	padding: 8px 15px 10px;
	border: 1px solid var(--color-gold);
}

.members-signin,
.members-account {
	margin-right: 22px;
}

.members-signup,
.members-signout,
.members-signin,
.members-account {
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-weight: var(--font-weight-primary-bold);
	position: relative;
	display: inline-block;
	transition: color .15s ease-in-out;
	color: var(--color-font-one);
}

.members-signup::before,
.members-signout::before {
	position: absolute;
	bottom: 4px;
	left: -22px;
	width: 1px;
	height: 20px;
	margin-left: 8px;
	content: '';
	pointer-events: none;
	border-left: 1px solid var(--color-gold);
}

.members-signup:hover,
.members-signout:hover,
.members-signin:hover,
.members-account:hover {
	color: var(--color-gold);
}

/* Teaser
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.members-teaser {
	position: relative;
	margin-bottom: 20px;
}

.members-teaser::after {
	position: absolute;
	right: 50%;
	bottom: -20px;
	left: 50%;
	width: 100vw;
	height: 80%;
	max-height: 340px;
	margin: 0 -50vw;
	content: '';
	pointer-events: none;
	background-color: var(--color-bg-body);
	-webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .013)8.1%, rgba(0, 0, 0, .049)15.5%, rgba(0, 0, 0, .104)22.5%, rgba(0, 0, 0, .175)29%, rgba(0, 0, 0, .259)35.3%, rgba(0, 0, 0, .352)41.2%, rgba(0, 0, 0, .45)47.1%, rgba(0, 0, 0, .55)52.9%, rgba(0, 0, 0, .648)58.8%, rgba(0, 0, 0, .741)64.7%, rgba(0, 0, 0, .825)71%, rgba(0, 0, 0, .896)77.5%, rgba(0, 0, 0, .951)84.5%, rgba(0, 0, 0, .987)91.9%, black);
	mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .013)8.1%, rgba(0, 0, 0, .049)15.5%, rgba(0, 0, 0, .104)22.5%, rgba(0, 0, 0, .175)29%, rgba(0, 0, 0, .259)35.3%, rgba(0, 0, 0, .352)41.2%, rgba(0, 0, 0, .45)47.1%, rgba(0, 0, 0, .55)52.9%, rgba(0, 0, 0, .648)58.8%, rgba(0, 0, 0, .741)64.7%, rgba(0, 0, 0, .825)71%, rgba(0, 0, 0, .896)77.5%, rgba(0, 0, 0, .951)84.5%, rgba(0, 0, 0, .987)91.9%, black);
}

/* CTA
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.members-cta {
	position: relative;
	box-sizing: border-box;
	max-width: 620px;
	margin: 40px auto 10vh;
	padding: 40px 60px;
	text-align: center;
	background-color: var(--color-bg-cta);
	box-shadow: 0 5px 45px -10px rgba(0, 0, 0, .3);
}

.members-content h2 {
	margin: 20px auto;
	padding: 0;
}

a.members-cta-button {
	transition-duration: .15s;
	transition-property: background-color, color;
	color: var(--color-font-one);
}

.members-content a {
	background: none;
}

/* RWD — Members
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.members-login-panel-section {
		line-height: 1;
		top: -8px;
		left: -12px;
		margin-bottom: 20px;
		padding: 6px 12px 8px;
	}

	.members-signin,
	.members-account {
		margin-right: 14px;
	}

	.members-signup,
	.members-signout,
	.members-signin,
	.members-account {
		font-size: 14px;
	}

	.members-signup::before,
	.members-signout::before {
		bottom: 1px;
		left: -18px;
		height: 15px;
	}

	.members-cta {
		margin: 0;
		padding: 25px 15px;
	}

}

@media (min-width:480px) and (max-width:768px) {
	.members-cta {
		padding: 30px;
	}

}

/* --------------------------------------------------------------------------
   18.Footer
   -------------------------------------------------------------------------- */
.footer-section {
	padding-top: 5vh;
}

.footer-wrap {
	align-items: center;
	max-width: 1400px;
	margin: 8vh auto 0;
	padding: 0 80px;
}

/* Navigation
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer-nav,
.footer-nav li {
	line-height: 1;
}

.footer-nav {
	flex: 0 0 60%;
	padding: 0 0 5px;
}

.footer-nav li {
	font-size: 14px;
	display: inline-block;
	margin-right: 15px;
	letter-spacing: .5px;
}

.footer-nav .nav-section li a,
.footer-nav .nav-section li a:hover {
	background-size: 0;
	text-transform: uppercase;
}

/* Social icons
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer-icons {
	flex: 0 0 40%;
	justify-content: flex-end;
}

.footer-icons a {
	line-height: 1;
	margin: 0 0 0 30px;
	padding: 2px 0;
}

.footer-icons svg {
	width: 19px;
	height: 19px;
}

/* Copyright
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer-copyright {
	font-size: 10px;
	line-height: 1.3;
	display: inline-block;
	padding: 10px 30px 30px 0;
	text-align: left;
	letter-spacing: .7px;
	text-transform: uppercase;
	opacity: .6;
}

/* RWD — Footer
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:768px) {
	.footer-section {
		padding-top: 8vh;
	}

	.footer-wrap {
		max-width: 450px;
		padding: 0 20px;
	}

	.footer-nav,
	.footer-icons {
		flex-basis: 100%;
		justify-content: center;
	}

	.footer-nav,
	.footer-copyright {
		text-align: center;
	}

	.footer-nav {
		order: 2;
	}

	.footer-nav li {
		margin-right: 5px;
		margin-left: 5px;
	}

	.footer-icons {
		padding-bottom: 2vh;
	}

	.footer-icons a {
		margin: 0 15px 0;
	}

	.footer-copyright {
		order: 3;
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}

}

/* --------------------------------------------------------------------------
   19.Custom pages
   -------------------------------------------------------------------------- */
.custom-wrap {
	width: 100%;
	height: 100%;
}

.custom-flex {
	flex: 1 0 57%;
	flex-direction: column;
	flex-wrap: nowrap;
}

.custom-image {
	flex: 1 0 43%;
}

.custom-content {
	align-items: center;
	flex: 1 0 auto;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	max-width: 900px;
	margin: 6vh auto 8vh;
	padding: 0 20px;
}

/* Header
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.custom-header {
	flex-shrink: 0;
	width: 100%;
	max-width: 900px;
	margin: 5vh auto 0;
	text-align: center;
}

.custom-header a {
	font-size: 11px;
	font-weight: var(--font-weight-secondary-bolder);
	line-height: 1.15;
	position: relative;
	display: inline;
	box-sizing: border-box;
	height: auto;
	margin-left: 10px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.custom-header a svg,
.custom-header a svg:hover {
	fill: var(--color-font-one);
}

.custom-header a svg {
	position: absolute;
	top: -1px;
	left: -25px;
	width: 16px;
	height: 16px;
	margin-left: 0;
	transition: all .15s ease-out;
}

.custom-header a:hover svg {
	left: -29px;
}

/* Footer
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.custom-footer {
	line-height: 1.1;
	flex-shrink: 0;
	box-sizing: border-box;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 15px 30px;
	text-align: center;
}

.custom-footer a {
	font-weight: var(--font-weight-secondary-bolder);
}

.custom-footer a,
.custom-footer span {
	font-size: 12px;
	display: inline;
	letter-spacing: .5px;
}

/* RWD — Custom page
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.custom-content {
		margin-top: 20px;
	}

}

@media (max-width:1024px) {
	.custom-image {
		display: none;
	}

}

/* --------------------------------------------------------------------------
   20.Subscribe page
   -------------------------------------------------------------------------- */
.custom-subscribe .subscribe-form {
	position: relative;
	padding: 0;
	text-align: center;
}

.custom-subscribe .subscribe-form p {
	padding-bottom: 30px;
}

/* Alert
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.custom-subscribe .subscribe-form.loading .subscribe-alert-loading,
.custom-subscribe .subscribe-form.error .subscribe-alert-error {
	font-size: 10px;
	font-weight: var(--font-weight-secondary-bolder);
	position: absolute;
	right: 0;
	bottom: -60px;
	left: 0;
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 10px 0;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   21.Error page
   -------------------------------------------------------------------------- */
.custom-error .error-message {
	position: relative;
	width: 100%;
	padding: 0 20px;
	text-align: center;
}

.custom-error .error-message h1,
.custom-error .error-message h3 {
	margin: 0;
}

.custom-error .error-message h1 {
	font-size: 200px;
	line-height: 1;
}

.custom-error .error-message h3 {
	font-size: 35px;
	padding-bottom: 40px;
}

/* RWD — Error page
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:768px) {
	.custom-error .error-message h1 {
		font-size: 120px;
	}

	.custom-error .error-message h3 {
		font-size: 20px;
		padding-bottom: 20px;
	}

}

/* --------------------------------------------------------------------------
   22.Contact page
   -------------------------------------------------------------------------- */
.custom-contact .contact-name {
	margin-bottom: 0;
}

.custom-contact .contact-email {
	margin-top: 20px;
}

.custom-contact .contact-message {
	font-size: 16px;
	display: block;
	box-sizing: border-box;
	width: calc(70% - 4px);
	max-width: 473px;
	min-height: 110px;
	margin: 40px auto;
	padding: 15px 9px;
	resize: vertical;
	text-align: center;
	color: var(--color-font-one);
	border: 2px solid var(--color-elements-one);
	outline: none;
	background-color: var(--color-bg-body);
}

/* --------------------------------------------------------------------------
   23.Tags page
   -------------------------------------------------------------------------- */
.custom-tags {
	margin: 100px auto 8vh;
}

.tags-wrap {
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 70px;
}

/* Item
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.tags-item {
	position: relative;
	align-content: center;
	flex: 1 0 auto;
	flex-wrap: nowrap;
	max-width: calc(100% - 20px);
	margin: 10px;
	background-color: var(--color-bg-gray-two);
}

.tags-item.is-last {
	max-width: calc(50% - 20px);
}

/* Link
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.tags-link {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.tags-link:hover+.tags-title a {
	background-size: 90% 30%;
}

/* Heading
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.tags-heading {
	font-size: 13px;
	font-weight: 700;
	display: block;
	width: 100%;
	margin: 15px 10px 0;
	padding: 4px 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

/* Title
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.tags-title {
	font-size: 30px;
	line-height: 1.2;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	min-width: calc(100% - 80px);
	margin: 0;
	padding: 25px 50px 20px 30px;
	background-color: var(--color-bg-gray-one);
}

.tags-title>.tags-image+a {
	color: var(--color-font-white);
}

/* Counter
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.tags-counter {
	font-family: var(--font-family-primary);
	font-size: 25px;
	font-weight: var(--font-weight-primary-bold);
	align-self: center;
	min-width: 80px;
	height: 33px;
	margin: 0;
	text-align: center;
}

/* Image
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.tags-image {
	display: block;
}

.tags-image,
.tags-image::before {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.tags-image::before {
	content: '';
	background-color: rgba(0, 0, 0, .4);
}

/* RWD — Tags page
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.tags-wrap {
		padding-right: 10px;
		padding-left: 10px;
	}

	.tags-title {
		font-size: 25px;
		padding-left: 20px;
	}

}

@media (min-width:480px) and (max-width:768px) {
	.tags-wrap {
		padding-right: 30px;
		padding-left: 30px;
	}

}

@media (max-width:1024px) {
	.tags-item.is-last {
		max-width: 100%;
	}

}

/* --------------------------------------------------------------------------
   24.Membership & Account page
   -------------------------------------------------------------------------- */
.membership-card,
.membership-footer,
.membership-heading {
	box-sizing: border-box;
}

/* Subtitle alert
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-subtitle-alert {
	color: var(--color-font-alert-red);
}

/* Icon
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-meta>div {
	background-color: var(--color-bg-gray-one);
}

.membership-meta svg {
	width: 80px;
}

.membership-meta svg,
.membership-meta svg:hover {
	fill: var(--color-bg-membership-icon);
}

/* Small heading
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-heading {
	font-size: 11px;
	font-weight: var(--font-weight-secondary-bolder);
	line-height: 1.15;
	position: relative;
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Switch
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-cards[data-active-price="yearly"] [data-monthly],
.membership-cards[data-active-price="monthly"] [data-yearly],
.membership-cards[data-active-price-plans] .membership-switch {
	display: none;
}

.membership-cards[data-active-public-paid-tiers="false"] .membership-switch {
	display: none !important;
}

.membership-cards[data-active-price="monthly"] .membership-switch-wrap::before {
	transform: translateX(-100%);
}

.membership-cards[data-active-price-plans*="monthly"][data-active-price-plans*="yearly"] .membership-switch {
	display: flex;
}

.membership-switch {
	display: block;
	flex-basis: 100%;
	width: 100%;
}

.membership-switch-wrap,
.membership-switch-wrap button {
	position: relative;
}

.membership-switch-wrap {
	display: flex;
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
	max-width: 280px;
	min-height: 54px;
	margin: 1vh auto 6vh;
	background-color: var(--color-bg-gray-one);
}

.membership-switch-wrap::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	width: 50%;
	content: "";
	transition: transform .15s ease-in-out;
	border: 2px solid var(--color-elements-one);
}

.membership-switch-wrap button {
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-weight: var(--font-weight-primary-bold);
	line-height: 1;
	width: 50%;
	padding: 0;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	transition: color .15s ease-in-out;
	color: var(--color-font-one);
	border: 0;
	outline: none;
	background-color: transparent;
	box-shadow: none;
}

/* Pricing tables
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-cards {
	justify-content: center;
	max-width: calc(1400px + 30px);
	margin: 80px auto 0;
	padding: 0 80px 10px;
}

.membership-card {
	position: relative;
	z-index: 1;
	flex: 1 0 calc(33.333% - 15px * 2);
	min-width: 280px;
	max-width: 447px;
	margin: 0 15px 30px;
	padding-bottom: 70px;
	text-align: center;
	background-color: var(--color-bg-gray-one);
}

.membership-card-content {
	margin: 0 auto;
	padding: 40px 30px;
}

/* Title
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-card-title {
	font-size: 15px;
	margin: 0;
	padding: 0;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Price & Description
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-card-price {
	font-size: 80px;
	margin: 0 0 0 -25px;
	padding: 2vh 0 4vh;
}

.membership-card-price sup {
	font-family: var(--font-family-secondary);
	font-size: 55%;
	font-weight: var(--font-weight-secondary-regular);
	margin-right: 5px;
}

.membership-card-price span,
.membership-card-description {
	font-size: 20px;
}

.membership-card-description {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-primary-regular);
	line-height: 1.5;
	margin: -1.5vh 25px 3vh;
}

/* Options
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-card-options ul {
	margin: 0;
	padding: 0 0 4vh;
}

.membership-card-options ul li {
	font-size: 16px;
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

/* Button
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-card-button-wrap {
	position: absolute;
	right: 0;
	bottom: 40px;
	left: 0;
}

/* Footer
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership-footer {
	width: 100%;
	max-width: 700px;
	margin: 0 auto 5vh;
	padding: 0 20px;
	text-align: center;
}

.membership-footer small {
	margin-top: 0;
}

/* Paid account
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.account-loop-section .loop-excerpt,
.account-loop-section time {
	display: none;
}

.account-loop-section {
	position: relative;
}

.account-loop-section .membership-heading {
	position: absolute;
	top: -30px;
}

/* Subscriber details
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
.subscriber-details {
	width: 100%;
	padding: 0 40px 40px;
	background-color: var(--color-bg-gray-one);
}

.subscriber-details>div {
	padding: 20px 25px;
	background-color: var(--color-bg-gray-two);
}

.subscriber-detail-column {
	flex-basis: auto;
	flex-shrink: 0;
}

.subscriber-detail-column.one {
	flex-grow: 50;
	min-width: 250px;
}

.subscriber-detail-column.two {
	flex-grow: 999;
	min-width: 220px;
}

.subscriber-detail-column>div {
	box-sizing: border-box;
	padding: 15px 30px 15px 0;
}

.subscriber-heading {
	font-size: 11px;
	font-weight: var(--font-weight-secondary-bolder);
	line-height: 1.15;
	position: relative;
	display: block;
	width: 100%;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-font-two);
}

.subscriber-content {
	font-family: var(--font-family-secondary);
	font-size: 16px;
	font-weight: var(--font-weight-secondary-bolder);
	display: inline-block;
	margin-top: 7px;
}

.subscriber-cancel {
	align-self: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

.subscriber-cancel-button {
	padding: 15px;
	letter-spacing: 1px;
}

.subscriber-cancel-error {
	font-size: 11px;
	font-weight: var(--font-weight-secondary-bolder);
	display: none;
	max-width: 240px;
	margin-top: 20px;
	letter-spacing: .5px;
	color: var(--color-font-alert-red);
}

.subscriber-cancel-button.error+.subscriber-cancel-error {
	display: block;
}

.subscriber-detail-buttons {
	font-size: 14px;
	width: 100%;
	margin-top: 10px;
	text-align: right;
}

.subscriber-detail-buttons span {
	display: inline-block;
	transition: transform .2s ease;
}

.subscriber-detail-buttons a:hover span {
	transform: translateX(3px);
}

.subscriber-detail-buttons a:first-child {
	margin-right: 10px;
}

.subscriber-detail-buttons a:hover:first-child {
	text-decoration: underline;
}

/* RWD — Membership
   –––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:479px) {
	.membership-switch {
		margin-right: 10px;
		margin-left: 10px;
	}

	.membership-switch-wrap {
		max-width: 100%;
		min-height: 44px;
		margin-top: 100px;
		margin-bottom: 30px;
	}

	.membership-meta,
	.membership-heading {
		display: none;
	}

	.membership-cards {
		padding-right: 10px;
		padding-left: 10px;
	}

	.membership-card {
		margin: 0 15px 15px;
	}

	.membership-card-content {
		padding: 30px 15px;
	}

	.membership-card-price {
		font-size: 50px;
	}

	.membership-card-price span,
	.membership-card-description {
		font-size: 20px;
	}

	.subscriber-details {
		padding: 0 20px 20px;
	}

	.subscriber-details>div {
		padding: 15px;
	}

	.subscriber-detail-column.one,
	.subscriber-detail-column.two {
		min-width: 100%;
	}

	.subscriber-detail-column>div {
		padding-right: 0;
	}

	.subscriber-cancel-error {
		max-width: 100%;
	}

}

@media (min-width:480px) and (max-width:768px) {
	.membership-cards {
		padding-right: 30px;
		padding-left: 30px;
	}

}

@media (min-width:480px) and (max-width:1399px) {
	.subscriber-details {
		padding: 0 30px 30px;
	}

	.subscriber-details>div {
		padding-right: 20px;
		padding-left: 20px;
	}

}

@media (max-width:768px) {
	.subscriber-detail-column {
		flex-basis: 50%;
	}

	.subscriber-cancel {
		width: 100%;
	}

	.subscriber-detail-buttons {
		text-align: left;
	}

}

@media (max-width:1024px) {
	.membership-meta svg {
		width: 65px;
	}

	.membership-card-price {
		font-size: 65px;
	}

	.membership-card-options ul li {
		font-size: 15px;
	}

}

@media (min-width:769px) and (max-width:1280px) {
	.membership-cards {
		padding-right: 70px;
		padding-left: 70px;
	}

}

@media (max-width:1280px) {
	.membership-card {
		max-width: 100%;
		margin: 0 10px 20px;
	}

}

@media (min-width:1400px) {
	.archive-section+.account-loop-section {
		margin-bottom: 7vh;
	}

}
