/*
	Theme Name: WBRU Custom Theme
	Theme URI: https://wbru.com
	Description: Custom built Wordpress theme for WBRU.
	Version: 1.4.3
	Author: Henry Holtgeerts
	Author URI: http://henryholtgeerts.com
	Tags: WBRU, Gutenberg, Custom

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

html {
	font-size: 16px;
	line-height: 1.2;
}

body {
	font:300 12px/1.4 sans-serif;
	font-weight: normal;
	color: var(--post-body-color);
	font-size: 1.125rem;
	line-height: 1.8;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	height: auto;
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:var(--accent-color);
	text-decoration:none;
	transition: color 0.2s ease;
	cursor: pointer;
}
a:hover {
	color: var(--accent-color);
	transition: color 0.2s ease;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

article {
	display: flex;
	flex-direction: column;
	align-items: normal;
}

.wbru-wrapper {
	display: flex;
	align-items: flex-start;
	position: relative;
}

.wbru-container {
	flex: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/*------------------------------------*\
    WIDGETS
\*------------------------------------*/

.widget_custom_html, .custom-html-widget {
	height: 100%;
}

.wbru-post__sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wbru-post__footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/

/* Header styles (not collapsed) */

.wbru-header {
	background: var(--header-bg-color-primary);
	position: relative;
	width: 100%;
	transition: width 0.2s ease;
	display: grid;
	padding: 0;
	grid-template-rows: 110px 60px;
	grid-template-columns: 250px auto 250px;
	grid-template-areas: 'left center right'
						 'nav nav nav';
}

.wbru-header__left, .wbru-header__center, .wbru-header__right {
	display: flex;
	align-items: center;
}

.wbru-header__left {
	grid-area: left;
	padding: 0 0 0 46px;
}

.wbru-header__center {
	grid-area: center;
}

.wbru-header__right {
	grid-area: right;
	justify-content: flex-end;
	padding: 0 46px 0 0;
}

#wbruMobileMenu {
	display: none;
}

#wbruMobilePlayer {
	display: block;
}

.wbru-header__nav {
	grid-area: nav;
	background: var(--header-bg-color-secondary);
}

/* Header social styles */

.wbru-header__social-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.wbru-header__social-menu--mobile {
	display: none;
}

a.wbru-header__social-item {
	display: inline-block;
	margin: 1rem;
	font-size: 1.5rem;
	color: var(--header-social-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

a:visited.wbru-header__social-item {
	color: var(--header-social-color);
}

a:hover.wbru-header__social-item {
	color: var(--accent-color);
}

a.wbru-header__social-item img {
	height: auto;
	width: 30px;
}

/* Header Branding styles */

.wbru-header__branding {
	height: 76%;
	width: 100%;
	position: relative;
}

.wbru-header__branding img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

/* Header Button styles */

.wbru-header__button {
	display: inline-block;
    border: none;
    padding: 1rem;
    margin: 0;
    text-decoration: none;
    background: none;
    font-family: sans-serif;
	font-size: 1rem;
	color: var(--header-social-color);
}

/* Header Nav styles */

.wbru-header__nav-menu {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wbru-header__nav-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wbru-header__nav-menu li {
	display: inline-block;
	padding: 0 16px;
	display: flex;
	align-items: center;
}

.wbru-header__nav-menu li a {
	font-size: 1rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	color: var(--header-text-color);
}

.wbru-header__nav-menu li a:hover {
	color: var(--accent-color);
}

/* Collapsed Header styles */

.wbru-header--collapsed {
	position: fixed;
	background: var(--header-bg-color-secondary);
	z-index: 899;
	grid-template-rows: 60px;
	grid-template-columns: 150px auto 150px;
	grid-template-areas: 'center nav right';
}

.wbru-header--collapsed .wbru-header__left {
	display: none;
}

.wbru-header--collapsed .wbru-header__branding {
	height: 68%;
	padding-left: 12px;
}

.wbru-header--collapsed .wbru-header__branding img {
	object-position: left;
}

.wbru-header--collapsed .wbru-header__center {
	animation-name: fadeIn;
	animation-duration: 0.4s;
	padding: 0 0 0 46px;
}

.wbru-header--collapsed .wbru-header__right {
	animation-name: fadeIn;
	animation-duration: 0.4s;
	padding: 0 46px 0 0;
}

@keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(14px);
	}
  
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.wbru-main {
	flex: 1;
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	padding-bottom: 92px;
	transition: width 0.2s ease;
}

body.page, body.error404 {
	background: var(--page-bg-color);
	color: var(--page-body-color);
}

.page h1, .page h2, .page h3, .page h4, .page h5, .page h6 {
	color: var(--page-heading-color);
}

.page p {
	color: var(--page-body-color);
	width: 100%;
}

.page .light-bg {
	background: var(--page-light-bg-bg-color);
	color: var(--page-light-bg-body-color);
}

.page .light-bg h1, .page .light-bg h2, .page .light-bg h3, .page .light-bg h4, .page .light-bg h5, .page .light-bg h6 {
	color: var(--page-light-bg-heading-color);
}

.page .light-bg p {
	color: var(--page-light-bg-body-color);
	width: 100%;
}

.wbru-section {
	width: 100%;
}

.wbru-section--page-content {
	max-width: 1240px;
	padding: 0 44px;
	margin: 46px auto;
}

.wbru-parallax-window {
	background: transparent;
	min-height: 60vh;
}


/*------------------------------------*\
    POSTS
\*------------------------------------*/


/* POST TYPOGRAPHY */

body.single {
	background: var(--post-bg-color);
}

.post h1, .post h2, .post h3, .post h4, .post h5, .post h6 {
	color: var(--post-heading-color);
}

.post p {
	color: var(--post-body-color);
}

/* POST HEADER STYLES */

.wbru-section--post-header {
	height: auto;
	min-height: 60vh;
	position: relative;
}

.wbru-section--post-content {
	width: 100%;
	max-width: 1150px;
	padding: 0 22px 22px 22px;
	position: relative;
	margin: 22px auto;
}

.wbru-post-header__container {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.single-wbru-video .wbru-post-header__container {
	flex-direction: column;
	align-items: flex-start;
}

.wbru-post-header__media {
	margin-right: 46px;
}

.single-wbru-video .wbru-post-header__media {
	margin-right: 0;
	width: 100%;
	position: relative;
	padding-top: 56.2%;
}

.single-wbru-video .wbru-post-header__media iframe {
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;

}

.wbru-post-header__media--podcast img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wbru-post-header__title {
	margin-bottom: 1rem;
}

.wbru-post-header__meta {
	color: #fff;
}

.wbru-post-header__podcast-links {
	display: flex;
	align-items: center;
}

.wbru-post-header__podcast-link {
	background: #fff;
	border-width: 1px;
	border-color: #fff;
	border-style: solid;
	border-radius: 18px;
	padding: 6px 16px;
	margin-right: 16px;
	font-family: "Roboto", sans-serif;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.wbru-post-header__podcast-link:hover {
	background: rgba(255, 255, 255, 0);
	transition: all 0.3s ease;
}

a.wbru-post-header__podcast-link, a:visited.wbru-post-header__podcast-link {
	color: var(--post-body-color);
}

a:hover.wbru-post-header__podcast-link {
	color: #fff;
}

.wbru-post-header__underlay {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: var(--page-bg-color);
}

.wbru-post-header__overlay {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 299;
	height: auto;
	padding: 46px 0;
	background: rgb(38,38,38);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.wbru-post-header__underlay img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.wbru-video .wbru-post-header__underlay img, .wbru-podcast .wbru-post-header__underlay img {
	opacity: 0.4;
}

.wbru-post-header__category {
	position: absolute;
	bottom: 16px;
	right: 22px;
	z-index: 499;
}

.wbru-post-header__category a, .wbru-post-header__category a:visited {
	color: #fff!important;
	opacity: 0.8!important;
	font-size: 2rem;
	font-weight: bold;
	text-transform: uppercase;
}

/* POST TOPLINE STYLES */

.wbru-post__topline {
	display: flex;
	align-items: center;
	margin-bottom: 22px;
	width: 100%;
}

.wbru-post__headline {
	flex: 1;
}

.wbru-post__sharing {
	width: 240px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* POST CONTENT STYLES */

.wbru-post__content {
	width: 100%;
	display: flex;
	align-items: flex-start;
	/* display: grid;
	grid-template-columns: 110px auto 160px; */
}

.wbru-post__meta {
	width: auto;
	margin-right: 22px;
	display: flex;
	align-items: center;
	flex-direction: column;
	align-items: center;
}

.wbru-post__body {
	flex: 1;
}

.wbru-post__sidebar {
	display: flex;
	flex-direction: column;
	width: 260px;
	margin-left: 22px;
}

.wbru-post__sidebar .post-date {
	display: block;
	margin-bottom: 30px;
}

.wbru-post__body iframe {
	width: 100%!important;
}


.wbru-post__contributor {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 12px;
}

.wbru-post__contributor-photo {
	width: 54px;
	height: 54px;
	background: var(--accent-color);
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #fff;
}

a.wbru-post__contributor-name {
	font-size: 1.2rem;
	color: var(--post-body-color);
}

a:visited.wbru-post__contributor-name {
	color: var(--post-body-color);
}

.wbru-post__artists {
	margin: 12px 0;
}

.wbru-post__artist {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 12px;
}

.wbru-post__artist-photo {
	width: 54px;
	height: 54px;
	background: var(--accent-color);
	border-radius: 0px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #fff;
}

a.wbru-post__artist-name {
	font-size: 0.8rem;
	font-weight: bold;
	margin-top: 4px;
	text-transform: uppercase;
	color: var(--post-body-color);
}

a:visited.wbru-post__artist-name {
	color: var(--post-body-color);
}

.wbru-post__date p {
	margin: 12px 0;
}

.wbru-post__tags {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.wbru-post__tag {
	padding: 0;
	font-size: 1.2rem;
}

a.wbru-post__tag-name {
	text-transform: lowercase;
	font-size: 0.8rem;
	font-weight: bold;
	color: var(--post-body-color);
}

a:visited.wbru-post__tag-name {
	color: var(--post-body-color);
}

.wbru-post__categories {
	flex-direction: column;
	align-items: flex-end;
}

.wbru-post__category {
	padding: 0;
}

a.wbru-post__category-name {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.8rem;
}

hr {
	width: 40%;
	margin: 3rem auto 4rem auto;
}

/* POST FOOTER STYLES */

.wbru-post__footer {
	width: 100%;
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/

.wbru-footer-banner {
	background: var(--footer-banner-bg-color);
	padding: 46px 0 46px 0;
	transition: width 0.2s ease;
}

.wbru-section--footer-banner {
	position: relative;
	max-width: 1100px;
	padding: 0 46px;
	min-height: 36vh;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wbru-footer-social {
	background: var(--footer-bg-color);
	padding: 46px 0 46px 0;
	transition: width 0.2s ease;
}

.wbru-section--footer-social {
	position: relative;
	max-width: 900px;
	padding: 0 46px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

a.wbru-footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	font-size: 2rem;
	margin: 0 23px 46px 23px;
	border-radius: 50%;
	border: 1px solid var(--footer-link-color);
	color: var(--footer-link-color);
}

a.wbru-footer-social__link img {
	width: 36px;
	height: auto;
}

a:visited.wbru-footer-social__link {
	color: var(--footer-link-color);
}

a:hover.wbru-footer-social__link {
	color: var(--accent-color);
}

.wbru-footer {
	background: var(--footer-bg-color);
	padding: 46px 0 88px 0;
	color: var(--footer-text-color);
	transition: width 0.2s ease;
}

.wbru-footer h1, .wbru-footer h2, .wbru-footer h3, .wbru-footer h4, .wbru-footer h5 {
	color: var(--footer-heading-color);
	padding: 0;
	margin: 0;
	text-transform: uppercase;
} 

.wbru-footer a {
	color: var(--footer-link-color);
}

.wbru-footer a:visited {
	color: var(--footer-link-color);
}

.wbru-footer .widget_nav_menu h5 {
	margin-bottom: 1rem;
}

.wbru-footer .widget_nav_menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wbru-footer .widget_nav_menu li {
	list-style: none;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.8;
}

.wbru-section--footer-content {
	max-width: 1100px;
	padding: 0 44px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
}

/*------------------------------------*\
    PODCASTS
\*------------------------------------*/

/*------------------------------------*\
    VIDEOS
\*------------------------------------*/

/*------------------------------------*\
    ARCHIVES
\*------------------------------------*/

.wbru-section--archive-header {
	height: auto;
	margin: 46px auto;
	max-width: 1240px;
	padding: 0 44px;
	position: relative;
}

.wbru-archive-header__underlay {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}

.wbru-archive-header__overlay {
	position: relative;
	display: flex;
	align-items: normal;
	justify-content: center;
	flex-direction: column;
	z-index: 299;
	height: 100%;
	padding: 46px 0;
	background: rgb(38,38,38);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.wbru-archive-header__name {
	margin-bottom: 0;
}

.wbru-archive-header__subtitle {
	margin: 0;
}

.wbru-archive-header__desc {
	margin: 0;
}

.wbru-archive-header__art {
	width: 300px;
	height: 300px;
}

.wbru-archive-header__art img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.wbru-archive-header__underlay {
	overflow: hidden;
}

.wbru-archive-header__cover{
	width: 100%;
	height: 100%;
}

.wbru-archive-header__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.archive {
	background: var(--page-bg-color);
}

.archive h1, .archive h2, .archive h3, .archive h4, .archive h5, .archive h6 {
	color: var(--page-heading-color);
}

.category p {
	color: var(--page-body-color);
}

/*------------------------------------*\
    CONTRIBUTORS
\*------------------------------------*/

body.tax-contributor {
	background: var(--page-bg-color);
}

.tax-contributor h1, .tax-contributor h2, .tax-contributor h3, .tax-contributor h4, .tax-contributor h5, .tax-contributor h6 {
	color: var(--page-heading-color);
}

.tax-contributor p {
	color: var(--page-body-color);
}

.wbru-archive-header__art--contributor {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 46px;
}

.wbru-archive-header__overlay--contributor {
	flex-direction: row;
	align-items: center;
}

.wbru-archive-header__overlay--contributor .wbru-archive-header__subtitle {
	font-size: 1.8rem;
	color: var(--accent-color);
	font-weight: bold;
	text-transform: uppercase;
}

.wbru-archive-header__overlay--contributor .wbru-archive-header__desc {
	max-width: 40vw;
}

/*------------------------------------*\
    ARTISTS
\*------------------------------------*/

body.tax-artist {
	background: var(--page-bg-color);
}

.tax-artist h1, .tax-artist h2, .tax-artist h3, .tax-artist h4, .tax-artist h5, .tax-artist h6 {
	color: var(--page-heading-color);
}

.tax-artist p {
	color: var(--page-body-color);
}

/*------------------------------------*\
    SHOWS
\*------------------------------------*/

body.tax-show {
	background: var(--page-bg-color);
}

.tax-show h1, .tax-show h2, .tax-show h3, .tax-show h4, .tax-show h5, .tax-show h6 {
	color: var(--page-heading-color);
}

.tax-show p {
	color: var(--page-body-color);
}

.wbru-archive-header__overlay--show {
	flex-direction: row;
	align-items: center;
}

.wbru-archive-header__overlay--show .wbru-archive-header__art {
	margin-right: 46px;
}

.wbru-archive-header__overlay--show .wbru-post-header__podcast-links {
	margin-top: 24px;
}

.wbru-archive-header__overlay--show .wbru-archive-header__desc {
	max-width: 40vw;
}


/*------------------------------------*\
    CATEGORY
\*------------------------------------*/

body.category {
	background: var(--page-bg-color);
}

.category h1, .category h2, .category h3, .category h4, .category h5, .category h6 {
	color: var(--page-heading-color);
}

.category p {
	color: var(--page-body-color);
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

h1, h2, h3, h4, h5, h6, p, a {
	font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
}

h1 {
	font-size: 2.875rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2.125rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.375rem;
}

h6 {
    font-size: 1rem;
}

p {
	font-size: 1.125rem;
	line-height: 1.8;
}

a {
	color: var(--accent-color);
	text-decoration: none;
}

a:hover {
	color: var(--accent-color);
	text-decoration: none;
}

a:visited {
	color: var(--accent-color);
	text-decoration: none;
}

h1 a, h1 a:visited, h2 a, h2 a:visited, h3 a, h3 a:visited {
	color: inherit;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:800px) {
	/*------------------------------------*\
		MOBILE HEADER
	\*------------------------------------*/

	/* Mobile Header styles (not collapsed) */

	.wbru-header {
		position: fixed;
		z-index: 899;
		padding: 0;
		grid-template-rows: 60px;
		grid-template-columns: 2fr 1fr;
		grid-template-areas: 'center right';
		background: var(--header-bg-color-primary);
	}

	.wbru-header__center, .wbru-header__right {
		display: flex;
		align-items: center;
		z-index: 999;
		background: var(--header-bg-color-primary);
		padding: 0 12px;
	}

	.wbru-header__left {
		display: none;
	}

	#wbruMobileMenu, #wbruMobilePlayer {
		display: block;
	}

	.wbru-header__nav[menu-open="true"] {
		position: fixed;
		pointer-events: auto;
		display: block;
		width: 100%;
		height: 100vh;
		opacity: 1;
		z-index: 699;
		transition: opacity 0.2s step-start;
	}

	.wbru-header__nav[menu-open="false"], .wbru-header__nav {
		position: fixed;
		pointer-events: none;
		display: block;
		width: 100%;
		height: 100vh;
		opacity: 0;
		z-index: 699;
		background: none;
		transition: opacity 0.2s step-end;
	}

	.wbru-header__nav-menu {
		position: absolute;
	}

	.wbru-header__branding img {
		object-position: left;
	}

	/* Mobile Header Button styles */

	.wbru-header__button {
		width: 60px;
		padding: 1.2rem;
		font-size: 1.2rem;
	}

	/* Header Nav styles */

	.wbru-header__nav[menu-open="true"] .wbru-header__nav-menu ul {
		height: 100vh;
		width: 100%;
		position: absolute;
		top: 0;
		right: 0;
		pointer-events: auto;
		list-style: none;
		padding: 76px 12px;
		margin: 0;
		display: flex;
		flex-direction: column;
		transform: translateX(0px);
		align-items: flex-start;
		justify-content: flex-start;
		background: var(--header-bg-color-secondary);		
		transition: all 0.2s ease;
	}

	.wbru-header__nav[menu-open="false"] .wbru-header__nav-menu ul {
		height: 100vh;
		width: 100%;
		position: absolute;
		top: 0;
		right: -100vw;
		pointer-events: none;
		list-style: none;
		padding: 76px 12px;
		margin: 0;
		display: flex;
		flex-direction: column;
		transform: translateX(0px);
		align-items: flex-start;
		justify-content: flex-start;
		background: var(--header-bg-color-secondary);		
		transition: all 0.2s ease;
	}

	.wbru-header__nav-menu li {
		display: inline-block;
		padding: 0 16px;
		display: flex;
		align-items: center;
	}

	.wbru-header__nav-menu li a {
		font-size: 1.6rem;
		text-transform: uppercase;
		font-weight: bold;
	}

	/* Collapsed Header styles */

	.wbru-header--collapsed {
		grid-template-rows: 60px;
		grid-template-columns: 2fr 1fr;
		grid-template-areas: 'center right';
		background: var(--header-bg-color-secondary);
	}

	.wbru-header--collapsed .wbru-header__left {
		display: none;
	}

	.wbru-header__social-menu--mobile {
		display: flex;
		position: absolute;
		height: auto;
		bottom: 0px;
		align-items: center;
		justify-content: flex-start;
		padding-left: 16px;
		width: 100%;
		padding-bottom: 12px;
		transition: all 0.2s ease;
	}

	.wbru-header__nav[menu-open="false"] .wbru-header__social-menu--mobile {
		right: -100vw;
	}

	.wbru-header__nav[menu-open="true"] .wbru-header__social-menu--mobile {
		right: 0;
	}

	/*------------------------------------*\
       Mobile STRUCTURE
	\*------------------------------------*/

	.wbru-main {
		margin-top: 60px;
	}

	/*------------------------------------*\
       Mobile PAGES
	\*------------------------------------*/

	.wbru-section--page-content {
		padding: 0 12px;
		margin-top: 12px;
	}

	/*------------------------------------*\
       Mobile POSTS
	\*------------------------------------*/

	.wbru-post-header__container {
		width: 90%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.wbru-post-header__meta {
		display: flex;
		align-items: center;
		flex-direction: column;
		text-align: center;
		max-width: 100%;
	}
	
	.wbru-post-header__media {
		margin-right: 0;
		width: 100%;
	}

	.wbru-post-header__media iframe {
		width: 100%!important;
	}

	.wbru-section--post-content {
		padding: 0 12px;
	}

	.wbru-post__categories {
		flex-direction: column;
		align-items: flex-end;
	}

	.wbru-post__category {
		padding: 0;
	}

	a.wbru-post__category-name {
		font-weight: bold;
		text-transform: uppercase;
		font-size: 0.8rem;
	}

	.wbru-post__topline {
		flex-direction: column;
	}

	.wbru-post__content {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		/* display: grid;
		grid-template-columns: 110px auto 160px; */
	}

	.wbru-post__sharing {
		width: 100%;
		justify-content: center;
	}

	.wbru-post__meta {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}

	.wbru-post__contributors {
		display: flex;
		flex-direction: row;
	}

	.wbru-post__contributor {
		margin-right: 12px;
	}

	.wbru-post__artists {
		display: flex;
		flex-direction: row;
	}

	.wbru-post__artist {
		margin-right: 12px;
	}

	.wbru-post__category, .wbru-post__tags {
		display: none;
	}

	.wbru-post__sidebar {
		display: none;
	}

	/*------------------------------------*\
       Mobile ARCHIVES
	\*------------------------------------*/

	.wbru-section--archive-header {
		padding: 0 12px;
	}

	.wbru-archive-header__overlay {
		padding: 0;
	}

	/*------------------------------------*\
       Mobile SHOWS
	\*------------------------------------*/

	.wbru-archive-header__overlay--show {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.wbru-archive-header__overlay--show .wbru-archive-header__desc {
		max-width: 100%;
	}

	.wbru-archive-header__overlay--show .wbru-archive-header__art {
		margin: 0;
	}

	/*------------------------------------*\
       Mobile CONTRIBUTORS
	\*------------------------------------*/

	.wbru-archive-header__overlay--contributor {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.wbru-archive-header__overlay--contributor .wbru-archive-header__desc {
		max-width: 100%;
	}

	.wbru-archive-header__overlay--contributor .wbru-archive-header__art {
		margin: 0;
	}

	/*------------------------------------*\
       Mobile FOOTER
	\*------------------------------------*/

	.wbru-section--footer-content {
		width: 96%;
		display: grid;
		grid-gap: 46px;
		grid-template-columns: 1fr;
	}

	.wbru-footer .widget_nav_menu h5, .wbru-footer .widget_nav_menu li  {
		text-align: center;
	}

	.wbru-footer .widget_media_image {
		display: flex;
		justify-content: center;
	}

	.wbru-section--footer-social {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	.wbru-footer-social__link {
		width: 50px;
		height: 50px;
		font-size: 1.6rem;
	}

	/*------------------------------------*\
       Mobile TYPOGRAPHY
	\*------------------------------------*/

	h1, h2, h3, h4, h5, h6 {
		line-height: 1.05;
	}

	h1 {
		font-size: 2.1rem;
	}
	
	h2 {
		font-size: 1.8rem;
	}
	
	h3 {
		font-size: 1.65rem;
	}
	
	h4 {
		font-size: 1.5rem;
	}
	
	h5 {
		font-size: 1.375rem;
	}
	
	h6 {
		font-size: 1rem;
	}

}

@media screen and (min-width: 1000px) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.is-type-video .wp-block-embed__wrapper {
	width: 100%;
	position: relative;
	padding-top: 56.2%;
}

.is-type-video .wp-block-embed__wrapper iframe {
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;
}

.wp-block-quote {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.wp-block-quote p {
	font-style: italic;
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--post-heading-color);
	line-height: 1.2;
}

.wp-block-quote p::before { 
	content: '"';
	color: var(--accent-color)
}

.wp-block-quote p::after { 
	content: '"';
	color: var(--accent-color);
}

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
.alignfull {
	width: 100%;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
