@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Mono&display=swap");

:root {
	--color-highlight: var(--ghost-accent-color);
	--color-accent: #5ceace;
	--color-text: #222;
	--color-border: #ddd;
	--color-bg: #fff;
	--color-success: #80b912;
	--color-error: #f05230;
	--color-combo-1: #fff5ca;
	--color-peach: #fee5da;
	--color-white: var(--color-bg);
	--color-black: var(--color-text);
	--color-gradient-main: #5522fa;
	--color-gradient-secondary: #0074e4;
	--color-grey: #f2f0f2;
	--color-shodaow: rgba(0, 0, 0, .1);
	--font-sans-serif: "Source Sans Pro", "Helvetica Neue", helvetica, "Apple Color Emoji", arial, sans-serif;
	--font-serif: Georgia, Times, serif;
	--font-mono: "PT Mono", Menlo, Courier, monospace;
	--font-light: 100;
	--font-normal: 400;
	--font-semiBold: 600;
	--font-bold: 700;
	--font-heavy: 800;
	--padding: 7vmim;
	--type-xxx-small: 55%;
	--type-xx-small: 65%;
	--type-x-small: 75%;
	--type-small: 85%;
	--type-medium: 100%;
	--type-large: 120%;
	--type-x-large: 135%;
	--type-xx-large: 225%;
	--type-xxx-large: 275%;
	--type-xxxx-large: 350%;
	--xlarge: 1680px;
	--large: 1280px;
	--medium: 980px;
	--small: 740px;
	--xsmall: 480px;
	--height: 4rem;
	--margin: 2rem;
	--radius: 0.5rem
}

*,
:after,
:before {
	box-sizing: border-box
}

html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-size: 62.5%;
	overflow-x: hidden;
	overflow-y: scroll
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	color: #464646;
	color: color-mix(in srgb, #222 80%, #fff);
	color: color-mix(in srgb, var(--color-text) 80%, #fff);
	font-family: Source Sans Pro, Helvetica Neue, helvetica, Apple Color Emoji, arial, sans-serif;
	font-family: var(--font-sans-serif);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6em;
	min-height: 100vh;
	scroll-behavior: smooth
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
form,
hr,
li,
ol,
p,
pre,
table,
ul,
video {
	margin: 0;
	padding: 0
}

ol[class],
ul[class] {
	list-style: none;
	padding: 0
}

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

button,
input,
select,
textarea {
	-webkit-appearance: none;
	font: inherit
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0
}

label {
	font-size: .9em;
	font-weight: 700
}

hr,
label {
	display: block
}

hr {
	border: 0;
	border-top: 1px solid;
	height: 1px;
	opacity: .2;
	position: relative;
	width: 100%
}

::-moz-selection {
	background: #cbeafb;
	text-shadow: none
}

::selection {
	background: #cbeafb;
	text-shadow: none
}

mark {
	background-color: #fdffb6
}

small {
	font-size: 80%
}

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

sup {
	top: -.5em
}

sub {
	bottom: -.25em
}

ul:not([class]) li+li {
	margin-top: .6em
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	color: var(--color-primary);
	text-decoration-skip-ink: auto
}

a[class] {
	color: inherit;
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: .4s ease
}

a[class]:hover {
	transition: .2s ease
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.15em;
	margin: 0
}

h1 {
	font-size: 4.6rem;
	letter-spacing: -.5px
}

@media (max-width:500px) {
	h1 {
		font-size: 2.7rem
	}
}

h2 {
	font-size: 3.6rem
}

@media (max-width:500px) {
	h2 {
		font-size: 2.2rem
	}
}

h3 {
	font-size: 3.2rem
}

@media (max-width:500px) {
	h3 {
		font-size: 1.8rem
	}
}

h4 {
	font-size: 2.6rem
}

h5 {
	font-size: 2.4rem
}

h6 {
	font-size: 2.2rem
}

@media (prefers-reduced-motion:reduce) {
	* {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important
	}
}

.gh-input,
.gh-textarea {
	background: #fff;
	background: var(--color-bg);
	border: 1px solid #ddd;
	border: 1px solid var(--color-border);
	border-radius: .5rem;
	border-radius: var(--radius);
	color: inherit;
	display: block;
	outline: 0;
	padding: 0 .6em;
	-webkit-text-decoration: none;
	text-decoration: none;
	width: 100%
}

.gh-input:focus {
	border-color: var(--color-primary)
}

.gh-select {
	height: 4rem;
	height: var(--height);
	padding-right: 4rem;
	padding-right: var(--height);
	text-overflow: ellipsis
}

.gh-select option {
	background: #fff;
	background: var(--color-bg);
	color: var(--color-primary)
}

.gh-select:focus::-ms-value {
	background-color: transparent
}

.gh-select::-ms-expand {
	display: none
}

.gh-input,
.gh-select {
	height: 4rem;
	height: var(--height)
}

.gh-textarea {
	padding: .3em .6em;
	resize: vertical
}

.gh-check {
	display: block;
	margin-right: -2em;
	opacity: 0;
	width: 1em;
	z-index: -1
}

.gh-check+label {
	align-items: center;
	color: #222;
	color: var(--color-text);
	cursor: pointer;
	display: flex;
	font-size: 1em;
	font-weight: 400;
	font-weight: var(--font-normal);
	padding-left: calc(2.4rem + .75em);
	padding-left: calc(var(--height)*.6 + .75em);
	padding-right: 2rem;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none
}

.gh-check+label:before {
	background: #fff;
	background: var(--color-bg);
	border: 1px solid #ddd;
	border: 1px solid var(--color-border);
	border-radius: .5rem;
	border-radius: var(--radius);
	content: "";
	display: inline-block;
	height: 2.4rem;
	height: calc(var(--height)*.6);
	line-height: 2.24rem;
	line-height: calc(var(--height)*.56);
	margin-right: 1rem;
	text-align: center;
	width: 2.4rem;
	width: calc(var(--height)*.6)
}

.gh-check:checked+label:before {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	color: var(--color-bg);
	content: "✓"
}

.gh-check:focus+label:before {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 1px var(--color-primary)
}

.gh-check+label:before {
	border-radius: .5rem;
	border-radius: var(--radius);
	border-radius: 100%
}

.gh-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	border-radius: .5rem;
	border-radius: var(--radius);
	cursor: pointer;
	display: inline-block;
	font-family: Source Sans Pro, Helvetica Neue, helvetica, Apple Color Emoji, arial, sans-serif;
	font-family: var(--font-sans-serif);
	font-size: 120%;
	font-size: var(--type-large);
	font-weight: 600;
	font-weight: var(--font-semiBold);
	height: 4rem;
	height: var(--height);
	line-height: 4rem;
	line-height: var(--height);
	min-width: 75px;
	padding: 0 2rem;
	text-align: center;
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: box-shadow .2s ease;
	white-space: nowrap
}

.gh-button:hover {
	-webkit-text-decoration: none !important;
	text-decoration: none !important
}

.gh-button.gh-button-fit {
	width: 100%
}

.gh-button.gh-button-small {
	font-size: 1.2rem;
	height: 3.6rem;
	height: calc(var(--height)*.9);
	line-height: 3.6rem;
	line-height: calc(var(--height)*.9);
	padding: 0 1.5rem
}

.gh-button.gh-button-large {
	font-size: 1.7rem;
	height: 4.8rem;
	height: calc(var(--height)*1.2);
	line-height: 4.8rem;
	line-height: calc(var(--height)*1.2);
	padding: 0 2.5rem
}

.gh-button.gh-button-disabled,
.gh-button:disabled {
	opacity: .4;
	pointer-events: none
}

.gh-button {
	background: linear-gradient(90deg, #5522fa, #0074e4);
	background: linear-gradient(90deg, var(--color-gradient-main) 0, var(--color-gradient-secondary) 100%);
	border-radius: 1.5em;
	color: #fff !important;
	color: var(--color-white) !important
}

.gh-button:hover {
	box-shadow: 0 0 0 .15rem #5ceace;
	box-shadow: 0 0 0 .15rem var(--color-accent);
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: .2s ease;
	transition: box-shadow .2s ease
}

.gh-button.gh-button-primary {
	box-shadow: none;
	color: #fff !important
}

.gh-button.gh-button-primary,
.gh-button.gh-button-primary:hover {
	background-color: var(--color-primary)
}

.gh-head {
	background: inherit;
	font-size: 1.6rem;
	line-height: 1.3em;
	padding: 1vmin 4vmin
}

.gh-head a {
	color: inherit;
	-webkit-text-decoration: none;
	text-decoration: none
}

.gh-head-inner {
	grid-gap: 40px;
	display: grid;
	grid-auto-flow: row dense;
	grid-template-columns: 2fr auto auto
}

.gh-head-brand {
	align-items: center;
	display: flex;
	grid-column-start: 1;
	max-width: 400px;
	text-align: center;
	word-break: break-all
}

.gh-head-logo {
	display: block;
	font-family: PT Mono, Menlo, Courier, monospace;
	font-family: var(--font-mono);
	font-size: 225%;
	font-size: var(--type-xx-large);
	line-height: 1.5em;
	padding: 10px 0;
	text-transform: uppercase
}

.gh-head-logo img {
	max-height: 40px
}

.gh-head-menu {
	align-items: center;
	display: flex
}

.gh-head-menu .nav {
	align-items: center;
	display: inline-flex;
	flex-wrap: wrap;
	list-style: none
}

.gh-head-menu .nav li {
	font-size: 1.3em;
	font-weight: 600;
	font-weight: var(--font-semiBold);
	margin: 0 1.5vmin 0 0;
	padding: 0
}

.gh-head-menu .nav a {
	display: inline-block;
	padding: 5px 0
}

.gh-head-menu .nav-current a,
.gh-head-menu a:hover {
	-webkit-text-decoration: underline;
	text-decoration: underline;
	text-decoration-thickness: .1em;
	text-underline-offset: 3px
}

.gh-head-menu a:hover {
	color: var(--ghost-accent-color);
	color: var(--color-highlight);
	text-decoration-color: #5ceace;
	text-decoration-color: var(--color-accent);
	transition: color .4s ease
}

.gh-head-actions {
	display: flex;
	list-style: none;
	text-align: right
}

.gh-head-actions,
.gh-head-actions-list {
	align-items: center;
	justify-content: flex-end
}

.gh-head-actions-list {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px
}

.gh-head-actions-list a:not([class]) {
	display: inline-block;
	margin: 0 0 0 1.5vmin;
	padding: 5px 0
}

.gh-burger {
	cursor: pointer;
	display: none;
	position: relative
}

.gh-burger-box {
	align-items: center;
	display: flex;
	height: 33px;
	justify-content: center;
	position: relative;
	width: 33px
}

.gh-burger-inner {
	height: 100%;
	width: 100%
}

.gh-burger-box:before {
	transition: transform .3s cubic-bezier(.2, .6, .3, 1), width .3s cubic-bezier(.2, .6, .3, 1)
}

.gh-burger-box:before,
.gh-burger-inner:after,
.gh-burger-inner:before {
	background: currentcolor;
	bottom: 0;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	margin: auto;
	position: absolute;
	top: 0;
	width: 100%;
	will-change: transform, width
}

.gh-burger-inner:after,
.gh-burger-inner:before {
	transition: transform .25s cubic-bezier(.2, .7, .3, 1), width .25s cubic-bezier(.2, .7, .3, 1)
}

.gh-burger-inner:before {
	transform: translatey(-6px)
}

.gh-burger-inner:after {
	transform: translatey(6px)
}

body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner:before {
	transform: translatey(-8px)
}

body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner:after {
	transform: translatey(8px)
}

.gh-head-open .gh-burger-box:before {
	transform: translatex(19px);
	transition: transform .2s cubic-bezier(.2, .7, .3, 1), width .2s cubic-bezier(.2, .7, .3, 1);
	width: 0
}

.gh-head-open .gh-burger-inner:before {
	transform: translatex(6px) rotate(135deg);
	width: 26px
}

.gh-head-open .gh-burger-inner:after {
	transform: translatex(6px) rotate(-135deg);
	width: 26px
}

.gh-head-brandnavactions .gh-head-brand {
	grid-column-start: 1
}

.gh-head-brandnav .gh-container {
	grid-gap: 0;
	grid-template-columns: auto max-content max-content
}

.gh-head-brandnav .gh-head-brand {
	grid-column-start: 1
}

.gh-head-brandnav .gh-head-menu {
	margin-left: 40px
}

.gh-head-brandnav .gh-head-menu .nav li {
	margin: 0 0 0 1.5vmin;
	padding: 0
}

.gh-head-stacked .gh-container {
	grid-gap: 2vmin;
	grid-template-columns: 1fr
}

.gh-head-stacked .gh-head-brand {
	display: flex;
	grid-column-start: 1;
	justify-content: center;
	max-width: none;
	text-align: center;
	width: 100%
}

.gh-head-stacked .gh-head-actions,
.gh-head-stacked .gh-head-actions-list,
.gh-head-stacked .gh-head-menu {
	justify-content: center
}

.gh-head-stacked .gh-head-actions a:first-child svg {
	margin-left: 0
}

@media (max-width:900px) {
	.gh-burger {
		display: inline-block
	}

	#gh-head {
		overflow: hidden;
		transition: all .4s ease-out
	}

	#gh-head .gh-head-inner {
		grid-template-columns: 1fr;
		height: 100%
	}

	#gh-head .gh-head-brand {
		align-items: center;
		display: flex;
		grid-column-start: auto;
		justify-content: space-between;
		max-width: none;
		position: relative;
		-webkit-user-select: none;
		-moz-user-select: none;
		user-select: none;
		z-index: 10
	}

	#gh-head .gh-head-logo {
		font-size: 2em
	}

	#gh-head .gh-head-logo img {
		max-height: 40px
	}

	#gh-head .gh-head-menu {
		align-items: center;
		align-self: center;
		display: flex;
		flex-direction: column;
		font-size: 3.6rem;
		font-weight: 300;
		line-height: 1.1em;
		margin: 0 0 10vh;
		text-align: center
	}

	#gh-head .gh-head-menu .nav li {
		margin: 5px 0
	}

	#gh-head .gh-head-menu .nav a {
		padding: 8px 0
	}

	#gh-head .gh-head-menu .nav {
		align-items: center;
		display: flex;
		flex-direction: column
	}

	#gh-head .gh-head-actions {
		justify-content: center;
		padding: 20px 0;
		text-align: left
	}

	#gh-head .gh-head-actions a {
		margin: 0 10px
	}

	#gh-head .gh-head-actions,
	#gh-head .gh-head-menu {
		display: none
	}

	.gh-head-open {
		height: 100vh;
		overflow: hidden
	}

	.gh-head-open #gh-head {
		bottom: 0;
		left: 0;
		overflow-y: scroll;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 900
	}

	.gh-head-open #gh-head .gh-head-inner {
		grid-template-rows: auto 1fr auto
	}

	.gh-head-open #gh-head .gh-head-actions,
	.gh-head-open #gh-head .gh-head-menu {
		display: flex
	}
}

@media (max-width:600px) {
	#gh-head .gh-head-menu {
		font-size: 6vmin
	}
}

.gh-canvas {
	display: grid;
	grid-template-columns: [full-start] minmax(5vw, auto) [wide-start] minmax(auto, 240px) [main-start] min(720px, calc(100% - 10vw)) [main-end] minmax(auto, 240px) [wide-end] minmax(5vw, auto) [full-end]
}

.gh-canvas>* {
	grid-column: main-start/main-end
}

.kg-width-wide {
	grid-column: wide-start/wide-end
}

.kg-width-full {
	grid-column: full-start/full-end
}

.kg-width-full img {
	width: 100%
}

.gh-content>*+* {
	margin-top: 4vmin
}

.blockquote {
	margin-bottom: 4vmin !important
}

.kg-header-card {
	padding: 12vmin 4em
}

.gh-content [id]:not(:first-child) {
	margin: 1em 0 0
}

.kg-header-card-button {
	border-radius: 100px !important;
	font-size: 1.2em !important;
	height: 2.4em !important
}

.gh-content>[id]+* {
	margin-top: 1.5rem
}

.gh-content [id]+.kg-card,
.gh-content blockquote+.kg-card {
	margin-top: 6vmin
}

.gh-canvas>blockquote,
.gh-canvas>dl,
.gh-canvas>ol,
.gh-canvas>p,
.gh-canvas>ul {
	font-family: Source Sans Pro, Helvetica Neue, helvetica, Apple Color Emoji, arial, sans-serif;
	font-family: var(--font-sans-serif);
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.6em
}

.gh-content>dl,
.gh-content>ol,
.gh-content>ul {
	padding-left: 1.9em
}

.gh-content hr {
	margin-top: 6vmin
}

.gh-content hr+* {
	margin-top: 6vmin !important
}

.gh-content blockquote {
	font-style: italic;
	position: relative
}

.gh-content blockquote:before {
	background: var(--color-primary);
	bottom: 0;
	content: "";
	left: -1.5em;
	position: absolute;
	top: 0;
	width: .3rem
}

@media (max-width:650px) {

	.gh-canvas blockquote,
	.gh-canvas dl,
	.gh-canvas ol,
	.gh-canvas p,
	.gh-canvas ul {
		font-size: 1.8rem
	}

	.gh-content blockquote:before {
		left: -4vmin
	}
}

.gh-content .kg-card+:not(.kg-card),
.gh-content :not(.kg-card):not([id])+.kg-card {
	margin-top: 6vmin
}

figcaption {
	color: rgba(0, 0, 0, .5);
	font-size: 1.3rem;
	line-height: 1.4em;
	padding-top: .8em;
	text-align: center
}

figcaption strong {
	color: rgba(0, 0, 0, .8)
}

.gh-canvas :not(pre) code {
	border: 1px solid #e1eaef;
	border-radius: .25em;
	color: #333;
	font-size: .9em;
	font-weight: 400 !important;
	line-height: 1em;
	padding: .15em .4em;
	vertical-align: middle
}

.gh-canvas>pre {
	background: hsla(0, 0%, 100%, .8);
	border-radius: 17.33333333px;
	box-shadow: 0 2px 6px -2px rgba(0, 0, 0, .1), 0 0 1px rgba(0, 0, 0, .4);
	margin-top: 2em;
	overflow: scroll;
	padding: 16px 20px
}

.kg-embed-card {
	align-items: center;
	display: flex;
	flex-direction: column;
	width: 100%
}

.kg-embed-card>:where(iframe[src*="youtube.com"], iframe[src*="vimeo.com"]) {
	aspect-ratio: 16/9;
	height: auto;
	width: 100%
}

.kg-image-card img {
	margin: auto
}

.kg-gallery-card+.kg-gallery-card {
	margin-top: .75em
}

.kg-gallery-container {
	position: relative
}

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

.kg-gallery-image>img {
	display: block;
	height: auto !important;
	margin: 0;
	width: 100%
}

.kg-gallery-row:not(:first-of-type) {
	margin: .75em 0 0
}

.kg-gallery-image:not(:first-of-type) {
	margin: 0 0 0 .75em
}

.kg-bookmark-card,
.kg-bookmark-publisher {
	position: relative
}

.kg-bookmark-container,
.kg-bookmark-container:hover {
	background: hsla(0, 0%, 100%, .6);
	border-radius: 5px;
	box-shadow: 0 2px 6px -2px rgba(0, 0, 0, .1), 0 0 1px rgba(0, 0, 0, .4);
	color: currentColor;
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	font-family: Source Sans Pro, Helvetica Neue, helvetica, Apple Color Emoji, arial, sans-serif;
	font-family: var(--font-sans-serif);
	overflow: hidden;
	-webkit-text-decoration: none;
	text-decoration: none
}

.kg-bookmark-content {
	flex-basis: 0;
	flex-grow: 999;
	order: 1;
	padding: 20px
}

.kg-bookmark-title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3em
}

.kg-bookmark-description {
	font-size: 1.4rem;
	line-height: 1.55em;
	margin: .5em 0 0;
	max-height: 45px;
	opacity: .8
}

.kg-bookmark-metadata {
	align-items: center;
	display: flex;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.3em;
	margin-top: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.kg-bookmark-description {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	overflow: hidden
}

.kg-bookmark-icon {
	display: inline-block;
	height: 16px;
	width: 16px
}

.kg-bookmark-thumbnail {
	display: flex;
	flex-basis: 24rem;
	flex-grow: 1;
	justify-content: flex-end
}

.kg-bookmark-thumbnail img {
	height: auto;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: bottom
}

.kg-bookmark-author {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.kg-bookmark-publisher:before {
	content: "•";
	margin: 0 .5em
}

.kg-width-full.kg-card-hascaption {
	display: grid;
	grid-template-columns: inherit
}

.kg-width-wide.kg-card-hascaption img {
	grid-column: wide-start/wide-end
}

.kg-width-full.kg-card-hascaption img {
	grid-column: 1/-1
}

.kg-width-full.kg-card-hascaption figcaption {
	grid-column: main-start/main-end
}

.gh-content table {
	border-collapse: collapse;
	width: 100%
}

.gh-content th {
	font-size: .75em;
	padding: .5em .8em;
	text-align: left;
	text-transform: uppercase
}

.gh-content td {
	padding: .4em .7em
}

.gh-content tbody tr:nth-child(odd) {
	background-color: rgba(0, 0, 0, .1);
	padding: 1px
}

.gh-content tbody tr:nth-child(2n+2) td:last-child {
	box-shadow: inset 1px 0 rgba(0, 0, 0, .1), inset -1px 0 rgba(0, 0, 0, .1)
}

.gh-content tbody tr:nth-child(2n+2) td {
	box-shadow: inset 1px 0 rgba(0, 0, 0, .1)
}

.gh-content tbody tr:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.gh-readmore {
	font-size: 2.6rem;
	padding: 8vmin 4vmin
}

.gh-readmore-inner {
	grid-gap: 8vmin;
	display: grid;
	grid-template-columns: 1fr 1fr
}

.gh-readmore-prev {
	justify-content: flex-end;
	text-align: right
}

.gh-readmore a {
	color: currentColor;
	display: flex;
	-webkit-text-decoration: none;
	text-decoration: none
}

.gh-readmore h4 {
	font-size: inherit;
	width: 100%
}

.gh-readmore svg {
	display: inline-block;
	height: 1em;
	margin: .15em 0 0;
	vertical-align: middle
}

.gh-readmore h4+svg,
.gh-readmore svg+h4 {
	margin-left: 2vmin
}

@media (max-width:700px) {
	.gh-readmore {
		font-size: 1.6rem
	}

	.gh-readmore svg {
		margin: .1em 0 0
	}
}

.gh-auth-form {
	margin: 0 auto 10vmin;
	max-width: 600px;
	text-align: center;
	width: 100%
}

.gh-auth-title {
	font-size: 4.2rem;
	margin: 0 0 .1em
}

.gh-auth-form p {
	color: rgba(0, 0, 0, .6);
	font-size: 1.7rem;
	margin: 10px 0 4vmin
}

.gh-auth-form p small {
	display: inline-block;
	font-size: 1.4rem;
	margin: 15px 0 0
}

.gh-auth-box {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 460px
}

.gh-auth-box .gh-button {
	margin-left: 10px
}

@media (max-width:600px) {
	.gh-auth-box {
		flex-direction: column;
		max-width: 400px
	}

	.gh-auth-box .gh-button {
		margin: 15px 0 0;
		width: 100%
	}
}

form[data-members-form] .gh-button-loader,
form[data-members-form] .message-error,
form[data-members-form] .message-success {
	display: none
}

.gh-button-content {
	min-width: 100px
}

.message-error svg,
.message-success svg {
	height: 15px;
	margin-right: 5px;
	position: relative;
	top: -1px;
	width: 15px
}

.message-success svg {
	fill: #fff
}

.message-error svg {
	fill: #f05230;
	fill: var(--color-error)
}

form[data-members-form].error .message-error,
form[data-members-form].success .message-success {
	background: #222;
	background: var(--color-text);
	border-radius: .5rem;
	border-radius: var(--radius);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	left: 4vmin;
	line-height: 1.5em;
	margin: 0 auto;
	max-width: calc(1400px - 8vmin);
	padding: 10px 0;
	position: fixed;
	right: 4vmin;
	text-align: center;
	top: 20px;
	z-index: 9999
}

form[data-members-form].success .message-success {
	background: #80b912;
	background: var(--color-success)
}

form[data-members-form].error .message-error {
	background: #fff;
	box-shadow: 0 0 0 1px #f05230;
	box-shadow: var(--color-error) 0 0 0 1px;
	color: #f05230;
	color: var(--color-error)
}

form[data-members-form] .gh-button {
	min-width: 120px;
	position: relative
}

form[data-members-form].loading .gh-button-content {
	visibility: hidden
}

form[data-members-form].loading .gh-button-loader {
	bottom: -30%;
	display: inline-block;
	left: 50%;
	margin: 0 0 0 -19px;
	position: absolute;
	transform: scale(.6)
}

.gh-button-loader svg path,
.gh-button-loader svg rect {
	fill: #fff
}

form[data-members-form].error .message-error,
form[data-members-form].success .message-success {
	display: block
}

.gh-error {
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 2vmin
}

.gh-error-content {
	flex: 1 0 auto;
	text-align: center
}

.gh-error-code {
	font-size: 14vmin;
	margin: 0
}

.gh-error-description {
	font-size: 4vmin;
	font-weight: 300;
	line-height: 1.2em;
	margin: 0 auto;
	max-width: 600px;
	opacity: .6;
	padding: 0 2rem
}

.gh-error-link {
	display: block;
	font-size: 1.6rem;
	margin-top: 4vmin
}

.gh-error-stack {
	margin: 0 auto;
	max-width: 600px;
	padding: 8vmin 0;
	text-align: left
}

.gh-error-stack-list {
	font-size: 1.4rem;
	margin: 4vmin 0 0
}

.gh-error-stack-list>li {
	border-top: 1px solid rgba(0, 0, 0, .1);
	margin: 0;
	padding: 2rem 0
}

.gh-error-stack-function {
	color: red;
	font-size: 1.8rem;
	margin: 0 0 .5em
}

.gh-foot {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 8vmin 4vmin 4vmin
}

.gh-foot .gh-container {
	width: auto
}

.gh-foot a {
	color: inherit
}

.gh-foot-menu {
	display: flex;
	max-width: 600px
}

.gh-foot-menu,
.gh-foot-menu .nav {
	align-items: center;
	justify-content: center
}

.gh-foot-menu .nav {
	display: inline-flex;
	flex-wrap: wrap;
	font-size: 1.8rem;
	list-style: none
}

.gh-foot-menu .nav li {
	background-color: #fff5ca;
	background-color: var(--color-combo-1);
	border-radius: 1.4em;
	color: #5522fa;
	font-size: 85%;
	font-size: var(--type-small);
	margin: .25em .125em;
	padding: .15em .75em;
	-webkit-text-decoration: none;
	text-decoration: none
}

.gh-foot-menu .nav li:hover {
	background: linear-gradient(45deg, #fff5ca, #fee5da);
	background: linear-gradient(45deg, var(--color-combo-1) 0, var(--color-peach) 100%)
}

.gh-foot-menu .nav a {
	display: inline-block;
	padding: 3px 0;
	-webkit-text-decoration: none;
	text-decoration: none
}

.gh-foot-meta {
	font-size: 1.5rem;
	margin: 2rem 0;
	opacity: .5;
	text-align: center
}

@media (max-width:700px) {
	.gh-foot-menu .nav {
		font-size: 1.6rem
	}
}

a.gh-powered,
a.gh-powered:hover {
	align-items: center;
	background: #fff;
	border: none;
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .08);
	color: #383838;
	cursor: pointer;
	display: inline-flex;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: -.3px;
	line-height: 12px;
	padding: 6px 9px 6px 6px;
	-webkit-text-decoration: none;
	text-decoration: none
}

a.gh-powered svg {
	height: 16px;
	margin: 0 6px 0 0;
	width: 16px
}

.gh-pagination .pagination {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4vmin;
	margin-top: 4vmin
}

.gh-post-comments {
	margin-bottom: 4vmin;
	margin-top: 8vmin
}

.gh-viewport,
html {
	background: #fff;
	background: var(--color-bg);
	color: #222;
	color: var(--color-text);
	display: flex;
	flex-direction: column;
	min-height: 100vh
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	letter-spacing: -.018em
}

.gh-content blockquote {
	border-left: 4px solid var(--color-highlight);
	box-sizing: border-box;
	font-size: 2.6rem;
	padding-bottom: 5px;
	padding-left: 1em;
	padding-top: 5px;
	width: 100%
}

.gh-content blockquote.kg-blockquote-alt {
	border-left: none;
	font-size: 3.2rem;
	line-height: 1.5;
	margin: 1.4em 0
}

.kg-header-card-subheader {
	font-size: 1.5em !important;
	line-height: 1.5em !important;
	opacity: .75
}

.kg-bookmark-title {
	font-size: 1.4em !important
}

.kg-bookmark-description {
	font-size: 1em !important
}

.kg-bookmark-container {
	border-radius: 17.33333333px !important;
	box-shadow: none
}

.kg-image-card {
	margin-top: 6vmin
}

.kg-btn {
	border-radius: 100px !important;
	height: 2.4em !important
}

.kg-btn,
.kg-toggle-card {
	font-size: 1.2em !important
}

.kg-toggle-card {
	border-radius: 17.33333333px !important
}

.kg-header-card {
	margin-top: 6vmin
}

.gh-content h1 {
	font-size: 5.8rem;
	line-height: 1.4
}

.gh-content h2 {
	font-size: 4.5rem;
	line-height: 1.4
}

.gh-content h3 {
	font-size: 3.2rem;
	line-height: 1.4
}

.gh-content h4 {
	font-size: 2.4rem;
	line-height: 1.4
}

.gh-content h5 {
	font-size: 2rem
}

.gh-content h5,
.gh-content h6 {
	line-height: 1.4;
	text-transform: uppercase
}

.gh-content h6 {
	font-size: 1.4rem
}

.kg-callout-text {
	font-size: 1.2em !important;
	line-height: 1.5em !important
}

.kg-callout-card {
	border-radius: 17.33333333px !important
}

.gh-main {
	flex: 1 0 auto
}

.gh-main,
.hero-content {
	display: flex;
	flex-direction: column
}

.hero-content {
	align-items: center;
	justify-content: center;
	padding-top: 3em
}

.hero-title {
	font-size: 4em;
	font-weight: 500;
	margin-bottom: .5em;
	max-width: 1000px;
	text-align: center
}

.navaccount {
	font-size: 1.3em !important;
	font-weight: 600 !important;
	padding: 13px 0
}

.gh-card-title {
	cursor: pointer;
	font-size: 1.8em;
	font-weight: 600 !important;
	font-weight: var(--font-semiBold) !important
}

.gh-card {
	margin-bottom: 3.2vh
}

.featured-gh-card-title {
	cursor: pointer;
	font-size: 2.8em;
	font-weight: 600 !important;
	font-weight: var(--font-semiBold) !important
}

.featured-gh-card-title:hover,
.gh-card-title:hover {
	-webkit-text-decoration: underline;
	text-decoration: underline;
	text-decoration-thickness: .1em;
	text-underline-offset: 3px
}

.gh-card-content p {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	font-size: 1.6rem;
	margin-top: 1.5vh;
	overflow-y: hidden
}

.subscribe-form {
	background-color: #f2f0f2;
	background-color: var(--color-grey);
	border-radius: 125px;
	display: flex;
	height: 3.2em;
	justify-content: space-between;
	margin-top: 1em
}

.mask {
	background: url(https://raw.githubusercontent.com/strnmns/nova-images/main/pink-purple.svg) 50%/140%auto no-repeat;
	-webkit-background-clip: text
}

.mask,
.mask:hover {
	color: transparent;
	transition: .5s ease
}

.mask:hover {
	background: url(https://raw.githubusercontent.com/strnmns/nova-images/main/pink-purple.svg) 50%/105%auto no-repeat;
	-webkit-background-clip: text
}

.subscribe-form input {
	align-items: center;
	background: #f2f0f2;
	background: var(--color-grey);
	border: none;
	border-radius: 125px;
	caret-color: transparent;
	cursor: pointer;
	display: flex;
	font-size: 135%;
	font-size: var(--type-x-large);
	padding: 0 20px;
	word-break: normal
}

.subscribe-form input:hover,
.subscribe-form:hover {
	background: #ececec
}

.subscribe-form input:focus-visible {
	outline-width: 0
}

.subscribe-form button {
	background: linear-gradient(90deg, #fee5da, #fff5ca);
	background: linear-gradient(90deg, var(--color-peach) 0, var(--color-combo-1) 100%);
	border: none;
	border-radius: 26px;
	font-family: Source Sans Pro, Helvetica Neue, helvetica, Apple Color Emoji, arial, sans-serif;
	font-family: var(--font-sans-serif);
	font-size: 135%;
	font-size: var(--type-x-large);
	font-weight: 600;
	font-weight: var(--font-semiBold);
	line-height: 4rem;
	line-height: var(--height);
	padding: 0 1.25em;
	transition: .4s ease
}

.subscribe-form button:hover {
	background: #fee5da 0, #fff5ca 100%);
	background: var(--color-peach) 0, var(--color-combo-1) 100%);
	transition: .4s ease
}

.gh-container {
	padding: 0 3vw
}

.gh-article {
	animation: slide-in-from-left .5s ease;
	padding: 8vmin 0
}

.gh-postfeed {
	grid-gap: 3vh 16px;
	display: grid;
	gap: 3vh 16px;
	grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
	padding: 1.4em 0
}

.gh-container {
	margin: 0 auto;
	max-width: 1300px;
	width: 100%
}

.gh-head-actions a:not(.gh-button) {
	align-items: center;
	display: inline-flex;
	margin: 0;
	padding: 10px
}

.gh-head-actions a svg {
	fill: currentcolor;
	height: 1.8rem
}

.gh-head-actions a:first-child svg {
	margin-left: 20px
}

.gh-head-actions a:last-child svg {
	height: 2rem
}

.featured-gh-card-link {
	align-items: center;
	background: #fff5ca url(https://raw.githubusercontent.com/strnmns/nova-images/main/bubble.svg) left -40em center/auto 175%no-repeat !important;
	background: var(--color-combo-1) url(https://raw.githubusercontent.com/strnmns/nova-images/main/bubble.svg) left -40em center /auto 175%no-repeat !important;
	border-radius: 26px;
	color: #0970b7 !important;
	display: flex;
	flex-wrap: wrap;
	left: -1em;
	max-width: 100%;
	padding: 3em;
	transform: rotate(-1deg)
}

.gh-card-image-missing {
	background: #ddd;
	background: var(--color-border);
	margin-bottom: 2vh;
	max-height: 700px
}

.gh-card-image-missing {
	aspect-ratio: 4/3;
	border-radius: 26px;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
	position: relative;
	transition: transform .3s ease;
	width: 100%
}

.featured-gh-card-image-missing {
	aspect-ratio: 16/9;
	border-radius: 26px;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
	position: relative;
	transition: transform .3s ease;
	width: 100%
	
	background: #222;
	background: var(--color-black);
	box-shadow: 2rem 2rem 6rem rgba(0, 0, 0, .1);
	box-shadow: 2rem 2rem 6rem var(--color-shodaow);
	flex: 1;
	margin: 0 6% 0 0;
    height: 340px;
	transform: rotate(-.5deg);
}

.letters {
	bottom: -.15em;
	color: hsla(0, 0%, 100%, .4);
	display: block;
	font-size: 28vh;
	font-weight: 800;
	font-weight: var(--font-heavy);
	letter-spacing: -.03em;
	line-height: 1em;
	position: absolute;
	text-overflow: "";
	white-space: nowrap
}

.featured-p {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
	display: -webkit-box;
	margin: 1.6vh 0 .5vh;
	overflow-y: hidden
}

.featured-p,
.featured-read-more {
	font-size: 115%;
	font-size: calc(var(--type-medium) + 15%)
}

.featured-read-more {
	margin-bottom: .8em
}

.featured-gh-card-content,
.featured-gh-card-image {
	flex: 1
}

img {
	border-radius: 26px
}

.featured-gh-card-image,
.gh-card-image {
	aspect-ratio: 4/3;
	transition: transform .3s ease
}

.featured-gh-card-image:hover,
.gh-card-image:hover {
	transform: translateY(-3px);
	transition: transform .3s ease
}

.featured-gh-card {
	display: flex;
	justify-content: center
}

.featured-gh-card-image {
	border-radius: 26px;
	box-shadow: 2rem 2rem 6rem rgba(0, 0, 0, .1);
	box-shadow: 2rem 2rem 6rem var(--color-shodaow);
	margin: 0 6% 0 0;
	max-height: 340px;
	-o-object-fit: cover;
	object-fit: cover;
	transform: rotate(-.5deg);
	width: 100%
}

.featured-text {
	margin-bottom: .8em
}

.featured-gh-card-meta {
	background-color: rgba(119, 184, 255, .25);
	border-radius: .3em;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.2em;
	padding: 1px 5px;
	text-transform: uppercase
}

.gh-card-link {
	display: flex;
	flex-direction: column
}

.gh-card-image {
	margin-bottom: 2vh;
	max-height: 700px;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%
}

.gh-card-meta {
	display: block;
	font-size: 1.4rem;
	letter-spacing: -.01em;
	line-height: 1.2em;
	margin: 0 0 1rem;
	opacity: .8;
	text-transform: uppercase
}

.gh-card-content {
	font-size: 1.6rem;
	max-width: 720px;
	padding-right: 2vw
}

.gh-post-authors {
	margin-top: 2em
}

.gh-card-content>strong {
	box-shadow: inset 0 -1px 0 0 currentColor;
	display: inline-block;
	font-weight: 500;
	opacity: .5;
	padding: 1px 0
}

.featured {
	padding: 3.5em 0 4em
}

.gh-page-head {
	margin: 0 auto;
	padding: 8vmin 0 4vmin;
	text-align: center
}

.gh-page-image {
	margin: 4vmin 0 0
}

.gh-page-head>p {
	font-size: 1.3em;
	line-height: 1.4em;
	margin: .3em auto 0;
	max-width: 720px;
	opacity: .5;
	padding: 0 6vmin
}

@media (max-width:700px) {
	.gh-page-head>p {
		font-size: 1.6rem
	}
}

.gh-header {
	padding: 0 0 8vmin;
	text-align: center
}

.gh-post-meta {
	display: block;
	font-size: 1.4rem;
	letter-spacing: .5px;
	margin: 0 0 1rem;
	opacity: .8;
	text-transform: uppercase
}

.gh-excerpt {
	margin: 1rem 0 0
}

.gh-feature-image {
	grid-column: wide-start/wide-end;
	margin: 8vmin 0 0;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%
}

.gh-feature-image img {
	margin-left: auto;
	margin-right: auto
}

.gh-post-footer {
	margin: 2rem 0
}

.gh-author-image {
	border-radius: 100%;
	height: 12vmin;
	margin: 0 auto 1.5em;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
	width: 12vmin
}

.meta {
	align-items: center;
	display: flex;
	gap: 1em;
	justify-content: center;
	margin-left: 16px;
	padding-top: 2em
}

.more-info {
	text-align: left
}

.meta-no-author {
	align-items: center;
	display: flex;
	gap: 1em;
	justify-content: center;
	padding-top: 2em
}

.app {
	display: flex
}

.more-info>a {
	-webkit-text-decoration: none;
	text-decoration: none
}

.gh-author-image-post {
	box-shadow: 0 0 0 2px #fff;
	box-shadow: 0 0 0 2px var(--color-bg);
	height: 3em;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	transition: transform .3s ease;
	width: 3em
}

.gh-author-image-post:hover,
.gh-author-image-post:hover:first-child {
	transform: translateY(-3px);
	transition: transform .3s ease
}

.post-item-author {
	display: inline;
	margin-left: -14px
}

.gh-author-meta {
	font-size: 1.2em;
	margin: 2vmin 0 0
}

.gh-author-links {
	align-items: center;
	display: flex;
	justify-content: center
}

.gh-author-links a {
	align-items: center;
	display: inline-flex;
	margin: 0 .75vmin;
	position: relative
}

.gh-author-links a+a:before {
	background: rgba(0, 0, 0, .3);
	content: "";
	display: block;
	height: 1em;
	margin: 0 1.25vmin 0 0;
	transform: rotate(20deg);
	width: 1px
}

@keyframes slide-in-from-left {
	0% {
		opacity: 0
	}

	40% {
		opacity: 0;
		transform: translateX(320px)
	}

	80% {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes slideTop {
	0% {
		transform: translateY(40px)
	}

	to {
		transform: translateY(0)
	}
}

@media (max-width:1100px) {
	.featured-gh-card-link {
		background: #fff5ca url(https://raw.githubusercontent.com/strnmns/nova-images/main/bubble.svg) right 50vw center/auto 175%no-repeat !important;
		background: var(--color-combo-1) url(https://raw.githubusercontent.com/strnmns/nova-images/main/bubble.svg) right 50vw center /auto 175%no-repeat !important
	}
	
	.mask {
		background-image: linear-gradient(90deg, rgba(185,98,194,1) 0%, rgba(188,101,152,1) 100%) !important;
		/* Set the background size and repeat properties. */
		background-size: 100% !important;
		background-repeat: repeat !important;
		
		/* Use the text as a mask for the background. */
		/* This will show the gradient as a text color rather than element bg. */
		-webkit-background-clip: text !important;
		-webkit-text-fill-color: transparent !important;
		-moz-background-clip: text !important;
		-moz-text-fill-color: transparent !important;
	}
}

@media (max-width:900px) {
	.gh-head-actions-list {
		display: block !important
	}
}

@media (max-width:700px) {
	.gh-author-meta {
		font-size: 1.6rem
	}
	
	
	
	.featured-gh-card-image-missing {
		max-height: 340px;
		height: revert;
	}

	.featured-gh-card-content,
	.featured-gh-card-image {
		flex: 1 48%
	}

	.gh-container {
		padding: 0 5vw
	}

	.meta {
		scale: 85%
	}

	.featured-gh-card-link {
		align-items: center;
		background: #fff5ca !important;
		background: var(--color-combo-1) !important;
		border-radius: 26px;
		color: #0970b7 url(#) !important;
		display: block;
		flex-wrap: wrap;
		justify-content: center;
		left: 0;
		max-width: 1000px;
		padding: 1.6em;
		transform: rotate(0deg)
	}

	.featured-p {
		font-size: 1.7rem
	}

	.hero-content {
		align-items: flex-start;
		padding-left: 3vw;
		padding-right: 5vw;
		padding-top: 2vh
	}

	.featured-gh-card-title {
		font-size: 3.5rem
	}

	.cta-meta {
		display: none
	}

	.subscribe-form {
		height: 2.8em;
		margin-top: 1vh
	}

	.subscribe-form input {
		font-size: 18px;
		max-width: 10em;
		padding-left: 16px;
		padding-right: 0
	}

	.mask {
		font-size: 20px
	}

	.featured-gh-card-content {
		margin-top: 6vmin
	}

	.featured {
		padding: 2.8vh 0 1.8vh
	}

	.gh-content blockquote {
		font-size: 2.2rem
	}

	.hero-title {
		font-size: 3.8rem;
		text-align: left
	}

	.featured-gh-card-image {
		transform: rotate(0deg)
	}
}

/*# sourceMappingURL=index.css.map */