/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* styles.css */
:root{
  --page-bg: #f6e5a0;
  --panel-bg: #f1d87a;
  --text: #1b1b1b;

  /* Header sizing */
  --sticky-h: 150px;
  --sticky-h-sm: 85px;

  /* JS-updated current header height (used for interior sticky header offset) */
  --smart-header-h: var(--sticky-h);

  /* Logo sizing + position */
  --logo-w: 215px;
  --logo-w-sm: 133px;
  --logo-top-offset: 19px;

  /* Interior page */
  --interior-radius: 2% 3%;
  --interior-top-margin: 0px;
  --headingfont: "Slackey", sans-serif;
  --bodyfont: "Galindo", sans-serif;
  --shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;

  /* Landing width cap */
  --landing-max: 1250px;

  /* Colors */
  --yellow:#f2b705;
  --red:#a82401;
  --red: #b43821;
}



/* ===========================
   GLOBAL / TYPOGRAPHY
   =========================== */

body{
  color: var(--text);
  background: url(../img/bgr/hero-1.jpg);
  font-family: var(--bodyfont);
  font-size: 20px;
  background-size: 100vw;
  position: relative;
  background-position: top right;
  background-repeat: no-repeat;
  background-color: #000000;
  overflow-x: hidden;

  /* helps avoid odd short-doc gaps */
  min-height: 100vh;
}

body:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
  height: 97%;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, black), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left bottom, left top, color-stop(10%, black), to(transparent));
  background: -o-linear-gradient(left, black 10%, transparent 50%, transparent), -o-linear-gradient(bottom, black 10%, transparent);
  background: linear-gradient(to right, black 30%, transparent 50%, transparent), linear-gradient(to top, black 10%, transparent);
  background-size: 100vw;
  overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6{
  font-family: var(--headingfont);
}

a
 {
    color: var(--red);
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
}
a:hover{}

.red{color:var(--red);}
.yellow{color:var(--yellow);}
.light-grey{color:#9e9e9e;}


@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 99vw;
    }
}


@media (min-width: 1200px){
  /* Default container stays WIDE (for header + interior pages) */
  .container{max-width: clamp(80vw,1270px,89%);}
}

/* Landing page container is narrower */
.container-landing{
  max-width: var(--landing-max) !important;
}

/* ===========================
   SMART STICKY HEADER
   =========================== */

.smart-sticky{
  position: sticky;
  top: 0;
  z-index: 1030;
  background: unset;
  overflow: visible;
  height: var(--sticky-h);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: height 260ms ease, background 260ms ease, -webkit-box-shadow 260ms ease;
  transition: height 260ms ease, background 260ms ease, -webkit-box-shadow 260ms ease;
  -o-transition: height 260ms ease, box-shadow 260ms ease, background 260ms ease;
  transition: height 260ms ease, box-shadow 260ms ease, background 260ms ease;
  transition: height 260ms ease, box-shadow 260ms ease, background 260ms ease, -webkit-box-shadow 260ms ease;
}

.smart-sticky.is-scrolled{
  height: var(--sticky-h-sm);
  -webkit-box-shadow: 0 8px 20px rgba(0,0,0,0.10);
          box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  background: rgba(246, 229, 160, 0.98);
  background: var(--red);
}

.main-nav{ width: 100%; }

/* Menu closer to logo */
.nav-col-left .nav{ -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; }
.nav-col-right .nav{ -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; }
.nav-col-left .nav-link{ padding-right: .55rem; }
.nav-col-right .nav-link{ padding-left: .55rem; }

.nav-link{
  font-weight: 500;
  color: white !important;
  font-size: 1.45rem;
  padding: .55rem 1.0rem;
  font-family: var(--headingfont);
  border-radius: 10px;
  -webkit-transition: 120ms ease;
  -o-transition: 120ms ease;
  transition: 120ms ease;
  text-shadow: 4px 2px #00000082;
}
.nav-link:hover{ text-decoration: underline; }

.nav-link.is-active{
  /* text-decoration: underline; */
  background: rgba(0,0,0,0.08);
  /* color: var(--yellow)!important; */
  background: var(--yellow);
}

/* Logo link */
.brand-link{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.brand-wrap{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brand-logo{
  width: var(--logo-w);
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform: translateY(26px);
      -ms-transform: translateY(26px);
          transform: translateY(26px);
  position: relative;
  top: var(--logo-top-offset);
  -webkit-transition: width 260ms ease, top 260ms ease, opacity 220ms ease, -webkit-transform 260ms ease, -webkit-filter 220ms ease;
  transition: width 260ms ease, top 260ms ease, opacity 220ms ease, -webkit-transform 260ms ease, -webkit-filter 220ms ease;
  -o-transition: width 260ms ease, transform 260ms ease, top 260ms ease, opacity 220ms ease, filter 220ms ease;
  transition: width 260ms ease, transform 260ms ease, top 260ms ease, opacity 220ms ease, filter 220ms ease;
  transition: width 260ms ease, transform 260ms ease, top 260ms ease, opacity 220ms ease, filter 220ms ease, -webkit-transform 260ms ease, -webkit-filter 220ms ease;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.brand-logo.is-logo-fading{
  opacity: 0;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

.smart-sticky.is-scrolled .brand-logo{
  width: var(--logo-w-sm);
  top: 0;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* ===========================
   LANDING PAGE
   =========================== */

.hero{ position: relative; background: unset; }
.hero-body{ position: relative; padding: 26px 0 90px; }

/* Social rail */
.social-rail{
  position: absolute;
  right: 18px;
  top: calc(var(--sticky-h) + 140px);
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  -webkit-transition: top 260ms ease;
  -o-transition: top 260ms ease;
  transition: top 260ms ease;
  position: fixed;
  /* top: 15px; */
  z-index: 111;
}
.smart-sticky.is-scrolled ~ .hero-body .social-rail{
  top: calc(var(--sticky-h-sm) + 140px);
}
.social-btn{
  width: 53px;
  height: 53px;
  border-radius: 42% 43px 53% 34px;
  background: var(--yellow);
  color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 10px 18px rgba(0,0,0,0.12);
          box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  text-decoration: none;
  z-index: 3;
  -webkit-transition:.3s ease;
  -o-transition:.3s ease;
  transition:.3s ease;
}

.bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
  font-weight: 400 !important;
  font-size: 1.2rem;
  vertical-align: middle;
  -webkit-transition:.2s ease;
  -o-transition:.2s ease;
  transition:.2s ease;
}

.social-btn:hover{border-radius: 42% 43px 33% 44px;}
.social-btn:hover .bi::before{font-size:1.5rem;}

.social-btn i{font-size: 1.7rem;}

/* Hero left */

.landing-hero {
  padding-top: 10rem;
  height: 50vh;
  padding-left: 2rem;
}

.landing-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -.6px;
  text-shadow: 0 6px 16px rgba(0,0,0,0.10);
  font-size: clamp(44px, 5vw, 78px);
}

.landing-subtitle{
  margin: 0 0 34px;
  font-size: 1.15rem;
  max-width: 50ch;
}

/* wrapper */
.landing-bubble {
  position: relative;
  display: inline-block;
}

/* badge */
.landing-badge {
  position: absolute;
  top: -53px;
  left: 0px;
  background: black;
  color: var(--yellow);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 8px 8px;
  border-radius: 7% 13% 8% 13%;
  border: 0px solid rgba(255,255,255,.8);
  z-index: 2;
  letter-spacing: 0.5px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* make sure subtitle sits underneath */
.landing-subtitle {
  position: relative;
  z-index: 1;
}

p.landing-subtitle {
  display: inline;
  outline: rgba(255,255,255,1) dashed 4px;
  outline-offset: 1.3rem;
  border-radius: 1% 1.9rem 11%;
  color:white;
  font-size: 1.75rem;
  font-weight: 500!important;
  position:relative;
  letter-spacing: .5px;
  line-height: 1.25;
}

p.landing-subtitle:before {
  content: '';
  left: 14px;
  bottom: -46px;
  position: absolute;
  border-top: 11px solid rgba(255,255,255,1);
  border-left: 4px solid transparent;
  border-right: 15px solid transparent;
  opacity: 0;
}

.landing-bullets{
  margin: 0 0 18px;
  padding-left: 1.2rem;
  font-size: 1.05rem;
}
.landing-bullets li{ margin: 6px 0; }

.landing-cta{
  margin-top:50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  width: min(500px, 100%);
}

/* Buttons */
.btn{
  border-radius: 15% 1.2em 23%;
  font-weight: 500;
  letter-spacing: -.2px;
  padding: 16px 21px;
  border: 2px solid rgba(0,0,0,0.10);
}

.btn:hover { border: 2px solid; }

.btn-cta-primary{
  background: var(--yellow);
  color: #111;
  -webkit-box-shadow: 0 14px 22px rgba(0,0,0,0.12);
          box-shadow: 0 14px 22px rgba(0,0,0,0.12);
}
.btn-cta-primary:hover{-webkit-filter: brightness(0.97);filter: brightness(0.97);background: black;color: white;}

.btn-cta-secondary{
  background: rgb(255 255 255 / 94%);
  color: black;
  border-color: rgba(255,255,255,0.12);
}
.btn-cta-secondary:hover{-webkit-filter: brightness(0.98);filter: brightness(0.98);background: black;color: white;}

.btn-sm{
  padding: 10px 14px;
  border-radius: 12px;
}

.upcoming .btn {
    /* background: #b7b7b7; */
    /* color: #414141 !important; */
    /* pointer-events: none; */
}

/* Hero right art */
.hero-art{ position: relative; }
.hero-art-shade{}

/* Sections */
.section-block{
  padding-top: 85px;

  -webkit-animation: section-zoom linear both;

          animation: section-zoom linear both;
  animation-timeline: view();
  animation-range: entry 21% cover 30%;
}

@-webkit-keyframes section-zoom {
  from { -webkit-transform: scale(0.42); transform: scale(0.42); opacity: 0.2; }
  to   { -webkit-transform: scale(1); transform: scale(1);    opacity: 1; }
}

@keyframes section-zoom {
  from { -webkit-transform: scale(0.42); transform: scale(0.42); opacity: 0.2; }
  to   { -webkit-transform: scale(1); transform: scale(1);    opacity: 1; }
}

.section-head,
.episodes-head{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 2px;
}

.section-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -.4px;
  font-size: 2.8rem;
  color: var(--yellow);
}

/* pills + tabs */
.pill{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  font-weight: 900;
  font-size: .9rem;
  border: 2px solid rgba(0,0,0,0.10);
}

.pill-newest{ background: #f2b705; color: #111; }
.pill-new{ background: #f2b705; color: #111; height: 26px; font-size: .85rem; }

.tab{
  font-weight: 900;
  font-size: 1rem;
  opacity: .85;
}

/* ===========================
   FEATURE CARD (NEW EPISODE)
   =========================== */

.feature-card{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
  border-radius: 2vw 15% 30px 7%;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  overflow: hidden;
  padding: 35px;
  border: 2px solid rgba(0,0,0,0.10);
}

.feature-card-bg{
  background-image: var(--feature-bg);
  background-size: cover;
  background-position: center;
}

.feature-overlay{
  position: absolute;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(rgba(255,255,255,0.92)),
    color-stop(55%, rgba(255,255,255,0.95)),
    to(rgba(255,255,255,0.92))
  );
  background: -o-linear-gradient(
    left,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.95) 55%,
    rgba(255,255,255,0.92) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.95) 55%,
    rgba(255,255,255,0.92) 100%
  );
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}

.feature-body,
.feature-action{
  position: relative;
  z-index: 1;
}

.feature-body{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 2px;
}

.feature-episode{font-weight: 500;opacity: .9;font-family: var(--bodyfont);font-size: 1.1rem;}
.feature-title{
  margin: 4px 0 8px;
  font-weight: 900;
  font-size: 2.1rem;
}
.feature-desc{
  margin: 0 0 12px;
  opacity: .95;
  font-size: 1.3rem;
}

.feature-meta{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.meta-dot{font-weight: 400;opacity: .9;font-size: .85rem;color: #7b7b7b;}

.feature-action{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 6px;
}

/* ===========================
   EPISODE CARDS
   =========================== */

/*homepage - latest episodes*/
.latest-episodes .episode:nth-child(1),
.latest-episodes .episode:nth-child(4),
.latest-episodes .episode:nth-child(5)  {
    rotate: 3deg;
}

.latest-episodes .episode:nth-child(2),
.latest-episodes .episode:nth-child(3),
.latest-episodes .episode:nth-child(6)  {
    rotate: -1deg;
}


#episodesGrid > .col-12:nth-child(odd) .ep-card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  rotate:-1deg;
}

#episodesGrid > .col-12:nth-child(even) .ep-card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  rotate:.5deg;
}

#episodesGrid > .col-12:nth-child(even) .ep-thumb{
-webkit-clip-path: ellipse(68% 282% at 78% 25%);
        clip-path: ellipse(68% 282% at 78% 25%);
}

#episodesGrid > .col-12:nth-child(odd) .ep-card{}

.ep-card{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 15px 12% 9% 3vw;
  overflow: hidden;
  background: rgba(255,255,255);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  cursor: pointer;
  rotate: -.5deg;
  -webkit-transition: -webkit-transform 140ms ease, -webkit-box-shadow 140ms ease;
  transition: -webkit-transform 140ms ease, -webkit-box-shadow 140ms ease;
  -o-transition: transform 140ms ease, box-shadow 140ms ease;
  transition: transform 140ms ease, box-shadow 140ms ease;
  transition: transform 140ms ease, box-shadow 140ms ease, -webkit-transform 140ms ease, -webkit-box-shadow 140ms ease;
  -webkit-animation: section-zoom linear both;
          animation: section-zoom linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 40%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}



.ep-card.upcoming {
    pointer-events: auto;
    background: #9c9c9c;
}

.ep-card:hover{
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.ep-thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  height: 350px;
  position: relative;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  overflow: hidden;
  -webkit-clip-path: ellipse(51% 183% at 47% 22%);
          clip-path: ellipse(51% 183% at 47% 22%);
}

.ep-card:hover .ep-thumb {
  -webkit-clip-path: ellipse(50% 193% at 47% 22%);
          clip-path: ellipse(50% 193% at 47% 22%);
}

.ep-thumb img{
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition:.3s ease;
  -o-transition:.3s ease;
  transition:.3s ease;
}

.ep-card:hover .ep-thumb img{scale: 110%;}

/* ===========================
   FEATURE (NEW EPISODE) uses EP-CARD layout
   =========================== */

.feature-ep{
  /* border: 2px solid rgba(255,255,255,0.10); */
}

.feature-ep .ep-thumb{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  height: 380px;
}

.feature-ep .ep-thumb img{ height: 400px; }
.feature-ep .ep-title{ font-size: 2.05rem; }
.feature-ep .ep-desc{ font-size: 1.15rem; }

@media (max-width: 992px){
  .feature-ep{ -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
  .feature-ep .ep-thumb{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    height: 320px;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .feature-ep .ep-thumb img{ height: 340px; }
  .feature-ep:hover .ep-thumb img{ height: 420px; }
}

.ep-body{padding: 19px 19px 19px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;rotate: 1.5deg;}
.ep-episode{font-weight: 500;opacity: .9;font-family: var(--bodyfont);font-size: 1.1rem;}
.ep-title{margin: 6px 0 8px;font-weight: 900;font-size: 1.3rem;color: var(--red);}
.upcoming .ep-title{color:#414141 !important}

.ep-desc{ margin: 0 0 12px; opacity: .95; font-size: 1.05rem; }

.ep-foot{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ep-meta{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* ===========================
   COMING SOON (UPCOMING EPISODES)
   =========================== */

.coming-card{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
  border-radius: 12% 61px 30% 10%;
  overflow: hidden;
  background: rgb(255 255 255 / 61%);
  border: 0px solid rgba(0,0,0,0.10);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.coming-track .coming-slide:nth-child(even) .coming-card{
  border-radius: 4% 111px 11% 20%!important;
}

.coming-thumb{
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 210px;
          flex: 0 0 210px;
  overflow: hidden;
}

.coming-thumb img{
  width: 100%;
  height: 100%;
  min-height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.coming-body{
  padding: 0 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.coming-episode{font-weight: 500;opacity: .9;font-family: var(--bodyfont);font-size: 1.1rem;}
.coming-title{margin: 6px 0 8px;font-weight: 800;font-size: 1.25rem;color: black;}
.coming-desc{ margin: 0; opacity: .95; font-size: 1.05rem; }
.coming-foot {
    margin-top: 9px;
}

/* ===========================
   COMING SOON SLIDER
   =========================== */

.coming-slider{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.coming-viewport{
  overflow: hidden;
  width: 100%;
}

.coming-track{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.coming-slide{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - (1rem * 3)) / 4);
          flex: 0 0 calc((100% - (1rem * 3)) / 4);
}

.coming-slide {
    rotate: 1.5deg;
}
.coming-slide:nth-child(odd) {
    rotate: -2.5deg;
}



@media (max-width: 992px){
  .coming-slide{ -webkit-box-flex: 0; -ms-flex: 0 0 calc((100% - (1rem * 1)) / 2); flex: 0 0 calc((100% - (1rem * 1)) / 2); }
}

@media (max-width: 576px){
  .coming-slide{ -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; }
}

/* arrows */
.coming-arrow{
  border: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  -webkit-box-shadow: 0 10px 18px rgba(0,0,0,0.12);
          box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: opacity 120ms ease, -webkit-transform 120ms ease, -webkit-filter 120ms ease;
  transition: opacity 120ms ease, -webkit-transform 120ms ease, -webkit-filter 120ms ease;
  -o-transition: transform 120ms ease, filter 120ms ease, opacity 120ms ease;
  transition: transform 120ms ease, filter 120ms ease, opacity 120ms ease;
  transition: transform 120ms ease, filter 120ms ease, opacity 120ms ease, -webkit-transform 120ms ease, -webkit-filter 120ms ease;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: absolute;
  z-index: 1;
}

.coming-prev {left: -28px;}
.coming-next {right: -28px;}

.coming-arrow i{ font-size: 1.4rem; color: #111; }
.coming-arrow:hover{ -webkit-transform: scale(1.06); -ms-transform: scale(1.06); transform: scale(1.06); -webkit-filter: brightness(0.98); filter: brightness(0.98); }

.coming-arrow:disabled{
  opacity: 0.35;
  cursor: default;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

/* dots */
.coming-dots{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.coming-dot{
  width: 23px;
  height: 23px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  -webkit-transition: opacity 120ms ease, background 120ms ease, -webkit-transform 120ms ease;
  transition: opacity 120ms ease, background 120ms ease, -webkit-transform 120ms ease;
  -o-transition: transform 120ms ease, opacity 120ms ease, background 120ms ease;
  transition: transform 120ms ease, opacity 120ms ease, background 120ms ease;
  transition: transform 120ms ease, opacity 120ms ease, background 120ms ease, -webkit-transform 120ms ease;
}

.coming-dot:hover{ -webkit-transform: scale(1.15); -ms-transform: scale(1.15); transform: scale(1.15); }

.coming-dot.is-active{
  background: rgba(255,255,255,0.95);
}

@media (max-width: 576px){
  .coming-card{ -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
  .coming-thumb{ width: 100%; -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
  .coming-body{ padding: 14px; }
}



/* ===========================
   FOLLOW US (JUMBO) section in homepage
   =========================== */
#followUs {
    -webkit-transition:.2s ease;
    -o-transition:.2s ease;
    transition:.2s ease;
}
#followUs:hover {
    scale: 1.1;
}

.follow-jumbo{padding-top: 107px;padding-bottom: 5px;}

.follow-card{
  background: var(--yellow);
  border-radius: 14% 12% 17% 6%;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  position: relative;
  padding: 34px 34px;
  z-index:1;
  rotate: 1deg;
}

.follow-grid{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: .7fr 16px 1.15fr;
  grid-template-columns: .7fr 1.15fr;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  rotate: -1deg;
}

.follow-left{ z-index: 1; }

.follow-kicker{
  font-family: var(--headingfont);
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 6px;
}

.follow-title{
  font-family: var(--headingfont);
  font-size: clamp(44px, 4.2vw, 62px);
  line-height: 0.95;
  color: #111;
  margin-bottom: 41px;
}

.follow-icons{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.follow-icon{
  width: 64px;
  height: 64px;
  border-radius: 42% 43px 53% 34px;
  /* background: rgb(255 255 255 / 19%); */
  color: #111;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: .18s ease;
  -o-transition: .18s ease;
  transition: .18s ease;
  border: 2px solid black;
}

.follow-icon:hover {
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
    border-radius: 42% 43px 33% 44px;
    background: black;
    color: var(--yellow);
}

.follow-icon .bi::before{
  font-size: 1.75rem;
}

/* RIGHT side: layered PNGs */
.follow-right{
  position: relative;
  min-height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index:5;
}

.follow-characters{
  width: min(373px, 100%);
  height: auto;
  display: block;
  margin-left: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  pointer-events: none;
  left: 205px;
  top: -83px;
}

.follow-bubble,
.follow-characters{
  position: absolute;
  z-index: 10;  /* ensure they float above everything */
}

.follow-bubble{
  position: absolute;
  width: inherit;
  height: auto;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18));
          filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18));
}


.follow-bubble-1{
  top: -71px;
  left: -14px;
}

.follow-bubble-2{
  right: -93px;
  top: 67px;
}

/* If your reveal system uses --delay inline, ensure animate.css respects it */
.reveal.animate__animated{
  -webkit-animation-delay: var(--delay, 0ms);
          animation-delay: var(--delay, 0ms);
}

/* ===== Double pulse every 5s (total pulse window = 0.5s) ===== */

@-webkit-keyframes followBubblePulseDouble {
  0%   { -webkit-transform: scale(1); transform: scale(1); }
  
  /* First pulse */
  3%   { -webkit-transform: scale(1.08); transform: scale(1.08); }
  6%   { -webkit-transform: scale(1); transform: scale(1); }

  /* Second pulse */
  9%   { -webkit-transform: scale(1.08); transform: scale(1.08); }
  12%  { -webkit-transform: scale(1); transform: scale(1); }

  /* Rest of 5s cycle idle */
  100% { -webkit-transform: scale(1); transform: scale(1); }
}

@keyframes followBubblePulseDouble {
  0%   { -webkit-transform: scale(1); transform: scale(1); }
  
  /* First pulse */
  3%   { -webkit-transform: scale(1.08); transform: scale(1.08); }
  6%   { -webkit-transform: scale(1); transform: scale(1); }

  /* Second pulse */
  9%   { -webkit-transform: scale(1.08); transform: scale(1.08); }
  12%  { -webkit-transform: scale(1); transform: scale(1); }

  /* Rest of 5s cycle idle */
  100% { -webkit-transform: scale(1); transform: scale(1); }
}

/* Bubble 1 */
.follow-bubble-1 {
  -webkit-animation: followBubblePulseDouble 5s ease-in-out infinite;
          animation: followBubblePulseDouble 5s ease-in-out infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  will-change: transform;
}

/* Bubble 2 (offset by 2.5s for alternating rhythm) */
.follow-bubble-2 {
  -webkit-animation: followBubblePulseDouble 5s ease-in-out 2.5s infinite;
          animation: followBubblePulseDouble 5s ease-in-out 2.5s infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  will-change: transform;
}

/* Reduced motion safety */
@media (prefers-reduced-motion: reduce){
  .follow-bubble-1.is-visible,
  .follow-bubble-2.is-visible{
    -webkit-animation: none !important;
            animation: none !important;
  }
}


/* ===== Responsive ===== */

@media (max-width: 992px){
  .follow-card{ padding: 26px 22px; }
  .follow-grid{
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .follow-right{
    min-height: 305px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 70px;
  }
  .follow-characters{
    width: min(366px, 100%);
    margin: 11px auto;
  }
  .follow-bubble-1{
    top: -51px;
    left: -35px;
  }
  .follow-bubble-2{
    right: -48px;
    top: 70px;
  }
}

@media (max-width: 576px){
  .follow-card{ padding: 20px 16px; }
  .follow-kicker{ font-size: 1.35rem; }
  .follow-title{ margin-bottom: 12px; }

  .follow-icon{
    width: 56px;
    height: 56px;
  }
  .follow-icon .bi::before{ font-size: 1.55rem; }

  .follow-right{
    min-height: 225px;
    margin-top: 50px;
  }

   .follow-characters{
    width: min(224px, 75%);
    left: 50px;
    top: -7px;
  }

  /* bubbles smaller on mobile */
  .follow-bubble{
    width: min(210px, 54%);
  }
  .follow-bubble-2{
    top: 89px;
  }
}




/* ===========================
   TESTIMONIALS in homepage
   =========================== */

.testimonial{-webkit-transition:.2s ease;-o-transition:.2s ease;transition:.2s ease;}

.testimonial:hover {
    rotate: 2deg!important;
}

.testimonial >div {
    background: #80808017;
    color: #8c8c8c;
}

.testimonial >div {
    background: #212121;
    border-radius: 7% 25% 3vw 19px;
    color: #b5b5b5;
    font-weight:100;
    border: 2px solid var(--yellow);
}

#interiorPage .testimonial >div {
    background: white;
    border-radius: 7% 25% 6vw 35px;
    color: #161616;
    font-weight: 100;
    border: 3px solid var(--yellow);
}

.testimonial:nth-child(odd) > div {
    border-radius: 11% 8% 6% 24%;
}

.testimonial:hover {
    rotate: 1deg;
}
.testimonial:nth-child(odd) {rotate: 1deg;}
.testimonial:nth-child(even) {rotate: -3deg;}

.testimonials .bi-quote{position:relative;width:50px;}
.testimonials .bi-quote::before{position:absolute;left: -6px;font-size: 1rem;color: var(--yellow);}

.commentator {
    color: var(--yellow);
    font-size: 1rem;
    padding-top:10px;
}

#interiorPage .commentator {
    color: #1f1f1f;
    font-size: 1rem;
}

.commentator span {
    display: block;
    opacity: .8;
    font-size: .85rem;
    color: white;
}

#interiorPage .commentator span {
    opacity: 1;
    font-size: .85rem;
    color: grey;
}


/* ===========================
   Legal
   =========================== */

.legal{
 margin-top: 105px!important;
 padding-top:unset;
 padding:unset;
 outline: rgba(255, 255, 255, .2) dashed 3px;
 outline-offset: 3.3rem;
 border-radius: 1% 1.9rem 11%;
 font-weight: 500 !important;
 position: relative;
}

.legal:before{
 content: '';
    left: 14px;
    bottom: -46px;
    position: absolute;
    border-top: 11px solid rgba(255, 255, 255, 1);
    border-left: 4px solid transparent;
    border-right: 15px solid transparent;
    opacity: 0;
}

.legal h4 {color: #a7a7a7;}
.legal p{font-size:1rem;color:grey}

/* ===========================
   INTERIOR PAGE (FIXED OVERLAY) - BUGFIX: NO FIRST-OPEN GAP
   =========================== */

.interior-page{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--smart-header-h);
  width: 100%;
  height: calc(100vh - var(--smart-header-h));
  overflow-y: auto;
  overflow-x: hidden;

  /* No top padding -> no visible gap strip */
  padding-top: 0;
  padding-bottom: 40px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);

  -webkit-transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;

  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;

  -o-transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;

  z-index: 1020; /* below header (1030), above landing */
}

body.is-panel-open .interior-page{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);

  -webkit-transition:
    opacity 0.3s ease,
    visibility 0s linear 0s,
    -webkit-transform 0.3s ease;

  transition:
    opacity 0.3s ease,
    visibility 0s linear 0s,
    -webkit-transform 0.3s ease;

  -o-transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0s;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0s;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0s,
    -webkit-transform 0.3s ease;
}

body.is-panel-closing .interior-page{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);

  -webkit-transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;

  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;

  -o-transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;
}

body.is-panel-open #landingRoot{ display: none; }

.interior-shell{
  margin-top: 0;
  background: #fff;
  border-radius: var(--interior-radius);
  -webkit-box-shadow: 0 12px 30px rgba(0,0,0,0.18);
          box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  overflow: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* interior header stays visible while interior scrolls */
.interior-header{
  padding: 25px 3vw;
  background: #fff;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 1025;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
}

.interior-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -.1px;
  font-size: 2.3rem;
  text-transform: none;
  text-shadow: none;
  color: #111;

  -webkit-transform-origin: left center;

      -ms-transform-origin: left center;

          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.interior-header.is-compact .interior-title{
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}

/* Keep header height stable to avoid scroll flicker */
.interior-header{
  padding: 9px 3vw; /* keep */
}

/* Compact: NO padding change, only visual compression */
.interior-header.is-compact{
  /* optional: slightly dim the header instead of shrinking it */
  -webkit-box-shadow: rgba(50, 50, 93, 0.45) 0px 50px 100px -20px, rgba(0, 0, 0, 0.5) 0px 30px 60px -30px;
          box-shadow: rgba(50, 50, 93, 0.45) 0px 50px 100px -20px, rgba(0, 0, 0, 0.5) 0px 30px 60px -30px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

/* Title already uses transform scale, which is safe (no layout shift) */
.interior-header.is-compact .interior-title{
  -webkit-transform: scale(0.68);
  -ms-transform: scale(0.68);
  transform: scale(0.68); /* tweak as you like */
}

.interior-close{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: #111;
  width: 59px;
  height: 59px;
  line-height: 1;
  font-weight: 900;
  font-size: 5rem;
  opacity: .9;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  margin-top: 7px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.interior-close:hover{opacity: 1;-webkit-transform: scale(1.08);-ms-transform: scale(1.08);transform: scale(1.15);color: var(--red);}

.interior-body{padding: 1vw 3vw 3vw;position: relative;}
.interior-body p{line-height: 1.45;font-size: 1.15rem;font-weight: 300;}

.prologue{margin:1rem 0 2rem;display: flex;justify-content: space-between;}
.intro{}
.interior-body .intro > p:first-of-type::first-letter {
  font-size: 4rem;
  padding: 8px 13px 8px;
  padding-bottom:unset;
  margin-right: 15px;
  margin-bottom:8px;
  background-color: var(--red);
  color: white;
  border-radius: 4px;
  float: left;
  line-height: 110%;
  border-radius:5% 1.5vw 15px 25px;

}

/* ===========================
   Back to Episodes button in interior (interior)
   =========================== */
.back {
    position: sticky;
    top: 95px;
    margin-top: 0;
    padding: 6px 15px 3px 25px;
    background: #eeeeee;
    display: inline-block;
    border-radius: 22% 20% 30px;
    margin-bottom: 25px;
    font-size: .85rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.back a{text-decoration:none;color:black;position:relative;display:flex;}
.back a:before{content:"<<";position:absolute;left:-15px;font-size:9px;display:flex;top:2px;}
.back:hover {background:#e1e1e1;}
.back:hover a{text-decoration:underline;color:black;}




/* Right-side Episodes block */
.ep-sidecard{
  background: #e5e0e0;
  border-radius: 7% 13px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,.26); */
  padding: 20px 22px;
  border: 4px dashed #ffffff;
}

.ep-sidecard__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.ep-sidecard__title{
  font-weight: 500;
  font-size:16px;
  letter-spacing:.2px;
  color: #5b5b5b;
}

.ep-sidecard__all{
  font-size: 13px;
  font-weight: 500;
  text-decoration:none;
  opacity: .85;
}
.ep-sidecard__all:hover{ opacity:1; text-decoration:underline; }

/* Sidecard list: 2 columns + scroll max height */
.ep-sidecard__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;

  /* optional: keeps right padding from hiding under scrollbar */
  padding-right: 6px;
}

/* Each item should fill its grid cell */
.ep-sidecard__item{
  margin:0;
}

/* Active item: greyed and non-interactive look */
.ep-sidecard__item.is-active .ep-sidecard__link,
.ep-sidecard__link.is-active{
  background: rgba(0,0,0,.09);
  filter: grayscale(1);
  opacity: .85;
  cursor: default;
  transform: none !important;
}

/* Optional: on very small screens revert to 1 column */
@media (max-width: 420px){
  .ep-sidecard__list{ grid-template-columns: 1fr; }
}

.ep-sidecard__link{
  display:flex;
  gap: 8px;
  text-decoration:none;
  color:inherit;
  padding: 3px 6px 4px 0;
  border-radius: 1px;
  transition:transform .08s ease, background .12s ease;
  align-items: center;
}
.ep-sidecard__link:hover{
  background:rgba(0,0,0,.03);
  transform:translateY(-1px);
}

.ep-sidecard__thumb{
  width: 80px;
  height: 43px;
  object-fit:cover;
  border-radius: 5px;
  border: 0px solid rgba(0,0,0,.08);
  flex:0 0 auto;
}

.ep-sidecard__meta{ min-width:0; }

.ep-sidecard__ep{
  font-weight: 500;
  font-size: 12px;
  opacity: .8;
  line-height:1.1;
}

.ep-sidecard__name{
  font-weight: 500;
  font-size: 14px;
  line-height:1.2;
  margin-top:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Optional: make it sticky on desktop so it stays visible */
@media (min-width: 992px){
  .ep-sidecard{position:sticky;top: 110px;}
}

/* Mobile: turn into full-width block under text */
@media (max-width: 991.98px){
  .ep-sidecard{ margin-top:18px; }
  .ep-sidecard__name{ white-space:normal; }
}



/* ===========================
   Dynamic breadcrumbs (interior)
   =========================== */

.interior-header{
  align-items: flex-start; /* breadcrumbs sit above title */
}

.interior-breadcrumbs .breadcrumb{
  --bs-breadcrumb-divider: "›";
  margin: 0;
  padding: 0;
  font-family: var(--bodyfont);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.95;
}

.interior-breadcrumbs .breadcrumb-item + .breadcrumb-item::before{
  opacity: .55;
}

.interior-breadcrumbs a{
  color: var(--red);
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}

.interior-breadcrumbs .breadcrumb-item.active{
  color: rgba(0,0,0,.62);
}

.interior-header.is-compact .interior-breadcrumbs{
  opacity: .85;
}

@media (max-width: 576px){
  .interior-breadcrumbs .breadcrumb{ font-size: .85rem; }
}



/* ===========================
   INTERIOR PAGE (for episodes)
   =========================== */

#interiorPage .ep-thumb { min-width: 500px; }
#interiorPage .ep-thumb img {
  /* height: auto; */
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  /* width: 500px; */
  height: 354px;
}

#interiorPage .upcoming{/* background: #b7b7b7; */color: #414141 !important;pointer-events: initial;}
#interiorPage .upcoming .ep-title {color:#414141 !important;}

#interiorPage .ep-body{
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}

#interiorPage .ep-title{
  margin: 26px 0 28px;
  font-weight: 600;
  font-size: 2.1rem;
}

#interiorPage .ep-thumb {min-width: 47%;height: unset;}

#interiorPage .ep-body{
  padding: 11px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}

#interiorPage .ep-episode{
  font-weight: 500;
  opacity: 1;
  font-family: var(--bodyfont);
  font-size: 1.2rem;
  padding-top: 17px;
}

#interiorPage .ep-title{
  margin: 0px 0 -5px;
  font-weight: 600;
  font-size: 2.1rem;
  color: #a82401;
  padding: 16px 0px;
  border-radius:15% 30px;
}

#interiorPage .ep-desc{
  margin: 0 0 12px;
  opacity: .95;
  font-size: 1.15rem;
  border-radius:5% 40px;
}

#interiorPage .ep-foot{
}

/* ===========================
   CHARACTERS GRID (NO DISTORTION)
   =========================== */

.modal-grid{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1rem minmax(0, 1fr) 1rem minmax(0, 1fr) 1rem minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 992px){ .modal-grid{ -ms-grid-columns: (minmax(0, 1fr))[2]; grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 576px){ .modal-grid{ -ms-grid-columns: 1fr; grid-template-columns: 1fr; } }

.modal-grid-item{
  background: #fff;
  overflow: hidden;
  text-align: center;
  padding-block: .5rem 2rem 0;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  border: 1px solid transparent;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  /* animation: section-zoom linear both; */
  /* animation-timeline: view(); */
  /* animation-range: entry 20% cover 30%; */
}
.modal-grid-item h3{
  padding-inline: 1rem;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 500;
  color: #ff6619;
  padding-block: 1rem;
  display:block;
}
.modal-grid-item h3 span{
  color:red;
  font-size: 2.1rem;
  display:block;
}
.modal-grid-item:hover{
  -webkit-box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
  border-radius: 255px 35px 225px 15px/15px 225px 15px 256px;
}
.modal-grid-item img{
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display:block;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.modal-grid-item:hover img{ -webkit-transform: translateY(-50px); -ms-transform: translateY(-50px); transform: translateY(-50px); scale: 0.75; }
.modal-grid-item p{
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  font-size: 1.1rem;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  padding-inline: 1rem;
  line-height: 1.3;
  margin-bottom: 0;
  -webkit-transform: rotateX(95deg);
          transform: rotateX(95deg);
}
.modal-grid-item:hover h3{-webkit-transform: translateY(-55px);-ms-transform: translateY(-55px);transform: translateY(-55px);-webkit-transition: .2s ease;-o-transition: .2s ease;transition: .2s ease;}
.modal-grid-item:hover p{
  -webkit-transform: translateY(-55px);
      -ms-transform: translateY(-55px);
          transform: translateY(-55px);
  opacity: 1;
  -webkit-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
  display: block;
}

.modal-grid{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) .5rem minmax(0, 1fr) .5rem minmax(0, 1fr) .5rem minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5rem;
}

@media (max-width: 992px){
  .modal-grid{ -ms-grid-columns: (minmax(0, 1fr))[2]; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 576px){
  .modal-grid{ -ms-grid-columns: 1fr; grid-template-columns: 1fr; }
}

.modal-grid--characters{ -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }

.character-card{
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  border: 2px solid rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 0;
  -webkit-box-shadow: 0 12px 22px rgba(0,0,0,0.10);
          box-shadow: 0 12px 22px rgba(0,0,0,0.10);
  -webkit-transition: -webkit-transform 160ms ease, -webkit-box-shadow 160ms ease;
  transition: -webkit-transform 160ms ease, -webkit-box-shadow 160ms ease;
  -o-transition: transform 160ms ease, box-shadow 160ms ease;
  transition: transform 160ms ease, box-shadow 160ms ease;
  transition: transform 160ms ease, box-shadow 160ms ease, -webkit-transform 160ms ease, -webkit-box-shadow 160ms ease;
}

.character-card:hover{
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 18px 32px rgba(0,0,0,0.14);
          box-shadow: 0 18px 32px rgba(0,0,0,0.14);
}

.character-media{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(0,0,0,0.06);
}

.character-media img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.character-card .grid-content{ padding: 10px 12px 16px; }

.character-card h3{
  margin: 0;
  padding: 10px 6px 6px;
  font-size: 1.35rem;
  line-height: 1.05;
  font-weight: 500;
  color: #ff6619;
  display: block;
}

.character-card h3 span{
  color: red;
  font-size: 2.1rem;
  display: block;
}

.character-card p{
  margin: 0;
  padding: 0 8px;
  font-size: 1.1rem;
  line-height: 1.3;
}


/* ===========================
   About Us
   =========================== */


    .social-icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .ok-card {
     border-radius: 29% 3vw 48% 41%;
      border: 1px solid rgb(124 124 124 / 29%);
 
      /* backdrop-filter: blur(12px); */
      -webkit-box-shadow: 0 18px 40px rgba(0,0,0,.1);
              box-shadow: 0 18px 40px rgba(0,0,0,.1);
      -webkit-transition: all .2s ease;
      -o-transition: all .2s ease;
      transition: all .2s ease;
      padding: 1.5rem;
      height: 100%;
    }

.criterias .col:nth-child(even) .ok-card {
    rotate:2deg
}

.criterias .col:nth-child(odd) .ok-card {
    rotate:-2deg
}

    .ok-card:hover {
      -webkit-transform: translateY(-4px);
          -ms-transform: translateY(-4px);
              transform: translateY(-4px);
      border-color: rgba(255,40,90,.55);
    }

    .ok-label {
      font-size: .8rem;
      /* letter-spacing: .12em; */
      text-transform: uppercase;
      /* color: var(--red); */
    }

    .ok-value {
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--red);
      margin-top: .05rem;
    }

    .ok-bar {
      height: 6px;
      background: rgba(255,255,255,.1);
      border-radius: 999px;
      margin-top: .75rem;
      overflow: hidden;
    }

    .ok-bar-fill {
      height: 100%;
      background: -webkit-gradient(linear,left top, right top,from(var(--yellow)), to(var(--red)));
      background: -o-linear-gradient(left,var(--yellow), var(--red));
      background: linear-gradient(90deg,var(--yellow), var(--red));
      border-radius: 999px;
      -webkit-animation: fill .9s ease;
              animation: fill .9s ease;
    }

    @-webkit-keyframes fill {
      from { width: 0; }
    }

    @keyframes fill {
      from { width: 0; }
    }

    .ok-footer {
      border: 1px dashed rgba(255,255,255,.14);
      border-radius: 999px;
      padding: .6rem .9rem;
      background: rgba(10,10,14,.4);
      display: inline-block;
    }
  



/* ===========================
   Author
   =========================== */
.author-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}



.author-video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
}

.author-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}

.author-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */


@media (max-width: 992px) {
    .author-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}



/* ===========================
   Cookie widget
   =========================== */
.cky-btn {
    border-radius: 8% 14% 16% 14% !important;
}

.cky-btn-revisit-wrapper {

    background: var(--yellow) !important;
    border-radius: 40% 20%;
}

.cky-btn-accept {
    background: var(--yellow)!important;
    color: #fff;
    border: 2px solid var(--yellow)!important;
}

.cky-btn-preferences,
.cky-btn-reject {
    background: none !important;
    border: 2px solid var(--yellow) !important;
}

/* ===========================
   BACK TO TOP
   =========================== */

.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 78px; /* sits above the credit */
  z-index: 2100;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgb(0 0 0 / 54%);
  color: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: opacity 180ms ease, -webkit-transform 180ms ease, -webkit-filter 180ms ease;
  transition: opacity 180ms ease, -webkit-transform 180ms ease, -webkit-filter 180ms ease;
  -o-transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease, -webkit-transform 180ms ease, -webkit-filter 180ms ease;
}

.back-to-top i{ font-size: 1.3rem; }

.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.back-to-top:hover{ -webkit-filter: brightness(1.08); filter: brightness(1.08); }

/* ===========================
   FIXED CREDIT (BOTTOM RIGHT)
   =========================== */

footer {
    font-size: 15px;
    text-align: center;
    color: grey;
  padding:15px;
}

footer p{margin:0;}

.site-credit{
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  border-radius: 2% 9px;
  display: inline-block;
}
.site-credit:hover{
  color: var(--yellow);
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */

@media (max-width: 1182px){
.nav-link {
    font-size: 1.25rem;
}
}

@media (max-width: 992px){
  .social-rail{ display: none; }

  :root{
    --logo-w: 220px;
    --logo-w-sm: 110px;
  }

  .smart-sticky{ height: 96px; }
  .smart-sticky.is-scrolled{ height: 72px; }
  .brand-logo{ -webkit-transform: translateY(18px); -ms-transform: translateY(18px); transform: translateY(18px); }

  .feature-card{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .feature-overlay{
    background: -webkit-gradient(
      linear,
      left top, left bottom,
      from(rgba(255,255,255,0.92)),
      color-stop(55%, rgba(255,255,255,0.78)),
      to(rgba(255,255,255,0.62))
    );
    background: -o-linear-gradient(
      top,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.78) 55%,
      rgba(255,255,255,0.62) 100%
    );
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.78) 55%,
      rgba(255,255,255,0.62) 100%
    );
  }
  .feature-action{ -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; padding: 0 2px 6px; }
}

@media (max-width: 576px){
  :root{
    --logo-w: 180px;
    --logo-w-sm: 96px;
  }
  .back-to-top{ right: 14px; bottom: 74px; }
  .site-credit{ right: 14px; }

  /* ===========================
     MOBILE ONLY FIXES (<=576px)
     =========================== */

  /* 15px safe padding from edges (header + interior) */
  .main-nav,
  .hero-body .container,
  #interiorPage > .container{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Header: clean, predictable layout on small screens */
  .smart-sticky{ height: 72px; }
  .smart-sticky.is-scrolled{ height: 64px; }

  .header-row{ -ms-flex-wrap: nowrap; flex-wrap: nowrap; }
  .nav-col-left,
  .nav-col-right{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  /* Logo: remove vertical offset to prevent overlap */
  .brand-logo{
    top: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  /* Menu items smaller + tighter */
  .nav-link{
    font-size: 1.0rem;
    padding: .35rem .45rem;
    border-radius: 8px;
    line-height: 1.1;
  }


/*Hero image*/
body {
    background-size: 136vw;

}

.landing-hero {
    padding-top: 7rem;
    height: unset;
}

.landing-bubble {
    position: relative;
    display: block;
}

/* Smaller hero text */

.landing-badge {
    position: relative;
    background:none;
    font-weight: 600;
    font-size: 1.4rem;
    display: block;
    padding: 8px 0px;
}

  p.landing-subtitle {
    display: unset;
    outline: none;
    outline-offset: unset;
    border-radius: unset;
    font-size: 1.25rem;
    position: relative;
}


  /* Cards: column flow so image + text fit */
  .ep-card{ -webkit-box-orient: vertical!important; -webkit-box-direction: normal!important; -ms-flex-direction: column!important; flex-direction: column!important; }
  .ep-thumb{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    height: auto;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .ep-thumb img{
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .ep-body{ padding: 14px; }

  /* Reduce title sizes */
  .section-title{ font-size: 1.85rem; }
  .ep-title{ font-size: 1.15rem; }
  .coming-title{ font-size: 1.1rem; }

  /* Interior pages: same padding + non-sticky interior header */
  .interior-header{
    position: static;
    top: auto;
    padding: 16px 15px;
  }
  .interior-header.is-compact.interior-header{ padding: 16px 15px; }
  .interior-title{ font-size: 1.55rem; }
  .interior-header.is-compact .interior-title{ -webkit-transform: none; -ms-transform: none; transform: none; }
  .interior-close{ width: 44px; height: 44px; font-size: 3rem; }
  .interior-body{ padding: 15px; }
  .interior-body p{ font-size: 1.05rem; }

  /* Interior episode cards: remove desktop min-widths */
  #interiorPage .ep-thumb{ min-width: 0; width: 100%; }
  #interiorPage .ep-thumb img{ width: 100%; }
  #interiorPage .ep-body{ padding: 14px; }
  #interiorPage .ep-title{ font-size: 1.35rem; padding: 0; margin: 6px 0 10px; 
  }

  /*back to episodes button*/
  .back {
      position: unset;
  }

  .ep-sidecard__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
  
}

  /* ===========================
     Tablet view FIXES (<=992px)
     =========================== */
/*More Episodes 1 column grid*/
@media (max-width:992px){
  .ep-sidecard__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
}



/* Character slogan (only appears when slogan is set in data/characters.json) */
.character-slogan{
  margin-top: .35rem;
  font-size: .9rem;
  font-weight: 600;
  opacity: .9;
}
