@charset "UTF-8";
:root {
	--background-color: #282828;
	--title-color: #ffffff;
	--text-color: #696969;
	--orange-hive: #f7981d;
	--blue-hive: #0087bd;
	--font-family: 'IBM Plex Mono', monospace;
}

body {
	background: var(--background-color);
	color: var(--text-color);
	font-family: var(--font-family);
}

a {
	color: var(--orange-hive);
	text-decoration: none;
}
a:hover {
	color: var(--blue-hive);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--title-color);
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 75%;
	opacity: 0.75;
	background-color: rgba(0, 0, 0, 0.5);
	margin-bottom: 0.5em;
}

img {
	width: 100%;
	height: auto;
	max-width: 480px;
	max-height: 100%;
	overflow: hidden;
	border-radius: 4px;
}

ul {
	list-style: none;
}

ul li::before {
	content: '•';
	color: var(--orange-hive);
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.columns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}
.columns .column + .column {
	margin-top: 24px;
}
@media screen and (max-width: 767px) {
	.columns .image-column {
		order: -1;
	}
}
@media screen and (min-width: 768px) {
	.columns {
		flex-direction: row;
	}
	.columns .column {
		margin-top: 0px !important;
	}
	.columns .column:first-child:nth-last-child(n + 2),
	.columns .column:first-child:nth-last-child(n + 2) ~ .column {
		max-width: 45%;
	}
}

.is-flex-center {
	justify-content: center;
}

.is-text-center {
	text-align: center;
}

main {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px 24px 24px;
}
main .columns {
	padding-top: 24px;
}
main .columns + .columns {
	margin-top: 24px;
	border-top: 1px solid;
}

.logo {
	position: sticky;
	top: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background-color: var(--background-color);
	z-index: 100;
	border-bottom-right-radius: 4px;
	box-shadow: 0 0 4px 0 var(--background-color);
	padding: 1em 1em 1em 0;
}
.logo .title {
	font-size: 2em;
	font-weight: bold;
	display: flex;
	align-items: center;
	color: var(--orange-hive) !important;
}
.logo .title svg {
	width: 1em;
	height: auto;
	color: currentcolor;
	margin-right: 0.5em;
}
.logo .subtitle {
	display: block;
	margin-top: 0.25em;
	margin-left: 3em;
}

.logo-hive {
	max-width: 192px;
	height: auto;
}

@media print {
	:root {
		--title-color: #000;
		--text-color: #000;
		--font-family: arial;
	}
	.logo {
		position: static;
		box-shadow: none !important;
	}
	.columns {
		page-break-after: always;
		border-top: none !important;
	}
	a {
		font-weight: bold;
		color: var(--orange-hive) !important;
	}
}
