:root {
  --white: #fff;
  --black: #1b1c1f;
  --deep-black: #000;
  --cream: #e3ddc5;

  --primary-bg: #222126;
  --primary-link: #fff;
  --primary-hover: #ff1b00;
  --primary-font-family: "sans-serif";
  --button-font-family: "Druk";

  --header-bg: #3f88b9;
  --header-link: #fff;
  --header-link-hover: #fefded;

  --footer-bg: #1b1c1f;
  --footer-link: #f3f3f3;
  --footer-link-hover: #fff;

  --button-bg: #eb5a49;
  --button-hover: #ff1b00;

  --orange: #f09f4b;
  --blue: #3f88b9;
  --red: #eb604d;
}

/* Selection colours (easy to forget) */
::selection {
    background: var(--primary-hover);
    color: #fff;
}

::-moz-selection {
    background: var(--primary-hover);
    color #fff;
}

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}


body {
    background: var(--primary-bg);
    /*background-image: url('../images/site-bg.jpg');*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
}
body.menu-open {
    overflow-y: hidden;
}
a {
    color: var(--primary-link);
}
a:hover {
    color: var(--primary-hover);
}
h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
}
#content {
    overflow-x: hidden;
}
.druk, .wide {
    font-family: 'Druk', sans-serif;
}
.newake, .heavy {
    font-family: 'Newake', sans-serif;
}
.row.block.center {
    margin: 0 auto;
    display: block;
}
/* SMALL */
@media screen and (max-width: 39.9375em) {

}
hr.slim {
    width: 60%;
    margin: 0 auto;
}
.wp-block-button__link {
    background: transparent !important;
    font-weight: bold;
    border-radius: 20px !important;
}

.orange {
    color: var(--orange);
}
.orange-bg {
    background-color: var(--orange);
}
.blue {
    color: var(--blue);
}
.blue-bg {
    background-color: var(--blue);
}


/* HEADER */
body {

}
header.navigation-container {
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
}
header.navigation-container .row {
    display: flex;
    align-items: stretch;
}
header.navigation-container .menu-container {
    display: flex; /* Set the display property to flex */
    flex-direction: row; /* Arrange items horizontally */
    justify-content: flex-start; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
    padding: 0; /* Remove default padding */
    list-style-type: none; /* Remove default list styling */
    height: 100%;
}
header.navigation-container .menu-container.menu-container-right {
    justify-content:  flex-end;
}
header.navigation-container .menu-container ul {
    display: flex; /* Set the display property to flex */
    flex-direction: row; /* Arrange items horizontally */
    justify-content: flex-start; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
    padding: 0; /* Remove default padding */
    list-style-type: none; /* Remove default list styling */
    height: 100%;
}
header.navigation-container .menu-container ul li {
    margin-right: 10px;
}
header.navigation-container .menu-container .menu-list-right {
    align-self: flex-end;
}
header.navigation-container .menu-container ul li:last-child {
  margin-right: 0;
}
header.navigation-container h1 {
    font-size: 1.3em;
    margin: 0;
    line-height: 1;
    padding: 0.5em 0.5em;
}
header.navigation-container .menu-container a {
    display: inline-block;
    color: var(--header-link);
    font-size: 16px;
    font-family: var(--primary-font-family);
    padding: 0.7em 0.5em;
    position: relative;
    top: 50%;
}
header.navigation-container .menu-container a:hover {
    opacity: 0.5;
}
header .site-title a {
    color: var(--header-link);
}
header h1.show-identity {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--button-font-family), sans-serif;
    text-transform: uppercase;
    color: var(--cream);
}

/* MOBILE MENU */
input#control-nav {
    /* this is the actual checkbox, see ya! */
    visibility: hidden;
    position: absolute;
    left: -9999px;
    opacity: 0;
}
/* label icon */
[type=checkbox]+label.control-nav-label {
    display: block;
    margin: 0;
    position: relative;
    z-index: 99;
    line-height: 1;
    padding: 1em 0.5em;
}
.control-nav-label:before {

}
.control-nav-label:hover {
    cursor: pointer;
}
.control-nav-label i {
    font-size: 1.8em;
}
.control-nav-label .control-nav-close {
    display: none;
}
input#control-nav:checked ~ .control-nav-label .control-nav-open {
    display: none !important;
}
input#control-nav:checked ~ .control-nav-label .control-nav-close {
   display: inline-block !important;
}
.mobile-menu-container {
    display: none;
}

/* MEDIUM */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {

}

/* SMALL */
@media screen and (max-width: 39.9375em) {
    header.navigation-container {

    }
    [type=checkbox]+label.control-nav-label {
        display: none;
    }
    header.navigation-container h1 {
        font-size: 1.3em;
    }

    input#control-nav:checked ~ .mobile-menu-container {
        display: block !important;
    }
    .mobile-menu-container {
        position: absolute;
        left: 0;
        top: 51px;
        width: 100%;
        background: #d64346;
        height: 100vh;
        z-index: 600;
        text-align: center;
        font-size: 3em;
    }
    header.navigation-container .menu-container,
    header.navigation-container .menu-container ul {
        display: block;
    }
    header.navigation-container .mobile-menu-options {

    }
    header.navigation-container .menu-container a {
        top: auto;
        font-size: 22px;
    }
}

.primary-content-container {
    min-height: 80dvh;
}
@media screen and (max-width: 39.9375em) {
    #about.primary-content-container {
        margin-top: 5em;
    }
}
p.button {
    display: inline;
    background: transparent;
}
p.button a,
.form-submit input[type='submit']{
    font-family: var(--button-font-family), sans-serif;
    padding: 1em 2em;
    display: inline-block;
    background: var(--button-bg);
    color: #fff !important;
    border-radius: 50px;
}
p.button.fullwidth a {
    width: 100%;
    display: block;
}
p.button:hover {
    background: transparent !important;
}
p.button:hover a,
.form-submit input[type='submit']:hover {
    background: var(--button-hover);
    color: #fff;
}
p.button.soldout a {

}
p.button.soldout {
    position: relative;
}
p.button.soldout:before {
    content: 'Sold Out!';
    background-color: #f00;
    position: absolute;
    top: -1em;
    right: 0;
    transform: rotate(9deg);
    font-family: var(--button-font-family);
    padding: 0.5em;
}
.button.green-bg {
    background-color: var(--primary-bg);
}


/* MAILING LIST */
.mailing-list-container,
.mailing-list-container form {
  position: relative;
}
.mailing-list-container input {
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: none;
  width: calc(100% - 160px);
  margin-bottom: 0;
}
.mailing-list-container button {
  position: absolute;
  right: 4px;
  bottom: 4px;
  margin-bottom: 0;
}
.mailing-list-container .border {
  border: 1px solid #cacaca;
}
.border.border-radius {
  border-radius: 3px;
}
.mailing-list-homepage label {
  font-size: 1em;
}
.mailing-list-homepage .social-buttons a {
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1rem;
  padding: 12px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 30px;
  margin-right: 20px;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .mailing-list-homepage h4 {
    font-size: 20px;
  }
  .mailing-list-homepage .padding-container {
    padding-right: 0;
  }
}
@media screen and (max-width: 39.9375em) {
  #mailing-list {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .mailing-list-homepage h4 {
    font-size: 1.5em;
    font-weight: normal;
  }
  .mailing-list-container input {
    width: calc(100% - 110px);
  }
  .mailing-list-container button {
    padding-left: 5px;
    padding-right: 5px;
  }
  .mailing-list-homepage .padding-container {
    padding-top: 20px;
    padding-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
  }
  .mailing-list-homepage .mailing-list-container {
    padding-top: 0;
  }
}

h1.primary-title {
  font-size: 22px;
  line-height: 24px;
}
h4.primary-desc {
  font-size: 16px;
  line-height: 18px;
}

body.single-post h1.entry-title {
    font-size: 30px;
    text-wrap: pretty;
}

/* WELCOME */
.welcome-container {

}

.welcome-container > article,
.welcome-container article > section {
    position: relative;
}
.embed-youtube {
    gap: 0;
    position: relative;
    aspect-ratio: 16/9;
}
.embed-youtube.short {
    aspect-ratio: 9/16;
}
.embed-youtube iframe {
    width: 100%;
    height: auto;
}
.homepage-video.inactive {
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
}
.homepage-video.inactive:after {
    content: '\1F507\ Click to unmute';
    background: rgba(0,0,0,0.6);
    border-radius: 3px;
    padding: 10px;
    transition: all 100ms ease-out;
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 10;
}
.homepage-video.inactive:hover:after {
    background: rgba(0,0,0,1);
    transform: scale(1.1);
}
/* SMALL */
@media screen and (max-width: 39.9375em) {
    .homepage-video.inactive {
        width: 50%;
        margin: 0 auto;
        padding-bottom: 1em;
    }
    .homepage-video.inactive:after {
        content: '\1F507\ Tap to unmute';
    }
    .welcome-container * .is-layout-flex {
        /*display: block;*/
        padding-bottom: 1em;
    }
    .welcome-container-inner {
        width: 90%;
        margin: 0 auto;
    }
}


.the-logo {
    width: 400px;
    height: auto;
    aspect-ratio: 2.3/1;
    margin: 0 auto;
    text-indent: -9999px;
    background: url('../images/the-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}
.the-logo-container {
    width: 800px;
    height: auto;
    aspect-ratio: 2.3/1;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .the-logo {
        width: 400px;
    }
}
@media screen and (max-width: 39.9375em) {
    .the-logo {
        width: 300px;
    }
}
/* LATEST */
.container-latest:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-bg); /* Adjust color and height as needed */
}

.latest-title {
    font-size: 1.5em;
    padding: 0;
    margin: 0;
}
.latest-metadata {
    font-size: 1em;
    padding: 0;
    margin:0 ;
}
.latest-summary {

}
@media screen and (max-width: 39.9375em) {
    .container-latest .button-container .padding-right-none {
        padding-right: 0.5em;
    }
    .container-latest .row-latest {
        margin-left: 1em;
        margin-right: 1em;
    }
}




/*SINGLE */
.single-post .attribution {
  display: none;
}
body.single-post .avatar {
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

/* .powerpress_player .mejs-container,
.powerpress_player .mejs-container .mejs-controls,
.powerpress_player .mejs-embed,
.powerpress_player .mejs-embed body {
  background: #fcfcfc;
}
.powerpress_player
  .mejs-controls
  .mejs-horizontal-volume-slider
  .mejs-horizontal-volume-current,
.powerpress_player .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #eee;
}
.powerpress_player .mejs-button > button {
  background-image: url("../images/mejs-controls-dark.svg");
}
.powerpress_player .mejs-time {
  color: #555555;
}

.powerpress_player
  .mejs-controls
  .mejs-horizontal-volume-slider
  .mejs-horizontal-volume-total,
.powerpress_player .mejs-controls .mejs-time-rail .mejs-time-total {
  background: rgba(85, 85, 85, 0.33);
  border-radius: 6px;
}
.powerpress_player .mejs-time-float-corner {
  border: 5px solid #333;
  border-color: #333 transparent transparent;
}
.powerpress_player .mejs-controls .mejs-time-rail .mejs-time-current {
  background: var(--gold);
}
.powerpress_player .mejs-controls a {
  border-bottom: none;
}
.powerpress_player .mejs-controls a.mejs-horizontal-volume-slider:hover {
  border-bottom: none;
}
.powerpress_player {
}

.powerpress_links {
  display: none;
} */

/* 404 ERROR!!! */
body.error404,
body.search-no-results {

}
body.error404 .giant-bg,
body.search .giant-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("");
  background-position: center center;
  background-size: cover;
  z-index: -1;
  -webkit-filter: blur(45px);
  -moz-filter: blur(45px);
  -o-filter: blur(45px);
  -ms-filter: blur(45px);
  filter: blur(45px);
}

/* CATEGORIES */
.cat-links ul {
    display: flex;
    padding: 0;
     list-style-type: none;
}
.cat-links ul li {
    margin-right: 10px;
}
.cat-links a {
    display:inline-block;
    border-radius: 20px;
    padding: 0.2em 0.7em;
    text-align:center;
    background: var(--button-bg);
    color: var(--white);
}

/* FOOTER */
footer.primary-footer {
    background-color: var(--footer-bg);
}
footer.primary-footer .identity {
  display: inline-block;
  width: 100%;
  aspect-ratio: 22/2;
  margin: 0 auto;
  /* CUSTOM */
  text-indent: -9999px;
  background: url('../images/footer-logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 300px;
}
footer.primary-footer a.identity:hover {

}
footer.primary-footer .social-buttons a {
  display: inline-block;
  color: #fff;
}

footer.primary-footer .social-buttons a.no-margin {
  margin-right: 0px;
}
footer.primary-footer a,
footer.primary-footer a:visited {
    color: var(--footer-link);
}
footer.primary-footer a:hover {
    color: var(--footer-link-hover);
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {

}
@media screen and (max-width: 39.9375em) {
    footer.primary-footer a.identity {
        width: 50%;
        margin: 0 auto;
    }
}


/* MEDIA PLAYER */
.powerpress-outer-container {
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}
.episode-entry .media-player,
.powerpress_player,
.episode-image-container {
  border: 1px solid #ccc;
  border-top: 3px solid var(--primary-link);
  border-radius: 5px;
  overflow: hidden;
  background: #fcfcfc;
}

body.single-post .powerpress_player {
  padding-top: 30px;
  padding-bottom: 30px;
}

.episode-entry .media-player .columns {
  min-height: 128px;
}
.episode-entry .media-player .columns.compact {
  height: auto;
}
.episode-entry .media-player .media-player-cover {
  text-indent: -9999px;
  height: 0;
  padding-top: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
}
.media-player-cover.square {
  display: block;
  height: 0;
  padding-top: 100%;
  text-indent: -9999px;
  background-size: cover;
  background-repeat: no-repeat;
}
.powerpress-outer-container {
    display: flex;
}
.episode-image-container {
    max-width: 140px;
    aspect-ratio: 1/1;
}
.episode-image-container {
    border-right: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.powerpress-outer-container .powerpress_player {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: none;
}
.episode-image-container .episode-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.powerpress_player .mejs-container,
.powerpress_player .mejs-container .mejs-controls,
.powerpress_player .mejs-embed,
.powerpress_player .mejs-embed body,
.powerpress-outer-container {
  background: #fcfcfc;
}
.powerpress_player
  .mejs-controls
  .mejs-horizontal-volume-slider
  .mejs-horizontal-volume-current,
.powerpress_player .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #eee;
}
.powerpress_player .mejs-button > button {
  background-image: url("../images/mejs-controls-dark.svg");
}
.powerpress_player .mejs-time {
  color: #555555;
}

.powerpress_player
  .mejs-controls
  .mejs-horizontal-volume-slider
  .mejs-horizontal-volume-total,
.powerpress_player .mejs-controls .mejs-time-rail .mejs-time-total {
  background: rgba(85, 85, 85, 0.33);
  border-radius: 6px;
}
.powerpress_player .mejs-time-float-corner {
  border: 5px solid #333;
  border-color: #333 transparent transparent;
}
.powerpress_player .mejs-controls .mejs-time-rail .mejs-time-current {
  background: var(--gold);
}
.powerpress_player .mejs-controls a {
  border-bottom: none;
}
.powerpress_player .mejs-controls a.mejs-horizontal-volume-slider:hover {
  border-bottom: none;
}
.powerpress_player {
}

.powerpress_links {
  display: none;
}

.episode-with-image.powerpress-outer-container .episode-player-container .powerpress_player {
    height: 100%;
    position: relative;
}
.episode-with-image.powerpress-outer-container .episode-player-container .powerpress_player > .mejs-container {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.entry-content figure img {
    width: 100%;
    height: auto;
}
body.category-blog .entry-content p {
    padding-left: 3em;
    padding-right: 3em;
}
h3.episode-title {
    font-size: 1em;
}
.episode-counter {
    font-size: 0.7em;
}
body.category-episodes hgroup {
    display: block;
    min-height: 60px;
}
body.category-episodes a.button {
    font-size: 0.7em;
}

@media screen and (max-width: 39.9375em) {
    article header.padding-top-medium {
        padding-top: 0;
    }
    article header.padding-top-medium h1 {
        font-size: 3em;
    }
    .container-latest .powerpress-outer-container {
        margin-left: auto;
        margin-right: auto;
        min-width: fit-content;
        margin-bottom: 0;
    }
}


.mailpoet-container {
    position: relative;
}
.mailpoet_form {
    margin: 0 auto;
    position: relative;
}
.mailpoet-container input[type="email"],
#mailpoet_form_1  input[type="email"] {
    padding: 16px 20px !important;
    border-radius: 30px;
}

.mailpoet_submit.button {
    min-width: 100px;
}

.mailpoet-container .mailpoet_submit {
    position: absolute;
    right: 6px;
    top: 3px;
}
#mailpoet_form_1 .parsley-required {
    color: #fff !important;
    background: #cf2e2e !important;
    text-align: center;
    padding: 3px;
}
@media screen and (max-width: 39.9375em) {
    .mailpoet-container {
        width: 80%;
        margin: 0 auto !important;
    }
    .mailpoet-container input[type="email"],
    #mailpoet_form_1  input[type="email"] {
        padding: 24px 20px !important;
        border-radius: 30px;
    }
    .mailpoet-container .mailpoet_submit {
        position: absolute;
        right: 4px;
        top: 4px;
        font-weight: bold;
        padding: 12px 6px !important;
    }
}
/* ABOUT page - host section */
.about-container.is-layout-flex {
    align-items: start;
}
.about-container a {
    color: var(--button-bg);
}
.about-container hr {
    margin-bottom: 1em;
}
.about-container p {
    padding: 0 1em;
}
@media screen and (max-width: 39.9375em) {
    .container-host {
        display: block !important;
    }
}

#wpadminbar {

}


.nav-previous a,
.nav-next a {
    background: #fff;
    padding: 1em;
    border-radius: 1em;
}

body.single-post ul.wp-block-list {
    margin-bottom: 1.5em;
    margin-left: 1.5em;
    margin-right: 1.5em;
}

.wp-block-embed-youtube iframe {
    aspect-ratio: 16/9;
}
.button.smaller {
    font-size: 12px;
}
.border {
    border: 1px solid rgba(0,0,0,0.3);
}

@media screen and (max-width: 39.9375em) {
    .cta--container {
        flex-wrap: wrap !important;
        margin: auto 5%;
    }
    .cta--container .wp-block-column {
        width: 100%;
        flex-basis: 100% !important;
    }
}
.archive-container .episode-entry video {
    display: none;
}
@media screen and (max-width: 39.9375em) {
    .about-container.is-layout-flex {
        display: block;
        width: 70%;
        margin: 0 auto;
    }
    .about-container > .wp-block-column {
        flex-basis: 100%;
        width: 100%;

    }
}

@media screen and (max-width: 39.9375em) {
    .primary-headline.druk {
        font-size: 30px;
    }
    .secondary-headline.newake {
        font-size: 28px;
    }
}

.band-tile {
    aspect-ratio: 16/6;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    font-family: 'Druk', sans-serif;
    padding: 2em;
    position: relative;
}
.band-tile .wp-block-heading {
    position: absolute;
    font-family: 'Druk', sans-serif;
    text-transform: uppercase;
}
.band-tile .wp-block-heading a:hover {
    color: #fff;
    text-decoration: underline;
}
.band-glossary {
    background-image: url('../images/tile--glossary.jpg');
}
.band-glossary .wp-block-heading {
    bottom: 20%;
    left: 5%;
}

.band-features {
    background-image: url('../images/tile--thefeatures.jpg');
}
.band-features .wp-block-heading {
    bottom: 20%;
    right: 5%;
    text-align: right;
    line-height: 1;
}



.logo-container,
.logo-container.wp-block-columns {
    width: 65%;
    margin: 0 auto;
    align-items: center !important;
    justify-content: center;
}
.logo-container .wp-block-image>a {
    display: block;
    height: 100px;
    margin: 0 auto;
    text-align: center;
}
.logo-container figure img {
    width: auto;
    height: 100%;
    object-fit: contain;
}
.logo-container a {
    transition: all 100ms ease-in;
}
.logo-container a:hover {
    transform: scale(1.1);
}
/* MEDIUM */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .logo-container,
    .logo-container.wp-block-columns,
    .welcome-container .logo-container {
        width: 90%;
        display: flex !important;
    }
    .logo-container.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis:  calc(30% - 10px) !important;
    }
}

@media screen and (max-width: 39.9375em) {
    .logo-container,
    .logo-container.wp-block-columns,
    .welcome-container .logo-container {
        width: 90%;
        display: flex !important;
    }
    .logo-container.wp-block-columns .wp-block-column {
        flex: 0 0 calc(40% - 10px);
    }
    .logo-container.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis:  calc(40% - 10px) !important;
    }
}
