header {
	width: 100%;
	min-width: var(--main-min-width);
	max-width: var(--main-max-width);
	display: flex;
	flex-direction: column;
}

.menu-button {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	padding: 18px 24px;
}

@media only screen and (max-width: 869px) {
	.menu-button {
		padding: 24px 24px;
	}
}

.menu-button__hamburger {
	cursor: pointer;
	color: var(--main-color-100);
}

.menu-button__x {
	display: none;
	cursor: pointer;
	color: var(--main-color-100);
	z-index: 195;
}

.menu-button__hamburger:hover,
.menu-button__hamburger:active,
.menu-button__x:hover,
.menu-button__x:active {
	cursor: pointer;
	color: var(--main-color);
}

.main-menu--hidden {
	display: none;
}

.header_top {
	width: 100%;
	min-width: var(--main-min-width);
	max-width: var(--main-max-width);
	min-height: 65px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 16px;
	margin-bottom: 8px;
	padding: 0;
	box-sizing: border-box;
	font-weight: bold;
	align-items: flex-start;
}

.hamburger {
	flex: 1;
	display: inline-block;
	text-align: right;
	padding-top: 17px;
	padding-right: 5px;
}

.hamburger svg {
	display: inline-block;
	cursor: pointer;
	width: 30px;
	height: 30px;
	padding: 5px;
	color: var(--main-color);
	opacity: 0.9;
}

.hamburger svg:hover,
.hamburger svg:active,
.hamburger svg:focus {
	-webkit-tap-highlight-color: transparent;
	opacity: 1;
}

.header_back {
	display: flex;
	flex: 1;
	white-space: nowrap;
}

.header_back a {
	padding-top: 5px;
	padding-bottom: 5px;
	opacity: 0.9;
}

a.header_back_arrow {
	color: var(--main-color-100);
	text-decoration: none;
	font-weight: bold;
	padding-left: 8px;
	opacity: 0.8;
}

a.header_back_arrow:hover,
a.header_back_arrow:focus,
a.header_back_arrow:active {
	-webkit-tap-highlight-color: transparent;
	opacity: 1;
}

.back_arrow_icon {
	height: 50px;
	width: 50px;
	top: 2px;
	position: relative;
}

a.header_text {
	padding-left: 5px;
	flex: 1;
	font-size: 1em;
	line-height: 3.4;
	color: var(--main-color);
	text-decoration: none;
	opacity: 0.75;
}

a.header_text:hover,
a.header_text:focus,
a.header_text:active {
	-webkit-tap-highlight-color: transparent;
	opacity: 1;
}

.hero {
	width: 100%;
	min-height: 30vh;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	font-weight: bold;
	flex-direction: column;
	align-items: center;
}

.hero_profile_image {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding-bottom: 20px;
}

.hero_profile_image * {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	border-radius: 50px;
	width: 250px;
	height: 100px;
	object-fit: cover;
	background: #968172;
	color: #f1edeb;
}

.hero_header_text {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding-bottom: 25px;
}

.hero_header_text h1 {
	padding: 0;
	margin: 0;
	text-align: left;
	text-decoration: none;
	font-size: 1.4em;
	font-weight: 700;
	color: var(--main-color);
}

.hero_header_text span {
	color: var(--main-color-200);
	font-weight: 400;
	font-size: 0.9em;
}

@media only screen and (max-width: 869px) {
	.header_top {
		margin-top: 0;
		margin-bottom: 0;
	}
	.header_top .hamburger {
		padding: 15px;
	}
	header.header_top_bar {
		background: var(--post-background);
		margin-top: 0;
		border-radius: 0;
		padding: 0;
		position: relative;
		top: 0;
	}
	a.header_text {
		line-height: 4;
	}
	a.header_back_arrow {
		margin-top: 5px;
	}
}

.main-menu {
	position: absolute;
	top: 50px;
	width: 100%;
	min-width: var(--main-min-width);
	max-width: var(--main-max-width);
	padding: 0 16px 0 16px;
	box-sizing: border-box;
	z-index: 200;
}

.main-menu-bg {
	position: absolute;
	width: 100%;
	height: 100vh;
	background: var(--post-background);
	display: none;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	z-index: 190;
}

.main-menu-list {
	padding: 0;
}

.main-menu-entry {
	margin: 0;
	list-style-type: none;
	display: block;
}

.main-menu-entry__link {
	text-decoration: none;
	color: var(--main-color-100);
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 4px 0 4px 0;
	padding: 8px 8px 8px 8px;
	border-radius: 8px;
	box-sizing: border-box;
	user-select: none;
}

.main-menu-entry__link:hover,
.main-menu-entry__link:active {
	background: var(--main-background-weak);
}

.main-menu-entry__category-separator {
	display: block;
	color: var(--main-color-300);
	line-height: 1.4;
	margin: 4px 0 4px 0;
	padding: 8px 8px 8px 8px;
}

.main-menu-entry__category-separator::before {
	content: '▼ ';
  }
