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

  --primary-bg: #fefefe;
  --primary-link: #ed500d;
  --primary-hover: #fec10e;
  --primary-font-family: "Bebas Neue";
  --secondary-font-family: "sans-serif";
  --orange:#f3b13e;
  --teal: #59a9a6;

  --header-bg: #f3b13e;
  --header-link: #fff;
  --header-link-hover: #fec10e;

  --footer-bg: #030303;
  --footer-link: #f3f3f3;
  --footer-link-hover: #fff;

  --button-bg: #f29217;
  --button-hover: #fec10e;
}

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

html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--primary-bg);
    background-position: center center;
    background-size: cover;
    font-family: sans-serif;
    scroll-behavior: smooth;
}
body.menu-open {
    overflow-y: hidden;
}
body.menu-open .home-container,
body.menu-open #content {
    filter: blur(1.5rem);
}
a {
    color: var(--primary-link);
}
a:hover {
    color: var(--primary-hover);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font-family);
    line-height: 1;
}
.headline {
    font-size: 3em;
}
p {
    font-family: sans-serif;
}

.bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.orange {
    color: var(--orange);
}
.orange-bg {
    background-color: var(--orange);
}
.teal {
    color: var(--teal);
}
.teal-bg {
    background-color: var(--teal);
}

#content {
    overflow-x: hidden;
}
/* SMALL */
@media screen and (max-width: 39.9375em) {
    #content {
       padding-top: 64px;
    }
}
hr.slim {
    width: 50%;
    margin: 0 auto;
    border: none;
    border-top: 1px solid #000;
}

#searchform {
    position: relative;
}
#searchform input[type="text"] {
    font-size: 1.4em;
    padding: 1em;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 30px;
    text-align: left;
}
#searchform input[type="submit"] {
    position: absolute;
    right: 0.2em;
    top: 0.2em;
    border-radius: 30px;
}

/* HEADER */
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;
}
header.navigation-container .menu-container a {
    display: block;
    color: var(--header-link);
    font-size: 1.4em;
    font-family: var(--primary-font-family);
    text-decoration: none;
    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: 67%;
    transform: translateY(-50%);
    font-size: 2.2em;
    display: block;
    text-indent: -9999px;
    background-image: url('../images/fastbreak-breakfast--logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 200px;
}

/* 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: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 99;
    line-height: 1;
    padding: 1em 0.5em;
}
.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;
}


/* Dropdown Nav */
.menu-container-left ul li {
    position: relative;
}
header.navigation-container .menu-container-left  a {
    font-size: 1.4em;
}
.menu-container-left ul li ul {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
}
.menu-container-left ul li:hover > ul {
  display: block !important;
  background: var(--header-bg);
}
.menu-container-left ul li:hover > ul li {
    background: var(--header-bg);
}
.menu-container-left ul li ul a {
  display: block;
  background: var(--header-bg);
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    header.navigation-container .menu-container-left a {
        padding: 0;
    }
    header.navigation-container .menu-container.menu-container-right a {
        font-size: 1em;
        padding: 0.7em 0.1em;
    }
}


/* SMALL */
@media screen and (max-width: 39.9375em) {
    header.navigation-container .row.primary-nav-container {
        pointer-events: none;
        display: block;
    }
    header h1.show-identity {
        width: auto;
        height: 110px;
        background-position: center center;
        z-index: 100;
        top: auto;
        bottom: -25px;
        transform: none;
        max-width: 200px;
    }
    input#control-nav:checked ~ .mobile-menu-container {
        display: block !important;
    }
    .mobile-menu-container {
        display: none;
        position: absolute;
        left: 0;
        top: 0px;
        width: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(100px);
        -webkit-backdrop-filter: blur( 10px );
        height: 100vh;
        z-index: 600;
        text-align: center;
        font-size: 3em;
    }
    .mobile-menu-row {
        z-index: 599;
    }
    header.navigation-container .menu-container,
    header.navigation-container .menu-container ul {
        display: block;
    }
    header.navigation-container .menu-container a {
        top: auto;
        font-size: 30px;
        padding: 0.3em 0;
    }
    header.navigation-container .menu-container ul.menu-list-mobile-sub {
      display: flex !important;
      justify-content: center;
      gap: 1rem;
      padding-top: 0.3em;
      border-top: 1px solid rgba(255,255,255,0.5);
    }
    ul.menu-list-mobile-sub li {
        margin-right: 1em;
        flex: 0 0 60px;
    }
}

.primary-content-container {
    min-height: 80dvh;
}
@media screen and (max-width: 39.9375em) {
    #about.primary-content-container {
        margin-top: 5em;
    }
}
p.has-button a,
.button,
.form-submit input[type='submit'],
.ayg-btn {
    font-family: var(--primary-font-family), sans-serif;
    padding: 1em 2em;
    background: var(--teal);
    color: #fff;
    border-radius: 12px;
    font-size: 1.2em;
}
p.has-button a:hover,
.button:hover,
.form-submit input[type='submit']:hover,
.ayg-btn:hover {
    background: var(--button-hover);
}


/* 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;
}
/* CONTACT */
.contact-form-container label {
    text-transform: uppercase;
    font-family: var(--primary-font-family);
    font-size: 1.3em;
}
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 1em;
    width: 100%;
    border-radius: 3px;
}
.contact-form-container button,
.contact-form-container input[type="submit"] {
    font-family: var(--primary-font-family), sans-serif;
    padding: 0.6em 1.5em;
    background: var(--teal);
    color: #fff;
    border-radius: 12px;
    font-size: 1.5em;
}
@media screen and (max-width: 39.9375em) {
    .contact-page-columns {
        display: block !important;
    }
}
/* WELCOME */
.welcome-container {
    height: 60vh;
    min-height: 800px;
    position: relative;
}
.welcome-container > article,
.welcome-container article > section {
    position: relative;
    height: 100%;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .welcome-container {
        height: 50vh;
        min-height: 560px;
    }
}
/* SMALL */
@media screen and (max-width: 39.9375em) {
    .welcome-container {
        height: 40vh;
        min-height: 400px;
    }
}


.the-logo {
    width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto;
    text-indent: -9999px;
    background: url('../images/show-logo.png');
    background-repeat: no-repeat;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
}
@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;
}
.single-post h1.entry-title {
    font-size: 2em;
}
.single-post h1.entry-title a {
    color: var(--black);
}


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

@media screen and (max-width: 39.9375em) {
    .container-host {
        display: block !important;
    }
}

#wpadminbar {
    display: none !important;
}



/* YouTube embed changes */
body .is-layout-flex.row.video-container,
body .is-layout-flex.row.gallery-container,
body .is-layout-flex.about-container{
    display: block;
}

.ayg-player,
.ayg-player-caption {
    display: block !important;
}
.ayg-player .ayg-player-caption {
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 1em;
    padding-bottom: 1em;
}
.ayg-player-title {
    line-height: 1;
}
.ayg-thumbnail-title {
     line-height: 1.3em !important;
    font-family: var(--primary-font-family), sans-serif;
    font-size: 1.4em !important;
}
.ayg-gallery .ayg-video:first-child,
.ayg-thumbnail-media svg {
    display: none;
}
.ayg-thumbnail-media {
    border-radius: 12px;
    overflow: hidden;
}


/* SNIP */

.podcasts-container.is-layout-flex,
.about-container.is-layout-flex,
.about-text-container.is-layout-flex,
.align-items-start {
    align-items: start !important;
}
.podcasts-container .wp-block-heading {
    font-size: 3em;
    margin: 0;
    padding-top: 0.5em;
}
.podcasts-container .wp-block-list a {
    display: block;
    padding: 0.6em;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 0.5em;
    color: #000;
    margin-bottom: 0.2em;
    font-weight: bold;
    text-decoration: none;

}
.podcasts-container .wp-block-list a:hover {
    background-color: var(--teal);
    color: #fff;
}

.about-container .wp-element-caption {
    font-size: 11px;
    color: rgba(0,0,0,0.4);
    text-align: left;
    padding-top: 10px;
}
.podcast-container .wp-block-image.rounded {
    width: 100%;
    margin: 0;
}
.wp-block-image.rounded a {
    display: block;
}
.wp-block-image.rounded img {
    border-radius: 10px; overflow: hidden;
    width: 100%; height: auto;
}
.teal-bg-container a {
    color: #000;
    text-decoration: underline;;
}
.teal-bg-container a:hover {
    color: #FFF;
}

.about-text-container,
.no-float {
    float: none !important;
}
.support-container > .wp-block-column h3 {
    font-size: 3em;
    margin: 0;
}
.about-image-container figure,
.addtl-images-container figure {
    margin: 0 0 1em 0;
    position: relative;
}
.addtl-images-container figure img.hide {
    display: block;
    opacity: 0.2;
}
.lightbox-trigger {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 10;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
}
@media screen and (max-width: 39.9375em) {
    .gallery-container {
        width: 90%;
        margin: 0 auto;
        padding-top: 3em;
    }
    .podcasts-container,
    .about-image-container,
    .about-text-container {
        display: block !important;
        flex-wrap: wrap !important;
        width: 90%;
        margin: 0 auto;
    }
    .lightbox-trigger {
        transform: scale(0.6);
    }
    .ayg-player:before,
    .ayg-gallery:before {
        /* content: 'Latest Episode:'; */
        display: block;
        text-align: left;
        width: 100%;
        margin: 0 auto;
        position: relative;
        font-weight: bold;
        color: rgba(0,0,0,0.5);
        text-transform: uppercase;
    }
    .ayg-gallery:before {
        /* content: 'Previous Episodes:'; */
        width: 94%;
    }
    .ayg-gallery .ayg-video:nth-child(2) .ayg-thumbnail {
        margin-top: 0;
    }
    .ayg-player .ayg-player-caption {
        padding: 1em 0;
    }
    .ayg-player .ayg-player-title {
        font-size: 2.2em;
    }

    .podcasts-container > .wp-block-column[style] {
        flex-basis: 100%;
    }
    .podcasts-container > .wp-block-column:first-child {
        padding-bottom: 3em;
    }
    .podcasts-container .wp-block-heading {
        font-size: 3em;
    }
    .support-container {
        width: 90%;
        margin: 0 auto;
        align-items: start !important;
        overflow: hidden;
        gap:0;
    }
    .support-container > .wp-block-column {
        flex-shrink: 0;
        flex-grow: 1;

    }
    .support-container > .wp-block-column h3,
    .support-container > .wp-block-column p {
        padding-left: 30px;
    }

}

.awards-container ul li ul {
    padding-left: 2em;
}

/* V2! */
.video-container {
    display: block;
}
.ymf-video .ymf-video-date {
    display: none;
}
.read-more-text {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: none;
}
.read-more-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;     /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 4.5em;          /* fallback if line-clamp not supported */
}
.read-more-toggle {
  margin-top: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  color: var(--primary-link);
  padding: 0;
}
.read-more-toggle:hover {
    color: var(--primary-hover);
}
.video-container h1 {
    margin: 0;
    line-height: 1;
    font-weight: 500;
}
.video-container.primary .metadata-container {
    padding-left: 2em;
    padding-right: 2em;
}
.video-container.primary h1 {
    font-size: 3em;
}
.video-container.all h1 {
    font-size: 1.7em;
}
.video-container.all p {
    margin: 0;
}
.video-container.all .read-more-toggle {
    display: none;
}

.ymf-load-more-container {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
}
.ymf-load-more-container .button {
    font-size: 1.4em;
    padding: 0.5em 1.5em;
}
.ymf-channel-title {
    margin: 0 0 0.5em 0;
    padding: 0.6em;
    font-size: 0.7em;
    background: #e9e9e9;
    display: inline-block;
    border-radius: 3px;
    text-transform: none;
    display: none;
}
@media screen and (min-width: 64em) {
    ul.ymf-videos li.ymf-video.cell:nth-child(n+4),
    ul.ymf-videos.small-block-grid-2 > li:nth-child(n+4){
        clear: both;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-wrap: nowrap;
        float: none;
        padding-top: 1em;
    }
    ul.ymf-videos li.ymf-video.cell:nth-child(n+4) .media-container {
        flex: 0 0 20%;
        max-width: 20%;
    }
    ul.ymf-videos li.ymf-video.cell:nth-child(n+4) .metadata-container {
        flex: 1;
        padding-top: 1em;
        padding-left: 1em;
        padding-right: 1em;
        box-sizing: border-box;
        min-width: 0;
        word-wrap: break-word;
    }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    ul.ymf-videos li.ymf-video.cell:nth-child(n+5),
    ul.ymf-videos.small-block-grid-2 > li:nth-child(n+5) {
        clear: both;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-wrap: nowrap;
        float: none;
        margin-bottom: 1.5em;
    }
    ul.ymf-videos li.ymf-video.cell:nth-child(n+5) .media-container {
        flex: 0 0 30%;
        max-width: 30%;
    }
    ul.ymf-videos li.ymf-video.cell:nth-child(n+5) .metadata-container {
        flex: 1;
        padding-top: 0.5em;
        padding-left: 1em;
        padding-right: 1em;
        box-sizing: border-box;
        min-width: 0;
        word-wrap: break-word;
    }
}
@media screen and (max-width: 39.9375em) {
    #wrapper {
        overflow-x: hidden;
    }
    .video-container.primary h1 {
        font-size: 2em;
    }
    .video-container.all h1 {
        font-size: 1.3em;
    }
    .video-container.primary .metadata-container {
        padding: 0 1em;
    }
    .video-container.primary:before,
    .video-container.all:before {
        /* content: 'Latest Episode:'; */
        display: block;
        text-align: left;
        width: 100%;
        margin: 0 auto;
        position: relative;
        left: 10px;
        font-weight: bold;
        color: rgba(0,0,0,0.5);
        text-transform: uppercase;
    }
    .video-container.all:before {
        /* content: 'All Episodes:'; */
        width: 94%;
        left: 0;
    }
    .podcasts-container .wp-block-heading {
        font-size: 2em;
    }
    .wp-block-image.rounded {
        margin: 0;
    }
    ul.ymf-videos li.ymf-video.cell:nth-child(n+5),
    ul.ymf-videos.small-block-grid-2 > li:nth-child(n+5) {
        clear: both;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-wrap: nowrap;
        float: none;
        margin-bottom: 1.5em;
    }
    ul.ymf-videos li.ymf-video.cell:nth-child(n+5) .media-container {
        flex: 0 0 30%;
        max-width: 30%;
    }
    ul.ymf-videos li.ymf-video.cell:nth-child(n+5) .metadata-container {
        flex: 1;
        padding-top: 0.5em;
        padding-left: 1em;
        padding-right: 1em;
        box-sizing: border-box;
        min-width: 0;
        word-wrap: break-word;
    }
}

/* lighbox - maybe */
.wp-lightbox-overlay {
    display: none;
}
.wp-lightbox-overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background: rgba(0,0,0,0.4);
}
.wp-lightbox-overlay.active .lightbox-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
}
.wp-lightbox-overlay.active .lightbox-image-container ~ .lightbox-image-container {
    display: none;
}
