/* TM CMS page */
.home-video-hero{background:var(--ink,#0b0f0d);padding:clamp(18px,3vw,40px) 0 clamp(48px,6vw,96px);border-bottom:2px solid var(--green,#19e783)}
    .home-video-hero .hvh-frame{position:relative;width:70%;margin:0 auto;aspect-ratio:16/9;background:#000;border-radius:16px;overflow:hidden;box-shadow:0 26px 70px rgba(0,0,0,.5)}
    .home-video-hero .hvh-frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}
    .home-video-hero .hvh-frame.hvh-facade{cursor:pointer}
    .home-video-hero .hvh-poster{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
    .home-video-hero .hvh-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:74px;height:52px;border-radius:14px;background:rgba(18,18,18,.72);transition:background .18s;pointer-events:none}
    .home-video-hero .hvh-facade:hover .hvh-play{background:#f00}
    .home-video-hero .hvh-play::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-35%,-50%);border-style:solid;border-width:11px 0 11px 18px;border-color:transparent transparent transparent #fff}
    .home-video-hero .hvh-head{width:70%;margin:clamp(20px,2.4vw,32px) auto 0;text-align:left}
    /* .home-video-hero .hvh-title{font-family:'Montserrat',sans-serif;font-weight:800;text-transform:uppercase;color:#fff;font-size:clamp(26px,3vw,46px);line-height:1.05;letter-spacing:-.01em;margin:0} */
    .home-video-hero .hvh-desc{margin:clamp(12px,1.4vw,18px) 0 0;color:#c9cfca;font-size:clamp(14.5px,1.05vw,17px);line-height:1.8}
    @media(max-width:860px){.home-video-hero .hvh-frame,.home-video-hero .hvh-head{width:100%}}
    @media(max-width:600px){.home-video-hero .hvh-frame{border-radius:12px}}


/* Home-only styles — hero background, hero grid, and the video card.
   Everything else (header, buttons, .sec, .card-grid, .strip-green,
   .comedian, .socials, hero text) comes from global.css. */
.hero-sec{background-image:linear-gradient(rgba(6,12,9,.32),rgba(6,12,9,.55)),url('https://tracedmethod.s3.us-west-2.amazonaws.com/mint/home/background-home-hero-area.jpg');background-size:cover;background-position:center;padding:clamp(44px,5vw,96px) 0}

/* hero-grid: only force two columns on desktop. Below 981px the global
   .hero-grid{grid-template-columns:1fr;row-gap:...} collapse takes over. */
.hero-grid{display:grid;column-gap:clamp(32px,4%,84px);align-items:center}
@media(min-width:981px){.hero-grid{grid-template-columns:1.1fr 1fr}}

/* left: video thumbnail card */
.home-card{position:relative;aspect-ratio:16/9;border-radius:24px;overflow:hidden;background:radial-gradient(130% 130% at 70% 62%,#18271f 0%,#0c120e 58%,#070a08 100%);box-shadow:0 24px 70px rgba(0,0,0,.55);display:flex;align-items:center;}
.home-card::after{content:"";position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(1.5px 1.5px at 80% 38%,rgba(25,231,131,.55),transparent),radial-gradient(1.5px 1.5px at 84% 52%,rgba(25,231,131,.45),transparent),radial-gradient(2px 2px at 76% 64%,rgba(25,231,131,.4),transparent),radial-gradient(1px 1px at 88% 60%,rgba(25,231,131,.5),transparent),radial-gradient(1px 1px at 79% 72%,rgba(25,231,131,.4),transparent)}
.home-card-title{font-family:'Montserrat',sans-serif;font-weight:800;text-transform:uppercase;color:var(--green);line-height:.84;letter-spacing:-.01em}
.home-card-title .l1{display:block;font-size:clamp(24px,2.6vw,46px)}
.home-card-title .l2{display:block;font-size:clamp(40px,5.6vw,98px)}
.home-card-title .l3{display:block;font-size:clamp(26px,3.1vw,56px)}
.home-card-dur{position:absolute;right:clamp(14px,1.4vw,26px);bottom:clamp(12px,1.2vw,22px);color:#fff;font-size:clamp(12px,1vw,15px);font-weight:600;z-index:2}
.home-card img{width:100%;height:100%;object-fit:cover;display:block}

/* On phones, cap the video card so it doesn't dominate the fold */
@media(max-width:980px){.home-card{max-width:560px;margin:0 auto;width:100%}}

/* ===================================================================
   HERO CAROUSEL — 3 static slides (podcast / series / placeholder).
   Nav (arrows) + dots styling mirror the comedians-page carousel. The
   slides are stacked in one grid cell and cross-fade, so the section
   height stays constant (tallest slide) and there's no layout jump.
   =================================================================== */
.hero-carousel{position:relative}
.hero-carousel .hero-track{display:grid}
.hero-carousel .hero-slide{grid-area:1 / 1;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .45s ease,visibility 0s linear .45s}
.hero-carousel .hero-slide.is-active{opacity:1;visibility:visible;pointer-events:auto;transition:opacity .45s ease}

.hero-carousel .hero-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:6;width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;font-size:26px;line-height:1;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.45);color:#fff;transition:background .2s ease}
.hero-carousel .hero-nav:hover{background:rgba(0,0,0,.78)}
.hero-carousel .hero-prev{left:16px}
.hero-carousel .hero-next{right:16px}

.hero-dots{display:flex;gap:10px;justify-content:center;align-items:center;padding:16px 0 4px}
.hero-dots .hero-dot{width:10px;height:10px;border-radius:50%;border:none;padding:0;cursor:pointer;background:rgba(255,255,255,.4);transition:background .2s ease,transform .2s ease}
.hero-dots .hero-dot:hover{background:rgba(255,255,255,.7)}
.hero-dots .hero-dot.active{background:#fff;transform:scale(1.25)}

@media (max-width:640px){
  .hero-carousel .hero-nav{width:36px;height:36px;font-size:22px}
  .hero-carousel .hero-prev{left:6px}
  .hero-carousel .hero-next{right:6px}
}

/* ===================================================================
   HERO — "Watch Trailer" button (card 2) + reusable YouTube modal.
   The .hero-watch row becomes a flex row so the two buttons sit inline.
   =================================================================== */
.hero-watch{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.btn.hero-trailer{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.55);display:inline-flex;align-items:center;gap:8px}
.btn.hero-trailer:hover{border-color:#fff;background:rgba(255,255,255,.08)}
.btn.hero-trailer svg{width:13px;height:13px;fill:currentColor;flex:0 0 auto}

.mint-modal{position:fixed;inset:0;z-index:1000;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.82);padding:24px}
.mint-modal.is-open{display:flex}
.mint-modal__dialog{position:relative;width:min(960px,100%);aspect-ratio:16/9;background:#000;border-radius:12px;box-shadow:0 30px 90px rgba(0,0,0,.6)}
.mint-modal__dialog iframe{position:absolute;inset:0;width:100%;height:100%;border:0;border-radius:12px}
.mint-modal__close{position:absolute;top:-16px;right:-16px;width:40px;height:40px;border-radius:50%;border:none;background:var(--green,#19e783);color:#04140c;font-size:24px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 14px rgba(0,0,0,.5)}
.mint-modal__close:hover{filter:brightness(1.08)}
@media (max-width:640px){.mint-modal__close{top:8px;right:8px}}



/* NEWS GRID component — only what's unique to this component.
   .card-grid, .search-box, .pager, .no-results come from the template (global) CSS. */
.news-grid .cg-grid{row-gap:40px;column-gap:24px}

.news-card{display:block}
.news-card .ccat{margin:0 0 9px}                 /* category sits ABOVE the image */
.news-card .ctitle{
  font-family:'Montserrat',sans-serif;font-size:18px;font-weight:800;
  letter-spacing:.3px;text-transform:uppercase;line-height:1.2;margin:13px 0 9px;color:#fff;
}
.news-card .cdesc{color:var(--dim);font-size:12.5px;line-height:1.55;margin:0}
.news-card .btn{font-size:11px;letter-spacing:1px;padding:9px 18px;margin:15px 0 11px;display:inline-block}
.news-card .cmeta{font-size:11px;color:var(--dimmer);margin-top:0}