:root {
  --white: #fff;
  --black: #41312f;
  --grey: #a79186;
  --pink: #fd2c7a;

  --primary-bg: #7ea3cc;
  --primary-link: #fd2c7a;
  --primary-hover: #000000;
  --primary-font-family: "Helvetica";
  --secondary-font-family: sans-serif;

  --header-bg: #7ea3cc;
  --header-link: #fff;
  --header-link-hover: #eaf80b;

  --footer-bg: #332d2e;
  --footer-link: #f3f3f3;
  --footer-link-hover: #fff;

  --button-bg: #fd2c7a;
  --button-hover: #ff196f;
}

/* 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-color: var(--primary-bg);
    background-image: url('../images/welcome-bg.jpg');
    background-position: center center;
    background-size: cover;
    background-position: fixed;
    font-family: var(--secondary-font-family);
}
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: var(--primary-font-family);
}
p {
    font-family: var(--secondary-font-family);
}

/* SMALL */
@media screen and (max-width: 39.9375em) {
    #content {
       padding-top: 0;
    }
}
hr.slim {
    width: 60%;
    margin: 0 auto;
}



/* HEADER */
header.navigation-container {
    background-color: transparent;
    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: 12px;
    font-family: monospace;
    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);
    font-family: monospace;
    font-size: 12px;
    font-weight: 900;
}
header h1.show-identity {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* 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 h1 {
        font-size: 1.1em;
    }
    input#control-nav:checked ~ .mobile-menu-container {
        display: block !important;
    }
    .mobile-menu-container {
        position: absolute;
        left: 0;
        top: 51px;
        width: 100%;
        background: #65be6f;
        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;
    }
}

.button,
.form-submit input[type='submit']{
    font-family: var(--primary-font-family), sans-serif;
    padding: 1em;
    background: var(--button-bg);
}
.button:hover,
.form-submit input[type='submit']:hover {
    background: var(--button-hover);
}
.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;
}

/* WELCOME */
.container-welcome {
    height: 50vh;
    min-height: 600px;
    position: relative;
    z-index: 10;
    padding-top: 3em;
}
.container-welcome > article,
.container-welcome article > section {
    position: relative;
    height: 100%;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .container-welcome {
        height: 50vh;
        min-height:620px;
    }
}
/* SMALL */
@media screen and (max-width: 39.9375em) {
    .container-welcome {
        height: 40vh;
        min-height: 400px;
        padding-top: 5em;
    }
}


.the-logo {
    width: 380px;
    height: auto;
    aspect-ratio: 2/3;
    margin: 0 auto;
    text-indent: -9999px;
    background: url('../images/yk-world-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    animation: floating 4s ease-in-out infinite;
}
@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
@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: 225px;
    }
}
/* 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,
    .container-mlist .row-outer {
        margin-left: 1em;
        margin-right: 1em;
    }
}




/*SINGLE */
.single-post .attribution {
  display: none;
}
body.single-post .avatar {
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
.single-post h1.entry-title {
    font-size: 2em;
}
.single-post h1.entry-title a {
    color: var(--black);
}

/* .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: 200px;
  /* CUSTOM */
  text-indent: -9999px;
  aspect-ratio: 1/1;
  background: url('../images/show-logo.png');
  background-repeat: no-repeat;
  background-size: cover;
}
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) {

}


/* 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;
}

@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;
    }
}

/* Powerpress Subscribe Widget */
/* outer container */
.pp-sub-widget {
  border: none !important;
  margin-top: 0px !important;
  padding: 10px 0 0 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.pp-sub-widget-head {
  display: none;
}
.pp-sub-widget .pp-sub-btns {
    justify-content: space-evenly !important;
    margin-top: 1em !important;
}
.pp-sub-widget-include a.pp-sub-btn,
.pp-sub-widget-include a.pp-sub-btn-sq {
    width: auto !important;

}
.pp-sub-widget-modern a.pp-sub-btn,
.pp-sub-widget-modern a.pp-sub-btn-sq {
    margin-bottom: 1em !important;
    line-height: 1;
    font-family: var(--secondary-font-family);
    background: var(--white);
    color: var(--black);
}
.subscribe-container {
    max-width: 62.5rem;
    margin: 0 auto;
    position: relative;
    margin-top: -30px;
}
.subscribe-container .pp-sub-widget .pp-sub-btns {
    padding: 1em;
}
.pp-sub-btn-sq.pp-sub-email {
    display: none !important;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .subscribe-container {
        margin: 0 4em;
    }
}
/* SMALL */
@media screen and (max-width: 39.9375em) {
    .subscribe-container {
        width: 87.5%;
        margin: 0 auto;
    }
    .pp-sub-widget-modern .pp-sub-ic {
        transform: scale(1) !important;
    }
    .pp-sub-widget .pp-sub-btns {
        flex-wrap: wrap;
    }
    .pp-sub-widget-modern a.pp-sub-btn {
        margin: 0;
    }
    .pp-sub-widget .pp-sub-btns > a {
        flex: 50% !important;
    }
    .pp-sub-widget-modern a.pp-sub-btn, .pp-sub-widget-modern a.pp-sub-btn-sq {
        font-weight: 500;
    }
    .subscribe-container .pp-sub-widget .pp-sub-btns {
        padding: 0;
    }
}
.mailpoet-container {
    width: 100% !important;
}
#mailpoet_form_1 {
    max-width: 62.5rem;
    margin: 4em auto 0 auto;
}
.mailpoet_submit.button {
    min-width: 100px;
}
.mailpoet_form {
    margin: 0 auto;
}
@media screen and (max-width: 39.9375em) {
    .mailpoet_form_column.padding-left-small {
        padding-left:0;
    }
    .mailpoet_form .mailpoet_submit {
        width: 100%;
        margin: 0;
    }
}
/* ABOUT page - host section */
figure.host-image figcaption {
    font-size: 0.9em;
    margin-top: 0.5em;
}
.container-host.is-layout-flex {
    align-items: flex-start;
}
@media screen and (max-width: 39.9375em) {
    .container-host {
        display: block !important;
    }
}

#wpadminbar {
    display: none !important;
}

.footer-content-container {
    position: relative;
    top: -60px;
}

.footer-nav-list li {
    display: inline;
}
.footer-nav-list li:last-child span {
    display: none;
}


.container-mlist {
    display: block;
}
