/*:root{
	--color-primary:#AE445A;
	--color-onprimary:#FAFB61;
	--color-body:#EDE7D6;
	--color-bg:#BCB6B6;
	--color-onbody:#451952;
	--width-content:1300px;
	--font-body: "Roboto", sans-serif;
	--font-h: "Noto Serif", serif;
}*/
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	background: var(--color-body);
	color: var(--color-onbody);
	font-size: 14px;
	font-family: var(--font-body);
}
h1 {
	font-size: 2.2em;
    margin: 0 0 8px;
    font-family: var(--font-h);
}
h2 {
	font-size: 1.5em;
    margin: 0 0 8px;
    font-family: var(--font-h);
}
h2 {
	font-size: 1.3em;
    margin: 0 0 8px;
    font-family: var(--font-h);
}
.cover {

}
.cover-image {
	width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
}
.container {
	max-width: var(--width-content);
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
}
.row {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	align-items: flex-start;
}
.col-1,.col-3,.col-4,.col-6,.col-8 {
	box-sizing: border-box;
	padding: 0 8px;
}
.col-1 {
	flex: 0 0 100%;
}
.col-3 {
	flex: 0 0 25%;
}
.col-4 {
	flex: 0 0 33.333%;
}
.col-6 {
	flex: 0 0 50%;
}
.col-8 {
	flex: 0 0 66.666%;
}
#top {
	background: var(--color-primary);
	color: var(--color-onprimary);
	margin: 0 0 16px;
}
#top .container {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px;
}
#top .logo-wrap {
	display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: 700;
}
#top .menu-wrap ul {
	margin: 0;
    padding: 0;
    list-style: none;
}
#top .menu-wrap ul li {
	display: inline-block;
}
#top .menu-wrap ul li {
}
#top a {
	color: var(--color-onprimary);
	text-decoration: none;
}
#top .menu-wrap a {
	display: inline-block;
	padding: 5px 8px;
}
#top .menu-wrap a:hover {
	background: rgba(128,128,128,0.4);
}
#top .mob-menu {
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: none;
	font-size: 32px;
    text-align: center;
    line-height: 44px;
}
#top .menu-wrap .home {
	display: none;
}
#featured {
}
.featured-teaser {
	display: flex;
	background-size: cover;
	background-position: 50% 50%;
	position: relative;
	transition: all 200ms ease;
	align-items: flex-end;
	text-decoration: none;
}
.featured-teaser:hover {
	transform: scale(1.02);
}
#featured .featured-teaser {
	min-height: 212px;
	margin: 0 0 16px;
}
#featured .big .featured-teaser {
	min-height: 440px;
}
.bg{
	width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--color-onbody) 10%, transparent);
    position: absolute;
    top:0;
    left: 0;
}
.label {
	position: relative;
	padding: 16px;
	width: 100%;
	box-sizing: border-box;
}
.cat {
	padding: 3px 5px;
	background: var(--color-primary);
	display: inline-block;
	color: var(--color-onprimary);
	margin: 0 0 8px;
	font-size: 14px;
    font-weight: 400;
}
.label-text {
	font-weight: 700;
    line-height: 1.2em;
    font-size: 18px;
    color: var(--color-body);
}
.big .label-text {
	font-size: 1.6em;
}
#main,
#sidebar {
	margin: 0 0 4px;
	overflow: hidden;
}
.h3 {
	font-weight: 700;
	line-height: 1em;
	font-size: 19px;
	padding: 8px 0;
	margin: 0 0 8px;
	border-bottom: 1px solid #888;
	position: relative;
	width: 100%;
	font-family: var(--font-h);
}
.h3:after {
	content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    bottom: -2px;
    left: 0;
}
.aside-teaser {
	display: flex;
	gap: 10px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	margin: 0 0 12px;
}
.aside-teaser img {
	flex: 0 0 40%;
	max-height: 100px;
	width: 40%;
	object-fit: cover;
	height: 9vw;
}
.aside-teaser .text {
	color: var(--color-onbody);
}
.aside-teaser:hover .text {
	color: var(--color-primary);
}
.big-teaser {
	text-decoration: none;
	margin: 0 0 16px;
	transition: all 200ms ease;
}
.big-teaser:hover {
    transform: scale(1.02);
}
.big-teaser .cover {
	max-height: 280px;
    position: relative;
    margin: 0 0 8px;
    height: 22vw;
}
.big-teaser .cat {
	position: absolute;
	bottom: 8px;
	left: 8px;
	margin: 0;
}
.big-teaser .text {
	font-size: 1.2em;
	font-weight: 700;
	color: var(--color-onbody);
}
.big-teaser:hover .text {
	color: var(--color-primary);
}
.navigation {
	margin: 0;
}
.navigation-center {
	list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.navigation-center li {
	display: inline-block;
	margin: 3px;
}
.navigation-center li a {
	display: inline-block;
	padding: 3px 5px;
	border: 1px solid var(--color-onbody);
	text-decoration: none;
	color: var(--color-onbody);
}
.navigation-center li a:hover {
    background: var(--color-primary);
    color: var(--color-onprimary);
}
.navigation-center li span {
	padding: 3px 5px;
	border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-onprimary);
}
#footer {
	background: var(--color-bg);
	padding: 20px 0;
}
#footer a {
	color: var(--color-primary);
}
#footer a:hover {
	text-decoration: none;
}
#footer .row {
   align-items: flex-end;
}
#footer-tech {
	text-align: right;
}
#featured-category {
	margin-bottom: 16px;
}
#featured-category  .row {
	align-items: stretch;
}
#featured-category a {
	display: flex;
	height: 16vw;
	background-size: cover;
	background-position: 50% 50%;
	position: relative;
	transition: all 200ms ease;
	text-decoration: none;
	align-items: flex-end;
	max-height: 212px;
}
#related a {
	display: flex;
	height: 16vw;
	background-size: cover;
	background-position: 50% 50%;
	position: relative;
	transition: all 200ms ease;
	text-decoration: none;
	align-items: flex-end;
	max-height: 212px;
}
.category-meta,
.post-meta {
	flex: 0 0 100%;
}
.post-meta {
	margin: 0 0 8px;
}
.bradcrumbs {
	font-size: 12px;
    margin: 0 0 8px;
}
.bradcrumbs a {
	color: var(--color-primary);
}
.post-meta-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.author-small-card {
	display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.author-small-card img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
.post-content img {
	max-width: 100%;
    height: auto;
    width: 100%;
}
#related {
	margin-top: 8px;
}
#related .col-4 {
	padding: 0 4px;
}
#related .featured-teaser {
	margin: 0 0 8px;
}
.field-row {
    margin: 0 0 10px;
}
#post_body {
	width: 100%;
	margin: 5px 0 0;
}
#soc-1 .ya-share2__icon {
	width: 24px;
	height: 24px;
	background-size: 24px 24px;
}
.overlay-box {
    position: fixed;
    z-index: 998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background-color: var(--color-onbody);
    cursor: pointer;
}
.hidden {
    display: none;
}
.side-panel {
    width: 280px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--color-body);
    padding: 20px;
    z-index: 9999;
    position: fixed;
    left: -320px;
    top: 0;
    transition: left .4s;
}
.side-panel.active {
    left: 0;
}
.btn-close {
    cursor: pointer;
    display: block;
    left: 280px;
    top: -40px;
    position: fixed;
    z-index: 9999;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    background-color: var(--color-primary);
    color: var(--color-onprimary);
    transition: top .4s;
}
.btn-close.active {
    top: 0px;
}
#side-panel ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#side-panel a {
	display: block;
    color: var(--color-primary);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px dashed var(--color-onbody);
    transition: all 200ms ease;
}
#side-panel a:hover {
	padding-left: 10px;
}
.author-card {
	position: relative;
	border: 1px solid var(--color-onbody);
	padding: 5px;
	margin: 0 0 10px;
	margin: 0 0 8px;
}
.author-card .photo {
	width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
}
.author-card .name{
	height: 48px;
    padding: 0 0 0 58px;
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin: 0 0 8px;
}
.author-card .bio {
    margin: 0 0 8px;
}
.author-card .socials .socials-icon {
	text-decoration: none;
	width: 24px;
	height: 24px;
	border-radius: 3px;
	font-size: 14px;
    line-height: 24px !important;
}
.afterHeader  {
	margin-top: -8px;
    margin-bottom: 10px;
}
@media (max-width: 1000px) {
	.label {
		padding: 8px;
	}
	#related .col-4 {
		flex: 0 0 50%;
	}
	#featured .col-3.last {
		display: none;
	}
	#featured .col-3 {
		flex: 0 0 33.333%;
		overflow: hidden;
	}
	#featured .col-6 {
		flex: 0 0 66.666%;
		overflow: hidden;
	}
	#featured .featured-teaser {
		min-height: 162px;
	}
	#featured .big .featured-teaser {
		min-height: 340px;
	}
	#featured .text {
		font-size: 1.2em;
	}
	#top .container {
		justify-content: space-between;
	}
	#top .mob-menu {
		display: block;
	}
	#top .menu-wrap {
		display: none;
	}
	#featured-category .featured-teaser {
		min-height: 16vw;
		height: 100%;
	}
}
@media (max-width: 800px) {
	#main {
		flex: 0 0 100%;
	}
	#main .big-teaser {
		flex: 0 0 50%;
	}
	.big-teaser .cover {
        height: 28vw;
    }
	#sidebar {
		flex: 0 0 100%;
		display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 0 0 20px;
	}
	#sidebar .h3 {
		font-size: 17px;
	}
	.aside-teaser {
		margin: 0;
    	flex: 0 0 calc(50% - 6px);
	}
	.aside-teaser img {
		height: 13vw;
	}
	#related .col-4 {
		flex: 0 0 33.333%;
	}
	#related a {
		height: 25vw;
		min-height: 140px;
	}
	#featured-category {
	    margin-bottom: 8px;
	}
	#featured-category .col-3 {
		flex: 0 0 50%;
		margin: 0 0 8px;
		padding: 0 4px;
	}
	#featured-category .featured-teaser {
        min-height: 24vw;
    }
}
@media (max-width: 600px) {
	#top .logo-wrap {
		font-size: 1.3em;
	}
	.logo-wrap img {
		width: 36px;
		height: 36px;
	}
	#top .mob-menu {
		width: 36px;
		height: 36px;
		line-height: 44px;
		font-size: 28px;
	}
	#related .col-4 {
		flex: 0 0 50%;
	}
	#related a {
        height: 32vw;
    }
	#featured .col-6 {
		flex: 0 0 100%;
	}
	#featured .big .featured-teaser {
		min-height: 50vw;
	}
	#featured .col-3 {
		flex: 0 0 100%;
    	display: flex;
    	gap: 8px;
	}
	#featured .col-3 .featured-teaser {
		flex: 0 0 calc(50% - 4px);
		min-height: 25vw;
		margin: 0 0 8px;
	}
	.aside-teaser {
    	flex: 0 0 100%;
	}
	.aside-teaser img {
        height: 16vw;
        flex: 0 0 30%;
        overflow: hidden;
    }
    #footer .row {
    	gap: 12px;
    }
    #footer .col-6 {
    	order: 2;
    	flex: 0 0 100%;
    	text-align: center;
    }
    #footer #footer-tech {
    	order: 1;
    }
    .label-text {
    	font-size: 16px;
    }
    .big .label-text {
    	font-size: 1.4em;
    }
}