/* ==========================================
   AVHANTA DESIGN V1
   VISUAL OVERRIDE ONLY
   ========================================== */

:root{
  --ah-bg:#08090c;
  --ah-panel:#101218;
  --ah-panel-2:#151820;
  --ah-line:rgba(255,255,255,.08);
  --ah-text:#f5f6f8;
  --ah-muted:#8f96a3;
  --ah-accent:#8b5cf6;
  --ah-accent-2:#c084fc;
}

/* ---------- PAGE ---------- */

html,
body{
  background:
    radial-gradient(
      circle at 50% -250px,
      rgba(139,92,246,.15),
      transparent 520px
    ),
    var(--ah-bg) !important;

  color:var(--ah-text);
}

.site-content{
  min-height:70vh;
}

.shell{
  width:min(1780px,calc(100% - 48px)) !important;
  max-width:none !important;
  margin-left:auto !important;
  margin-right:auto !important;
}


/* ---------- HEADER ---------- */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;

  background:rgba(8,9,12,.91) !important;

  border-bottom:
    1px solid var(--ah-line) !important;

  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.header-inner{
  min-height:70px !important;
  gap:20px !important;
}

.brand{
  flex:0 0 auto;
  text-decoration:none !important;
}

.brand-text{
  font-size:27px !important;
  font-weight:950 !important;
  letter-spacing:-1.5px;

  background:
    linear-gradient(
      135deg,
      #fff 10%,
      #c4b5fd 48%,
      #8b5cf6 100%
    );

  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
}

.brand-logo{
  max-height:42px !important;
}

.primary-nav{
  flex:1 1 auto;
}

.compact-menu{
  gap:3px !important;
}

.compact-menu > li > a,
.submenu-toggle{
  border-radius:8px !important;
  padding:9px 11px !important;

  color:#c6cad2 !important;

  font-size:13px !important;
  font-weight:750 !important;

  transition:
    background .15s ease,
    color .15s ease;
}

.compact-menu > li > a:hover,
.submenu-toggle:hover{
  background:rgba(139,92,246,.13) !important;
  color:#fff !important;
}


/* ---------- SEARCH ---------- */

.header-search{
  border:1px solid var(--ah-line) !important;
  border-radius:10px !important;
  overflow:hidden;

  background:#111319 !important;
}

.header-search input{
  background:transparent !important;
  color:#fff !important;
}

.header-search button{
  background:var(--ah-accent) !important;
  color:#fff !important;
  border:0 !important;
}


/* ---------- MAIN LAYOUT ---------- */

.layout{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 250px !important;
  gap:32px !important;
  align-items:start;
}

.home-layout{
  padding-top:30px;
}

.main-column{
  min-width:0;
}


/* ---------- SECTION ---------- */

.home-video-section{
  margin-bottom:44px !important;
}

.section-heading{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;

  margin:0 0 17px !important;
  padding:0 0 12px !important;

  border-bottom:
    1px solid var(--ah-line) !important;
}

.section-heading h2{
  position:relative;

  margin:0 !important;
  padding-left:13px;

  color:#fff !important;

  font-size:21px !important;
  font-weight:900 !important;
  letter-spacing:-.6px;
}

.section-heading h2::before{
  content:"";
  position:absolute;

  left:0;
  top:3px;
  bottom:3px;

  width:4px;

  border-radius:10px;

  background:
    linear-gradient(
      180deg,
      var(--ah-accent-2),
      var(--ah-accent)
    );
}

.section-more{
  display:inline-flex !important;
  align-items:center;
  gap:5px;

  padding:7px 11px;

  border:1px solid var(--ah-line);
  border-radius:8px;

  background:rgba(255,255,255,.025);

  color:#aeb4bf !important;

  font-size:12px !important;
  font-weight:700;

  text-decoration:none !important;
}

.section-more:hover{
  color:#fff !important;
  border-color:rgba(139,92,246,.45);
  background:rgba(139,92,246,.10);
}


/* ==========================================
   VIDEO GRID
   PC = 6
   ========================================== */

.video-grid{
  display:grid !important;

  grid-template-columns:
    repeat(6,minmax(0,1fr)) !important;

  gap:24px 15px !important;
}


/* ---------- VIDEO CARD ---------- */

.video-card{
  min-width:0;

  border:0 !important;
  border-radius:10px !important;

  background:transparent !important;

  overflow:visible !important;

  transition:transform .18s ease;
}

.video-card:hover{
  transform:translateY(-3px);
}

.video-card .thumb{
  position:relative;

  display:block;

  width:100%;

  overflow:hidden;

  border-radius:10px !important;

  background:#111319 !important;

  box-shadow:
    0 8px 24px rgba(0,0,0,.22);

  aspect-ratio:16 / 9;
}

.video-card .thumb::after{
  content:"";

  position:absolute;
  inset:0;

  pointer-events:none;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(0,0,0,.26)
    );
}

.video-card .thumb img{
  display:block;

  width:100% !important;
  height:100% !important;

  object-fit:cover !important;

  transition:
    transform .28s ease,
    filter .28s ease;
}

.video-card:hover .thumb img{
  transform:scale(1.035);
  filter:brightness(.87);
}

.video-card .play{
  z-index:2;

  width:42px !important;
  height:42px !important;

  display:flex !important;
  align-items:center;
  justify-content:center;

  border-radius:50% !important;

  background:
    rgba(139,92,246,.90) !important;

  color:#fff !important;

  font-size:14px !important;

  opacity:0;

  transform:
    translate(-50%,-50%)
    scale(.82) !important;

  transition:
    opacity .18s ease,
    transform .18s ease;
}

.video-card:hover .play{
  opacity:1;

  transform:
    translate(-50%,-50%)
    scale(1) !important;
}


/* ---------- CARD TEXT ---------- */

.video-card .card-body{
  padding:10px 2px 0 !important;
}

.video-card .card-body h2{
  margin:0 0 7px !important;

  font-size:13px !important;
  line-height:1.42 !important;
  font-weight:750 !important;

  letter-spacing:-.25px;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;

  overflow:hidden;
}

.video-card .card-body h2 a{
  color:#e9ebef !important;
  text-decoration:none !important;
}

.video-card:hover .card-body h2 a{
  color:#fff !important;
}

.video-card .card-meta{
  display:flex !important;
  align-items:center;
  justify-content:space-between;

  gap:6px;

  color:var(--ah-muted) !important;

  font-size:10.5px !important;
  line-height:1.4;
}


/* ---------- ARCHIVE ---------- */

.archive-header{
  display:flex !important;
  align-items:flex-end !important;
  justify-content:space-between !important;

  margin:30px 0 22px !important;
  padding:0 0 15px !important;

  border-bottom:
    1px solid var(--ah-line) !important;
}

.archive-header h1{
  margin:0 !important;

  color:#fff !important;

  font-size:25px !important;
  font-weight:900 !important;

  letter-spacing:-1px;
}

.archive-header p{
  margin:0 !important;

  color:var(--ah-muted) !important;

  font-size:12px !important;
}


/* ---------- SIDEBAR ---------- */

.sidebar{
  position:sticky;
  top:94px;

  border:1px solid var(--ah-line) !important;
  border-radius:12px !important;

  background:
    rgba(16,18,24,.78) !important;

  overflow:hidden;
}


/* ---------- PAGINATION ---------- */

.pagination{
  margin:45px 0 !important;
}

.nav-links{
  display:flex;
  justify-content:center;
  gap:7px;
}

.page-numbers{
  min-width:38px;
  height:38px;

  display:inline-flex !important;
  align-items:center;
  justify-content:center;

  padding:0 11px;

  border:1px solid var(--ah-line) !important;
  border-radius:8px !important;

  background:#111319 !important;

  color:#b7bcc5 !important;

  text-decoration:none !important;
}

.page-numbers.current{
  border-color:var(--ah-accent) !important;
  background:var(--ah-accent) !important;
  color:#fff !important;
}


/* ---------- AI ADULT ---------- */

.adult-zzal-grid{
  grid-template-columns:
    repeat(6,minmax(0,1fr)) !important;

  gap:24px 15px !important;
}

.adult-zzal-thumb{
  border-radius:10px !important;
}


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

/* medium desktop */
@media(max-width:1450px){

  .shell{
    width:min(100% - 40px,1400px) !important;
  }

  .layout{
    grid-template-columns:
      minmax(0,1fr) 230px !important;

    gap:25px !important;
  }

  .video-grid{
    grid-template-columns:
      repeat(5,minmax(0,1fr)) !important;
  }

}


/* small desktop */
@media(max-width:1200px){

  .video-grid,
  .adult-zzal-grid{
    grid-template-columns:
      repeat(4,minmax(0,1fr)) !important;
  }

}


/* tablet */
@media(max-width:960px){

  .shell{
    width:calc(100% - 28px) !important;
  }

  .layout{
    display:block !important;
  }

  .sidebar{
    display:none !important;
  }

  .video-grid,
  .adult-zzal-grid{
    grid-template-columns:
      repeat(3,minmax(0,1fr)) !important;
  }

  .home-layout{
    padding-top:22px;
  }

}


/* mobile */
@media(max-width:640px){

  .shell{
    width:calc(100% - 20px) !important;
  }

  .header-inner{
    min-height:58px !important;
  }

  .brand-text{
    font-size:22px !important;
  }

  .home-video-section{
    margin-bottom:34px !important;
  }

  .section-heading{
    margin-bottom:13px !important;
  }

  .section-heading h2{
    font-size:18px !important;
  }

  .video-grid,
  .adult-zzal-grid{
    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;

    gap:20px 9px !important;
  }

  .video-card .thumb{
    border-radius:7px !important;
  }

  .video-card .card-body{
    padding-top:7px !important;
  }

  .video-card .card-body h2{
    font-size:12px !important;
    line-height:1.38 !important;
  }

  .video-card .card-meta{
    font-size:9.5px !important;
  }

  .video-card .play{
    display:none !important;
  }

  .archive-header{
    margin-top:20px !important;
  }

  .archive-header h1{
    font-size:21px !important;
  }

}


/* very small */
@media(max-width:380px){

  .video-grid{
    gap:18px 7px !important;
  }

  .video-card .card-body h2{
    font-size:11.5px !important;
  }

}


/* =================================================
   AVHANTA MOCKUP V2
   PRESENTATION HOME
   ================================================= */

body:has(.ah-home) .banner-area,
body:has(.ah-home) .banner-ads,
body:has(.ah-home) .site-banner,
body:has(.ah-home) .moastream-chat{
  display:none !important;
}

body:has(.ah-home) .site-content{
  padding:0 !important;
  margin:0 !important;
}


/* ---------- BASE ---------- */

.ah-home{
  --bg:#07070a;
  --panel:#0e0e14;
  --panel2:#14141c;
  --line:rgba(255,255,255,.08);
  --muted:#8c8c99;
  --purple:#7c3aed;
  --purple2:#a855f7;
  --pink:#ec4899;

  min-height:100vh;
  overflow:hidden;

  background:
    radial-gradient(
      circle at 70% -150px,
      rgba(124,58,237,.18),
      transparent 500px
    ),
    var(--bg);

  color:#fff;
}

.ah-home *{
  box-sizing:border-box;
}

.ah-home a{
  color:inherit;
}

.ah-wide{
  width:min(1760px,calc(100% - 56px));
  margin-left:auto;
  margin-right:auto;
}


/* ---------- HERO ---------- */

.ah-hero{
  position:relative;
  min-height:540px;
  overflow:hidden;

  border-bottom:1px solid var(--line);

  background:#09090d;
}

.ah-hero-bg{
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(124,58,237,.27),
      transparent 33%
    ),
    radial-gradient(
      circle at 15% 0%,
      rgba(236,72,153,.10),
      transparent 30%
    );
}

.ah-hero-inner{
  position:relative;
  z-index:2;

  min-height:540px;

  display:grid;
  grid-template-columns:.8fr 1.2fr;
  align-items:center;

  gap:70px;
}

.ah-hero-copy{
  padding:70px 0;
}

.ah-hero-label{
  display:inline-flex;

  margin-bottom:22px;
  padding:7px 11px;

  border:1px solid rgba(168,85,247,.35);
  border-radius:6px;

  background:rgba(124,58,237,.10);

  color:#c4b5fd;

  font-size:11px;
  font-weight:900;
  letter-spacing:1.8px;
}

.ah-hero-copy h1{
  max-width:570px;

  margin:0;

  color:#fff;

  font-size:58px;
  line-height:1.08;
  letter-spacing:-3.2px;
  font-weight:950;
}

.ah-hero-copy h1 strong{
  color:#a78bfa;
}

.ah-hero-copy p{
  max-width:480px;

  margin:23px 0 0;

  color:#9999a6;

  font-size:16px;
  line-height:1.7;
}

.ah-hero-actions{
  display:flex;
  gap:10px;

  margin-top:32px;
}

.ah-primary-button,
.ah-secondary-button{
  min-height:45px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:0 20px;

  border-radius:8px;

  font-size:13px;
  font-weight:850;

  text-decoration:none;
}

.ah-primary-button{
  background:#fff;
  color:#09090c !important;
}

.ah-secondary-button{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
}


/* ---------- HERO IMAGES ---------- */

.ah-hero-visual{
  position:relative;

  height:420px;
}

.ah-feature-card{
  position:absolute;

  overflow:hidden;

  border:1px solid rgba(255,255,255,.11);
  border-radius:16px;

  background:#111;

  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.ah-feature-card img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;
}

.ah-feature-main{
  width:68%;
  height:340px;

  top:38px;
  right:12%;
}

.ah-feature-main::after{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      0deg,
      rgba(0,0,0,.82),
      transparent 55%
    );
}

.ah-feature-overlay{
  position:absolute;

  z-index:2;

  left:22px;
  right:22px;
  bottom:20px;

  display:grid;
  gap:6px;
}

.ah-feature-overlay span{
  color:#c4b5fd;

  font-size:10px;
  font-weight:900;
  letter-spacing:1.5px;
}

.ah-feature-overlay strong{
  font-size:22px;
}

.ah-feature-small{
  width:27%;
  height:145px;

  z-index:3;
}

.ah-feature-small.one{
  right:0;
  top:5px;

  transform:rotate(4deg);
}

.ah-feature-small.two{
  left:2%;
  bottom:2px;

  transform:rotate(-4deg);
}


/* ---------- CATEGORY ---------- */

.ah-category-strip{
  position:relative;
  z-index:10;

  border-bottom:1px solid var(--line);

  background:rgba(10,10,14,.96);
}

.ah-category-nav{
  min-height:88px;

  display:grid;
  grid-template-columns:repeat(7,1fr);

  align-items:center;
}

.ah-category-nav a{
  height:88px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:7px;

  border-right:1px solid rgba(255,255,255,.055);

  color:#9696a1;

  text-decoration:none;

  transition:.18s ease;
}

.ah-category-nav a:first-child{
  border-left:1px solid rgba(255,255,255,.055);
}

.ah-category-nav a:hover,
.ah-category-nav a.active{
  background:
    linear-gradient(
      180deg,
      rgba(124,58,237,.15),
      rgba(124,58,237,.03)
    );

  color:#fff;
}

.ah-category-nav b{
  color:#a78bfa;

  font-size:12px;
  font-weight:950;
}

.ah-category-nav span{
  font-size:12px;
  font-weight:750;
}


/* ---------- CONTENT ---------- */

.ah-content{
  padding-top:36px;
  padding-bottom:70px;
}


/* ---------- PROMO ---------- */

.ah-promo-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:14px;

  margin-bottom:52px;
}

.ah-promo{
  min-height:128px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:25px 28px;

  overflow:hidden;

  border:1px solid var(--line);
  border-radius:14px;

  position:relative;
}

.ah-promo::after{
  content:"";

  position:absolute;

  width:170px;
  height:170px;

  right:-45px;
  top:-60px;

  border-radius:50%;

  background:rgba(255,255,255,.06);
}

.ah-promo.purple{
  background:
    linear-gradient(
      135deg,
      #351b69,
      #17121f
    );
}

.ah-promo.dark{
  background:
    linear-gradient(
      135deg,
      #171821,
      #0d0e13
    );
}

.ah-promo.pink{
  background:
    linear-gradient(
      135deg,
      #5a183c,
      #1c1018
    );
}

.ah-promo > div{
  display:grid;
  gap:5px;
}

.ah-promo small{
  color:rgba(255,255,255,.58);

  font-size:9px;
  font-weight:900;
  letter-spacing:1.4px;
}

.ah-promo strong{
  font-size:18px;
}

.ah-promo span{
  color:rgba(255,255,255,.56);

  font-size:11px;
}

.ah-promo > b{
  position:relative;
  z-index:2;

  color:rgba(255,255,255,.17);

  font-size:38px;
  font-weight:950;
}


/* ---------- SECTIONS ---------- */

.ah-section{
  margin-bottom:62px;
  scroll-margin-top:20px;
}

.ah-section-head{
  min-height:65px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:19px;
  padding-bottom:15px;

  border-bottom:1px solid var(--line);
}

.ah-title-group{
  display:flex;
  align-items:center;

  gap:13px;
}

.ah-section-badge{
  min-width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:10px;

  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #a855f7
    );

  color:#fff;

  font-size:10px;
  font-weight:950;
}

.ah-title-group h2{
  margin:0 0 4px;

  color:#fff;

  font-size:21px;
  font-weight:900;
  letter-spacing:-.6px;
}

.ah-title-group p{
  margin:0;

  color:#777783;

  font-size:11px;
}

.ah-view-all{
  display:flex;
  align-items:center;

  gap:9px;

  color:#8c8c97 !important;

  font-size:11px;
  font-weight:700;

  text-decoration:none;
}

.ah-view-all span{
  width:29px;
  height:29px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid var(--line);
  border-radius:50%;
}


/* ---------- 6 COLUMN GRID ---------- */

.ah-video-grid{
  display:grid;

  grid-template-columns:
    repeat(6,minmax(0,1fr));

  gap:25px 14px;
}


/* ---------- CARDS ---------- */

.ah-card{
  min-width:0;
}

.ah-thumb{
  position:relative;

  display:block;

  width:100%;
  aspect-ratio:16 / 9;

  overflow:hidden;

  border-radius:10px;

  background:#111;

  text-decoration:none;
}

.ah-thumb::after{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      0deg,
      rgba(0,0,0,.48),
      transparent 45%
    );

  pointer-events:none;
}

.ah-thumb img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transition:
    transform .25s ease,
    filter .25s ease;
}

.ah-card:hover .ah-thumb img{
  transform:scale(1.045);
  filter:brightness(.75);
}

.ah-quality,
.ah-new{
  position:absolute;
  z-index:3;

  top:8px;

  min-height:21px;

  display:flex;
  align-items:center;

  padding:0 7px;

  border-radius:5px;

  font-size:9px;
  font-weight:900;
}

.ah-quality{
  left:8px;

  background:rgba(0,0,0,.76);
  color:#fff;
}

.ah-new{
  right:8px;

  background:#7c3aed;
  color:#fff;
}

.ah-duration{
  position:absolute;

  z-index:3;

  right:8px;
  bottom:7px;

  padding:3px 5px;

  border-radius:4px;

  background:rgba(0,0,0,.75);

  color:#fff;

  font-size:9px;
  font-weight:750;
}

.ah-card-play{
  position:absolute;

  z-index:4;

  left:50%;
  top:50%;

  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:rgba(124,58,237,.93);

  color:#fff;

  font-size:13px;

  opacity:0;

  transform:
    translate(-50%,-50%)
    scale(.75);

  transition:.2s ease;
}

.ah-card:hover .ah-card-play{
  opacity:1;

  transform:
    translate(-50%,-50%)
    scale(1);
}

.ah-card-info{
  padding:10px 2px 0;
}

.ah-card-info h3{
  height:38px;

  margin:0 0 7px;

  overflow:hidden;

  font-size:13px;
  line-height:1.45;
  font-weight:750;

  letter-spacing:-.25px;
}

.ah-card-info h3 a{
  color:#e5e5ea;

  text-decoration:none;
}

.ah-card-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:8px;

  color:#73737e;

  font-size:9.5px;
}


/* ---------- BIG BANNER ---------- */

.ah-wide-banner{
  min-height:190px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-top:20px;
  padding:35px 45px;

  overflow:hidden;

  position:relative;

  border:1px solid rgba(168,85,247,.20);
  border-radius:17px;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(168,85,247,.30),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #21123a,
      #0d0c12 65%
    );
}

.ah-wide-banner span{
  color:#a78bfa;

  font-size:10px;
  font-weight:950;
  letter-spacing:2px;
}

.ah-wide-banner h2{
  margin:8px 0 5px;

  font-size:28px;
  letter-spacing:-1px;
}

.ah-wide-banner p{
  margin:0;

  color:#898995;

  font-size:12px;
}

.ah-wide-banner > strong{
  color:rgba(255,255,255,.07);

  font-size:70px;
  font-weight:950;

  letter-spacing:-4px;
}


/* ---------- FOOTER ---------- */

.ah-mock-footer{
  border-top:1px solid var(--line);

  background:#09090c;
}

.ah-footer-inner{
  min-height:150px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.ah-footer-brand strong{
  font-size:25px;
  letter-spacing:-1px;
}

.ah-footer-brand strong span{
  color:#a78bfa;
}

.ah-footer-brand p{
  margin:7px 0 0;

  color:#595963;

  font-size:9px;
  letter-spacing:1.5px;
}

.ah-footer-links{
  display:flex;

  gap:24px;
}

.ah-footer-links a{
  color:#73737e;

  font-size:11px;

  text-decoration:none;
}


/* ---------- RESPONSIVE ---------- */

@media(max-width:1450px){

  .ah-video-grid{
    grid-template-columns:
      repeat(5,minmax(0,1fr));
  }

  .ah-hero-copy h1{
    font-size:50px;
  }

}


@media(max-width:1200px){

  .ah-video-grid{
    grid-template-columns:
      repeat(4,minmax(0,1fr));
  }

  .ah-hero-inner{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }

  .ah-hero-copy h1{
    font-size:43px;
  }

}


@media(max-width:900px){

  .ah-wide{
    width:calc(100% - 28px);
  }

  .ah-hero{
    min-height:auto;
  }

  .ah-hero-inner{
    min-height:auto;

    grid-template-columns:1fr;
  }

  .ah-hero-copy{
    padding:60px 0 15px;
  }

  .ah-hero-visual{
    height:330px;
  }

  .ah-category-nav{
    overflow-x:auto;

    grid-template-columns:
      repeat(7,minmax(100px,1fr));
  }

  .ah-promo-row{
    grid-template-columns:1fr;
  }

  .ah-video-grid{
    grid-template-columns:
      repeat(3,minmax(0,1fr));
  }

}


@media(max-width:620px){

  .ah-wide{
    width:calc(100% - 20px);
  }

  .ah-hero-copy{
    padding-top:42px;
  }

  .ah-hero-copy h1{
    font-size:37px;
    letter-spacing:-2px;
  }

  .ah-hero-copy p{
    font-size:13px;
  }

  .ah-hero-visual{
    height:250px;
  }

  .ah-feature-main{
    width:82%;
    height:215px;

    right:9%;
  }

  .ah-feature-small{
    display:none;
  }

  .ah-content{
    padding-top:22px;
  }

  .ah-promo-row{
    margin-bottom:40px;
  }

  .ah-promo{
    min-height:105px;

    padding:20px;
  }

  .ah-section{
    margin-bottom:45px;
  }

  .ah-title-group p{
    display:none;
  }

  .ah-video-grid{
    grid-template-columns:
      repeat(2,minmax(0,1fr));

    gap:20px 8px;
  }

  .ah-card-info h3{
    font-size:11.5px;
  }

  .ah-card-meta{
    font-size:8.5px;
  }

  .ah-wide-banner{
    min-height:150px;

    padding:25px;
  }

  .ah-wide-banner > strong{
    display:none;
  }

  .ah-wide-banner h2{
    font-size:21px;
  }

  .ah-footer-inner{
    min-height:130px;

    display:block;

    padding:35px 0;
  }

  .ah-footer-links{
    margin-top:25px;

    gap:15px;
  }

}


/* =================================================
   AVHANTA SUBPAGE HEADER
   HOME (.ah-home) IS UNTOUCHED
   ================================================= */

body:not(:has(.ah-home)) .site-header{
  overflow:visible;
}

body:not(:has(.ah-home)) .header-inner{
  display:flex;
  align-items:center;
  position:relative;
}

body:not(:has(.ah-home)) .primary-nav{
  min-width:0;
  overflow:visible;
}

body:not(:has(.ah-home)) .compact-menu{
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:3px !important;
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  white-space:nowrap;
}

body:not(:has(.ah-home)) .compact-menu > li{
  position:relative;
  display:flex;
  align-items:center;
  min-width:0;
  list-style:none !important;
}

body:not(:has(.ah-home)) .compact-menu > li::marker,
body:not(:has(.ah-home)) .submenu > li::marker{
  content:"";
}

body:not(:has(.ah-home)) .compact-menu > li > a,
body:not(:has(.ah-home)) .submenu-toggle{
  display:flex;
  align-items:center;
  text-decoration:none !important;
  border:0;
  background:transparent;
  cursor:pointer;
  white-space:nowrap;
}

body:not(:has(.ah-home)) .submenu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  z-index:1100;

  display:none !important;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  min-width:420px;
  max-width:620px;
  max-height:70vh;
  overflow:auto;

  margin:0 !important;
  padding:10px !important;

  list-style:none !important;

  background:#101218;
  border:1px solid var(--ah-line);
  border-radius:12px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.55);
}

body:not(:has(.ah-home)) .menu-more.is-open > .submenu{
  display:grid !important;
}

body:not(:has(.ah-home)) .submenu li{
  display:block;
  list-style:none !important;
}

body:not(:has(.ah-home)) .submenu a{
  display:block;
  padding:9px 11px;

  color:#c6cad2 !important;
  text-decoration:none !important;

  border-radius:8px;
}

body:not(:has(.ah-home)) .submenu a:hover{
  color:#fff !important;
  background:rgba(139,92,246,.13);
}


/* ---------- SUBPAGE MOBILE ---------- */

@media(max-width:960px){

  body:not(:has(.ah-home)) .nav-toggle{
    display:block;
    flex:0 0 auto;

    border:0;
    background:transparent;

    color:#fff;
    font-size:23px;
    cursor:pointer;
  }

  body:not(:has(.ah-home)) .primary-nav{
    display:none;

    position:absolute;
    left:0;
    right:0;
    top:100%;

    z-index:1100;

    padding:10px;

    background:#101218;
    border:1px solid var(--ah-line);
    border-radius:12px;

    box-shadow:
      0 20px 60px rgba(0,0,0,.55);
  }

  body:not(:has(.ah-home)) .primary-nav.is-open{
    display:block;
  }

  body:not(:has(.ah-home)) .compact-menu{
    display:block !important;
    white-space:normal;
  }

  body:not(:has(.ah-home)) .compact-menu > li{
    display:block;
    width:100%;
  }

  body:not(:has(.ah-home)) .compact-menu > li > a,
  body:not(:has(.ah-home)) .submenu-toggle{
    width:100%;
    justify-content:flex-start;
  }

  body:not(:has(.ah-home)) .submenu{
    position:static;

    width:100%;
    min-width:0;
    max-width:none;
    max-height:none;

    margin-top:5px !important;

    grid-template-columns:1fr;
    box-shadow:none;
  }

  body:not(:has(.ah-home)) .menu-more.is-open > .submenu{
    display:grid !important;
  }
}


/* ---------- DESKTOP ---------- */

@media(min-width:961px){

  body:not(:has(.ah-home)) .nav-toggle{
    display:none;
  }

}


/* =================================================
   AVHANTA HOME FINAL HEADER / HERO STABILIZER
   ================================================= */

body:has(.ah-home) .site-header{
  display:block !important;
}

body:has(.ah-home) .site-footer{
  display:block !important;
}

body:has(.ah-home) .ah-hero-visual{
  display:flex;
  align-items:center;
  justify-content:center;
}

body:has(.ah-home) .ah-feature-main{
  position:relative !important;

  width:min(720px,100%) !important;
  height:360px !important;

  top:auto !important;
  right:auto !important;
  left:auto !important;
  bottom:auto !important;

  transform:none !important;
}

body:has(.ah-home) .ah-feature-main img{
  display:block !important;
  width:100% !important;
  height:100% !important;

  object-fit:cover !important;

  background:#111;
}

@media(max-width:960px){

  body:has(.ah-home) .ah-feature-main{
    width:100% !important;
    height:320px !important;
  }

}

@media(max-width:640px){

  body:has(.ah-home) .ah-feature-main{
    height:220px !important;
  }

}


/* =================================================
   AVHANTA HEADER FINAL
   COMMON HEADER STRUCTURE
   ================================================= */

.site-header{
  overflow:visible !important;
}

.header-inner{
  min-height:70px !important;
  position:relative !important;

  display:flex !important;
  align-items:center !important;

  gap:18px !important;
}

.brand{
  display:flex !important;
  align-items:center !important;
  flex:0 0 auto !important;
}

.primary-nav{
  display:block;
  flex:1 1 auto !important;

  min-width:0 !important;
  overflow:visible !important;
}

.compact-menu{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  gap:3px !important;

  margin:0 !important;
  padding:0 !important;

  list-style:none !important;
  white-space:nowrap !important;
}

.compact-menu > li{
  position:relative !important;

  display:flex !important;
  align-items:center !important;

  margin:0 !important;
  padding:0 !important;

  list-style:none !important;
}

.compact-menu > li::marker,
.submenu > li::marker{
  content:"";
}

.compact-menu > li > a,
.submenu-toggle{
  display:flex !important;
  align-items:center !important;

  height:40px !important;

  padding:0 11px !important;

  border:0 !important;
  border-radius:8px !important;

  background:transparent !important;

  color:#c6cad2 !important;

  text-decoration:none !important;

  font-size:13px !important;
  font-weight:750 !important;

  cursor:pointer !important;
  white-space:nowrap !important;
}

.compact-menu > li > a:hover,
.compact-menu > li:hover > a,
.submenu-toggle:hover,
.compact-menu > li.is-open > .submenu-toggle{
  background:rgba(139,92,246,.13) !important;
  color:#fff !important;
}

.submenu{
  position:absolute !important;

  left:0 !important;
  top:calc(100% + 8px) !important;

  z-index:1200 !important;

  display:none !important;

  min-width:230px !important;
  max-width:330px !important;
  max-height:68vh !important;

  overflow:auto !important;

  margin:0 !important;
  padding:8px !important;

  list-style:none !important;

  background:#101218 !important;

  border:
    1px solid rgba(255,255,255,.09) !important;

  border-radius:12px !important;

  box-shadow:
    0 18px 50px rgba(0,0,0,.55) !important;
}

.submenu li{
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}

.submenu a{
  display:block !important;

  padding:9px 11px !important;

  color:#c6cad2 !important;

  text-decoration:none !important;

  border-radius:8px !important;

  white-space:normal !important;
  line-height:1.3 !important;
}

.submenu a:hover{
  background:rgba(139,92,246,.13) !important;
  color:#fff !important;
}

.menu-more > .submenu{
  right:0 !important;
  left:auto !important;

  grid-template-columns:
    repeat(2,minmax(0,1fr)) !important;

  min-width:420px !important;
}

.menu-more:hover > .submenu,
.menu-more:focus-within > .submenu,
.menu-more.is-open > .submenu{
  display:grid !important;
}


/* ---------- HEADER SEARCH ---------- */

.header-search{
  display:flex !important;
  align-items:center !important;

  flex:0 0 auto !important;

  height:40px !important;

  padding:0 !important;

  overflow:hidden !important;

  background:#111319 !important;

  border:
    1px solid rgba(255,255,255,.09) !important;

  border-radius:10px !important;
}

.header-search input{
  width:170px !important;
  height:38px !important;

  margin:0 !important;
  padding:0 11px !important;

  border:0 !important;
  outline:0 !important;

  background:transparent !important;
  color:#fff !important;
}

.header-search button{
  height:38px !important;

  margin:0 !important;
  padding:0 13px !important;

  border:0 !important;

  background:#8b5cf6 !important;
  color:#fff !important;

  font-size:13px !important;
  font-weight:750 !important;

  cursor:pointer !important;
}


/* ---------- MOBILE SEARCH ---------- */

.mobil
  display:none !important;
}


/* ---------- DESKTOP 

@media(min-width:961px){

  .nav-toggle{
    display:none !important;
  }

}


/* ---------- MOBILE / TABLET ---------- */

@media(max-width:960px){

  .header-inner{
    min-height:60px !important;
  }

  .nav-toggle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    flex:0 0 40px !important;

    width:40px !important;
    height:40px !important;

    margin-left:auto !important;

    border:
      1px solid rgba(255,255,255,.09) !important;

    border-radius:8px !important;

    background:#111319 !important;
    color:#fff !important;

    cursor:pointer !important;
  }

  .primary-nav{
    display:none !important;

    position:absolute !important;

    top:calc(100% + 8px) !important;
    left:0 !important;
    right:0 !important;

    z-index:1200 !important;

    padding:10px !important;

    background:#101218 !important;

    border:
      1px solid rgba(255,255,255,.09) !important;

    border-radius:12px !important;

    box-shadow:
      0 18px 50px rgba(0,0,0,.55) !important;
  }

  .primary-nav.is-open{
    display:block !important;
  }

  .compact-menu{
    display:block !important;
    white-space:normal !important;
  }

  .compact-menu > li{
    display:block !important;
    width:100% !important;
  }

  .compact-menu > li > a,
  .submenu-toggle{
    width:100% !important;
  }

  .menu-more > .submenu{
    position:static !important;

    width:100% !important;
    min-width:0 !important;
    max-width:none !important;

    margin-top:5px !important;

    grid-template-columns:1fr !important;

    box-shadow:none !important;
  }

  .header-search{
    display:none !important;
  }

  .mobile-search-wrap{
    display:block !important;
    width:100% !important;
  }

}


/* =================================================
   AVHANTA HEADER FINAL
   COMMON HEADER STRUCTURE
   ================================================= */

.site-header{
  overflow:visible !important;
}

.header-inner{
  min-height:70px !important;
  position:relative !important;

  display:flex !important;
  align-items:center !important;

  gap:18px !important;
}

.brand{
  display:flex !important;
  align-items:center !important;
  flex:0 0 auto !important;
}

.primary-nav{
  display:block;
  flex:1 1 auto !important;

  min-width:0 !important;
  overflow:visible !important;
}

.compact-menu{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  gap:3px !important;

  margin:0 !important;
  padding:0 !important;

  list-style:none !important;
  white-space:nowrap !important;
}

.compact-menu > li{
  position:relative !important;

  display:flex !important;
  align-items:center !important;

  margin:0 !important;
  padding:0 !important;

  list-style:none !important;
}

.compact-menu > li::marker,
.submenu > li::marker{
  content:"";
}

.compact-menu > li > a,
.submenu-toggle{
  display:flex !important;
  align-items:center !important;

  height:40px !important;

  padding:0 11px !important;

  border:0 !important;
  border-radius:8px !important;

  background:transparent !important;

  color:#c6cad2 !important;

  text-decoration:none !important;

  font-size:13px !important;
  font-weight:750 !important;

  cursor:pointer !important;
  white-space:nowrap !important;
}

.compact-menu > li > a:hover,
.compact-menu > li:hover > a,
.submenu-toggle:hover,
.compact-menu > li.is-open > .submenu-toggle{
  background:rgba(139,92,246,.13) !important;
  color:#fff !important;
}

.submenu{
  position:absolute !important;

  left:0 !important;
  top:calc(100% + 8px) !important;

  z-index:1200 !important;

  display:none !important;

  min-width:230px !important;
  max-width:330px !important;
  max-height:68vh !important;

  overflow:auto !important;

  margin:0 !important;
  padding:8px !important;

  list-style:none !important;

  background:#101218 !important;

  border:
    1px solid rgba(255,255,255,.09) !important;

  border-radius:12px !important;

  box-shadow:
    0 18px 50px rgba(0,0,0,.55) !important;
}

.submenu li{
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}

.submenu a{
  display:block !important;

  padding:9px 11px !important;

  color:#c6cad2 !important;

  text-decoration:none !important;

  border-radius:8px !important;

  white-space:normal !important;
  line-height:1.3 !important;
}

.submenu a:hover{
  background:rgba(139,92,246,.13) !important;
  color:#fff !important;
}

.menu-more > .submenu{
  right:0 !important;
  left:auto !important;

  grid-template-columns:
    repeat(2,minmax(0,1fr)) !important;

  min-width:420px !important;
}

.menu-more:hover > .submenu,
.menu-more:focus-within > .submenu,
.menu-more.is-open > .submenu{
  display:grid !important;
}


/* ---------- HEADER SEARCH ---------- */

.header-search{
  display:flex !important;
  align-items:center !important;

  flex:0 0 auto !important;

  height:40px !important;

  padding:0 !important;

  overflow:hidden !important;

  background:#111319 !important;

  border:
    1px solid rgba(255,255,255,.09) !important;

  border-radius:10px !important;
}

.header-search input{
  width:170px !important;
  height:38px !important;

  margin:0 !important;
  padding:0 11px !important;

  border:0 !important;
  outline:0 !important;

  background:transparent !important;
  color:#fff !important;
}

.header-search button{
  height:38px !important;

  margin:0 !important;
  padding:0 13px !important;

  border:0 !important;

  background:#8b5cf6 !important;
  color:#fff !important;

  font-size:13px !important;
  font-weight:750 !important;

  cursor:pointer !important;
}


/* ---------- MOBILE SEARCH ---------- */

.mobile-search-wrap{
  display:none !important;
}


/* ---------- DESKTOP ---------- */

@media(min-width:961px){

  .nav-toggle{
    display:none !important;
  }

}


/* ---------- MOBILE / TABLET ---------- */

@media(max-width:960px){

  .header-inner{
    min-height:60px !important;
  }

  .nav-toggle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    flex:0 0 40px !important;

    width:40px !important;
    height:40px !important;

    margin-left:auto !important;

    border:
      1px solid rgba(255,255,255,.09) !important;

    border-radius:8px !important;

    background:#111319 !important;
    color:#fff !important;

    cursor:pointer !important;
  }

  .primary-nav{
    display:none !important;

    position:absolute !important;

    top:calc(100% + 8px) !important;
    left:0 !important;
    right:0 !important;

    z-index:1200 !important;

    padding:10px !important;

    background:#101218 !important;

    border:
      1px solid rgba(255,255,255,.09) !important;

    border-radius:12px !important;

    box-shadow:
      0 18px 50px rgba(0,0,0,.55) !important;
  }

  .primary-nav.is-open{
    display:block !important;
  }

  .compact-menu{
    display:block !important;
    white-space:normal !important;
  }

  .compact-menu > li{
    display:block !important;
    width:100% !important;
  }

  .compact-menu > li > a,
  .submenu-toggle{
    width:100% !important;
  }

  .menu-more > .submenu{
    position:static !important;

    width:100% !important;
    min-width:0 !important;
    max-width:none !important;

    margin-top:5px !important;

    grid-template-columns:1fr !important;

    box-shadow:none !important;
  }

  .header-search{
    display:none !important;
  }

  .mobile-search-wrap{
    display:block !important;
    width:100% !important;
  }

}


/* =========================================================
   AVHANTA SIDEBAR FINAL
   ========================================================= */

.layout{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 280px !important;
  gap:28px !important;
  align-items:start !important;
}

.main-column{
  min-width:0 !important;
}

.sidebar{
  width:280px !important;
  min-width:0 !important;
  box-sizing:border-box !important;
  padding:20px !important;
}

.sidebar .widget{
  margin:0 0 28px !important;
  padding:0 !important;
}

.sidebar .widget:last-child{
  margin-bottom:0 !important;
}

.sidebar .widget-title{
  margin:0 0 14px !important;
  padding:0 0 10px !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;

  color:#fff !important;
  font-size:20px !important;
  line-height:1.3 !important;
  font-weight:800 !important;
}

.sidebar ul,
.sidebar ol{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}

.sidebar li{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}

.sidebar li::marker{
  content:"" !important;
}

.sidebar a{
  color:#d7d7df !important;
  text-decoration:none !important;
}

.sidebar a:hover{
  color:#a855f7 !important;
}


/* CATEGORY LIST */

.sidebar .widget-categories ul{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  column-gap:12px !important;
  row-gap:2px !important;
}

.sidebar .widget-categories li{
  min-width:0 !important;
}

.sidebar .widget-categories a{
  display:block !important;
  padding:7px 0 !important;

  overflow:hidden !important;
  white-space:nowrap !important;
  text-overflow:ellipsis !important;

  font-size:14px !important;
  line-height:1.35 !important;
}


/* POPULAR LIST */

.sidebar .popular-list{
  display:flex !important;
  flex-direction:column !important;
  gap:0 !important;
}

.sidebar .popular-list li{
  display:block !important;
  min-width:0 !important;

  padding:10px 0 !important;
  border-bottom:1px solid rgba(255,255,255,.06) !important;
}

.sidebar .popular-list li:last-child{
  border-bottom:0 !important;
}

.sidebar .popular-list a{
  display:block !important;
  width:100% !important;

  overflow:hidden !important;
  white-space:nowrap !important;
  text-overflow:ellipsis !important;

  color:#ededf2 !important;
  font-size:14px !important;
  line-height:1.4 !important;
  font-weight:600 !important;
}

.sidebar .popular-list span{
  display:block !important;
  margin-top:4px !important;

  color:#858590 !important;
  font-size:12px !important;
  line-height:1.3 !important;

  overflow:hidden !important;
  white-space:nowrap !important;
  text-overflow:ellipsis !important;
}


/* TABLET / MOBILE */

@media(max-width:1100px){

  .layout{
    grid-template-columns:minmax(0,1fr) 240px !important;
    gap:20px !important;
  }

  .sidebar{
    width:240px !important;
    padding:16px !important;
  }

  .sidebar .widget-categories ul{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:900px){

  .layout{
    display:block !important;
  }

  .sidebar{
    display:none !important;
  }
}


/* ==========================================
   AVHANTA FOOTER
   ========================================== */

.site-footer{
  position:relative;
  margin-top:70px;
  border-top:1px solid rgba(168,85,247,.20);
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(126,34,206,.13),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #09090d 0%,
      #050507 100%
    );
}

.avh-footer{
  padding-top:42px;
  padding-
}

.avh-footer-top{
  display:grid;
  grid-template-column
    minmax(0,1.5fr)
    minmax(150px,.7fr)
    minmax(150px,.8fr);
  gap:50px;
  padding-bottom:34px;
}

.avh-footer-brand{
  max-width:430px;
}

.avh-footer-logo{
  display:inline-block;
  margin-bottom:14px;
  color:#fff !important;
  text-decoration:none !important;
  font-size:30px;
  line-height:1;
  font-weight:900;
  letter-spacing:-1.5px;
}

.avh-footer-logo span{
  color:#a855f7;
}

.avh-footer-brand p{
  max-width:390px;
  margin:0 0 17px;
  color:#92929d;
  font-size:14px;
  line-height:1.7;
}

.avh-footer-badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border:1px solid rgba(168,85,247,.32);
  border-radius:7px;
  background:rgba(168,85,247,.08);
  color:#c084fc;
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.5px;
}

.avh-footer-menu h3{
  margin:0 0 14px;
  color:#f5f5f7;
  font-size:14px;
  line-height:1.3;
  font-weight:800;
}

.avh-footer-menu nav{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:9px;
}

.avh-footer-menu a{
  color:#858590 !important;
  text-decoration:none !important;
  font-size:13px;
  line-height:1.45;
  transition:
    color .18s ease,
    transform .18s ease;
}

.avh-footer-menu a:hover{
  color:#c084fc !important;
  transform:translateX(3px);
}

.avh-footer-notice{
  padding:20px 22px !important;
  border:1px solid rgba(255,255,255,.07);
  border-radius:12px;
  background:rgba(255,255,255,.025);
}

.avh-footer-notice-title{
  margin-bottom:12px;
  color:#b6b6c0;
  font-size:12px;
  line-height:1;
  font-weight:800;
}

.avh-footer-notice p{
  margin:5px 0 !important;
  color:#6f6f79 !important;
  font-size:11px !important;
  line-height:1.55 !important;
}

.avh-footer-notice strong{
  color:#898993;
  font-weight:600;
}

.avh-footer-english{
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.05);
}

.avh-footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-top:20px;
  padding-top:18px !important;
  border-top:1px solid rgba(255,255,255,.06);
  color:#62626c;
  font-size:11px;
}

.avh-footer-bottom-right{
  color:#7c3aed;
  font-weight:700;
}


@media(max-width:900px){

  .site-footer{
    margin-top:45px;
  }

  .avh-footer{
    padding-top:32px;
  }

  .avh-footer-top{
    grid-template-columns:
      minmax(0,1.4fr)
      minmax(130px,.6fr);
    gap:30px;
  }

  .avh-footer-brand{
    grid-column:1 / -1;
    max-width:none;
  }

}


@media(max-width:560px){

  .avh-footer{
    padding-top:28px;
    padding-bottom:18px;
  }

  .avh-footer-top{
    grid-template-columns:1fr 1fr;
    gap:28px 18px;
    padding-bottom:26px;
  }

  .avh-footer-logo{
    font-size:26px;
  }

  .avh-footer-brand p{
    font-size:13px;
  }

  .avh-footer-notice{
    padding:16px !important;
  }

  .avh-footer-bottom{
    display:block;
    line-height:1.7;
  }

  .avh-footer-bottom-right{
    display:block;
    margin-top:4px;
  }

}


/* ==========================================
   AVHANTA FOOTER LAYOUT FIX
   ========================================== */

.avh-footer{
  padding-top:38px !important;
  padding-bottom:22px !important;
}

.avh-footer-top{
  display:grid !important;
  grid-template-columns:
    minmax(0,1.7fr)
    minmax(160px,.65fr)
    minmax(180px,.75fr) !important;
  gap:55px !important;
  align-items:start !important;
  padding-bottom:30px !important;
}

.avh-footer-brand{
  grid-column:auto !important;
  max-width:460px !important;
}

.avh-footer-menu{
  min-width:0 !important;
}

.avh-footer-menu nav{
  display:flex !important;
  flex-direction:column !important;
  gap:9px !important;
}

.avh-footer-notice{
  margin-top:0 !important;
}

@media (max-width:900px){

  .avh-footer-top{
    grid-template-columns:
      minmax(0,1fr)
      minmax(140px,.45fr)
      minmax(150px,.5fr) !important;
    gap:25px !important;
  }

  .avh-footer-brand{
    grid-column:auto !important;
  }

}

@media (max-width:700px){

  .avh-footer-top{
    grid-template-columns:1fr 1fr !important;
    gap:28px 20px !important;
  }

  .avh-footer-brand{
    grid-column:1 / -1 !important;
    max-width:none !important;
  }

}

@media (max-width:480px){

  .avh-footer{
    padding-top:26px !important;
  }

  .avh-footer-top{
    grid-template-columns:1fr 1fr !important;
    gap:24px 16px !important;
    padding-bottom:24px !important;
  }

}


/* ==========================================
   AVHANTA SEO CATEGORY NAV
   ========================================== */

.ah-category-strip{
  margin:22px 0 30px !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
}

.ah-category-nav{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:7px !important;
  width:100% !important;
  padding:8px !important;

  border:1px solid rgba(255,255,255,.07) !important;
  border-radius:12px !important;

  background:rgba(255,255,255,.018) !important;

  overflow-x:auto !important;
  scrollbar-width:none;
}

.ah-category-nav::-webkit-scrollbar{
  display:none;
}

.ah-category-nav a{
  display:inline-flex !important;
  flex:0 0 auto !important;
  align-items:center !important;
  justify-content:center !important;

  min-width:0 !important;
  height:34px !important;

  padding:0 14px !important;

  border:0 !important;
  border-radius:8px !important;

  background:transparent !important;

  color:#8d8d99 !important;
  text-decoration:none !important;

  font-size:13px !important;
  font-weight:600 !important;
  line-height:1 !important;

  transition:
    background .18s ease,
    color .18s ease !important;
}

.ah-category-nav a:first-child{
  border:0 !important;
}

.ah-category-nav a:hover,
.ah-category-nav a.active{
  background:rgba(168,85,247,.11) !important;
  color:#c084fc !important;
}

.ah-category-nav b{
  display:none !important;
}

.ah-category-nav span{
  display:block !important;
  color:inherit !important;
  font:inherit !important;
  white-space:nowrap !important;
}


/* PC에서 링크 사이에 가벼운 구분점 */
@media(min-width:701px){

  .ah-category-nav a + a::before{
    content:"";
    width:3px;
    height:3px;
    margin-right:14px;

    border-radius:50%;
    background:#454550;
  }

}


/* MOBILE */
@media(max-width:700px){

  .ah-category-strip{
    margin:15px 0 22px !important;
  }

  .ah-category-nav{
    gap:2px !important;
    padding:6px !important;
    border-radius:10px !important;
  }

  .ah-category-nav a{
    height:32px !important;
    padding:0 11px !important;
    font-size:12px !important;
  }

}

/* ==========================================
   AVHANTA HOME CATEGORY LINKS FINAL
   ========================================== */

.ah-category-strip{
  margin:12px 0 24px !important;
  padding:0 !important;
  border:0 !important;
  background:none !important;
}

.ah-category-nav{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:10px !important;

  width:auto !important;
  min-height:0 !important;

  margin:0 !important;
  padding:0 !important;

  border:0 !important;
  border-radius:0 !important;
  background:none !important;
  box-shadow:none !important;

  overflow-x:auto !important;
  scrollbar-width:none !important;
}

.ah-category-nav::-webkit-scrollbar{
  display:none !important;
}

.ah-category-nav a{
  display:inline-flex !important;
  flex:0 0 auto !important;
  align-items:center !important;
  justify-content:center !important;

  width:auto !important;
  min-width:0 !important;
  height:34px !important;

  margin:0 !important;
  padding:0 14px !important;

  border:1px solid rgba(255,255,255,.07) !important;
  border-radius:8px !important;

  background:rgba(255,255,255,.025) !important;

  color:#9999a5 !important;
  text-decoration:none !important;

  font-size:13px !important;
  font-weight:600 !important;
  line-height:1 !important;
}

.ah-category-nav a::before,
.ah-category-nav a::after{
  content:none !important;
  display:none !important;
}

.ah-category-nav a:hover{
  border-color:rgba(168,85,247,.35) !important;
  background:rgba(168,85,247,.08) !important;
  color:#c084fc !important;
}

.ah-category-nav span{
  display:inline !important;
  margin:0 !important;
  padding:0 !important;
  color:inherit !important;
  font:inherit !important;
  white-space:nowrap !important;
}

.ah-category-nav b{
  display:none !important;
}

@media(max-width:700px){

  .ah-category-strip{
    margin:10px 0 18px !important;
  }

  .ah-category-nav{
    gap:7px !important;
  }

  .ah-category-nav a{
    height:32px !important;
    padding:0 11px !important;
    font-size:12px !important;
  }

}


/* ==========================================
   AVHANTA POST PAGE
   ========================================== */

.single-video{
  padding:26px 0 60px;
}

.single-video > .shell{
  width:min(1380px,calc(100% - 32px));
  margin:0 auto;
}


/* PLAYER */

.single-video .player-wrap{
  position:relative;
  width:100%;
  margin:0 0 26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.07);
  border-radius:14px;
  background:#050507;
  box-shadow:0 18px 55px rgba(0,0,0,.28);
}

.single-video .player-wrap video{
  display:block;
  width:100%;
  max-height:780px;
  margin:0 auto;
  background:#000;
}

.single-video .video-empty{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:420px;
  color:#777782;
}


/* TITLE */

.single-video .single-head{
  margin:0 0 22px;
  padding:0 2px 22px;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.single-video .single-head h1{
  margin:0;
  padding:0;
  color:#f4f4f7;
  font-size:clamp(22px,2vw,30px);
  font-weight:800;
  line-height:1.42;
  letter-spacing:-.025em;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

.single-video .single-meta{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:12px;
  color:#7f7f8b;
  font-size:13px;
  line-height:1.4;
}

.single-video .single-meta span + span::before{
  content:"•";
  margin-right:14px;
  color:#41414a;
}


/* MAIN + SIDEBAR */

.single-video .single-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:28px;
  align-items:start;
}

.single-video .single-main{
  min-width:0;
}


/* CONTENT */

.single-video .entry-content{
  padding:24px 26px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:12px;
  background:rgba(255,255,255,.018);

  color:#b8b8c2;
  font-size:15px;
  font-weight:400;
  line-height:1.85;

  word-break:break-word;
  overflow-wrap:anywhere;
}

.single-video .entry-content > :first-child{
  margin-top:0 !important;
}

.single-video .entry-content > :last-child{
  margin-bottom:0 !important;
}

.single-video .entry-content p{
  margin:0 0 14px;
}

.single-video .entry-content h1,
.single-video .entry-content h2,
.single-video .entry-content h3,
.single-video .entry-content h4{
  margin:24px 0 12px;
  color:#ededf2;
  line-height:1.45;
}

.single-video .entry-content img{
  display:block;
  max-width:100%;
  height:auto;
  margin:18px auto;
  border-radius:8px;
}

.single-video .entry-content a{
  color:#b875ff;
  text-decoration:none;
  border-bottom:1px solid rgba(184,117,255,.3);
}

.single-video .entry-content a:hover{
  color:#d8b4fe;
  border-bottom-color:#d8b4fe;
}

.single-video .entry-content ul,
.single-video .entry-content ol{
  margin:14px 0;
  padding-left:22px;
}


/* CATEGORY / TAGS */

.single-video .terms{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:16px;
}

.single-video .terms a{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:5px 10px;

  border:1px solid rgba(255,255,255,.07);
  border-radius:7px;

  background:rgba(255,255,255,.025);
  color:#92929e;

  font-size:12px;
  line-height:1.2;
  text-decoration:none;
}

.single-video .terms a:hover{
  border-color:rgba(168,85,247,.35);
  background:rgba(168,85,247,.08);
  color:#c084fc;
}


/* SIDEBAR ON POST */

.single-video .sidebar{
  position:sticky;
  top:88px;
  width:280px !important;
}


/* RELATED */

.single-video .related{
  margin-top:42px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.07);
}

.single-video .related > h2{
  margin:0 0 20px;
  color:#f2f2f5;
  font-size:22px;
  font-weight:800;
  line-height:1.3;
}

.single-video .related .video-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px 14px;
}


/* TABLET */

@media(max-width:1100px){

  .single-video .single-layout{
    grid-template-columns:minmax(0,1fr) 240px;
    gap:20px;
  }

  .single-video .sidebar{
    width:240px !important;
  }

  .single-video .related .video-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

}


/* MOBILE */

@media(max-width:900px){

  .single-video{
    padding-top:16px;
  }

  .single-video > .shell{
    width:min(100% - 20px,1380px);
  }

  .single-video .single-layout{
    display:block;
  }

  .single-video .sidebar{
    display:none !important;
  }

  .single-video .related .video-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}

@media(max-width:600px){

  .single-video .player-wrap{
    margin-bottom:18px;
    border-radius:9px;
  }

  .single-video .single-head{
    margin-bottom:16px;
    padding-bottom:16px;
  }

  .single-video .single-head h1{
    font-size:20px;
    line-height:1.45;
  }

  .single-video .single-meta{
    margin-top:9px;
    font-size:12px;
  }

  .single-video .entry-content{
    padding:17px 15px;
    border-radius:9px;
    font-size:14px;
    line-height:1.8;
  }

  .single-video .related{
    margin-top:32px;
    padding-top:22px;
  }

  .single-video .related > h2{
    margin-bottom:15px;
    font-size:19px;
  }

  .single-video .related .video-grid{
    gap:16px 8px;
  }

}


/* ==========================================
   AVHANTA MOBILE SEARCH FINAL
   ========================================== */

@media(max-width:900px){

  .mobile-search-wrap{
    display:block !important;
    width:100% !important;
    margin:0 !important;
    padding:0 10px 10px !important;
    box-sizing:border-box !important;
    background:#08080d !important;
  }

  .mobile-search-wrap .shell{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
  }

  .mobile-search-form{
    display:flex !important;
    align-items:stretch !important;

    width:100% !important;
    height:40px !important;

    margin:0 !important;
    padding:0 !important;

    overflow:hidden !important;

    border:1px solid rgba(255,255,255,.10) !important;
    border-radius:9px !important;

    background:#101016 !important;
    box-sizing:border-box !important;
  }

  .mobile-search-form input{
    flex:1 1 auto !important;
    min-width:0 !important;
    width:100% !important;
    height:100% !important;

    margin:0 !important;
    padding:0 13px !important;

    border:0 !important;
    outline:0 !important;
    border-radius:0 !important;

    background:transparent !important;
    color:#ededf2 !important;

    font-size:13px !important;
    line-height:40px !important;

    appearance:none !important;
    -webkit-appearance:none !important;
    box-shadow:none !important;
  }

  .mobile-search-form input::placeholder{
    color:#696974 !important;
    opacity:1 !important;
  }

  .mobile-search-form input:focus{
    outline:0 !important;
    box-shadow:none !important;
  }

  .mobile-search-form button{
    flex:0 0 64px !important;
    width:64px !important;
    height:100% !important;

    margin:0 !important;
    padding:0 !important;

    border:0 !important;
    border-left:1px solid rgba(255,255,255,.08) !important;
    border-radius:0 !important;

    background:linear-gradient(
      135deg,
      #7c3aed,
      #a855f7
    ) !important;

    color:#fff !important;

    font-size:13px !important;
    font-weight:800 !important;
    line-height:40px !important;

    cursor:pointer !important;
    appearance:none !important;
    -webkit-appearance:none !important;
    box-shadow:none !important;
  }

}

@media(min-width:901px){

  .mobile-search-wrap{
    display:none !important;
  }

}


/* ==========================================
   AVHANTA POST TOP BANNERS
   ========================================== */

.single-video .post-top-banners{
  margin:0 0 18px !important;
}

.single-video .post-top-banners .ah-banner-item{
  min-width:0 !important;
}

.single-video .post-top-banners .ah-banner-item img{
  display:block !important;
  width:100% !important;
  height:auto !important;
  aspect-ratio:4 / 1 !important;
  object-fit:cover !important;
}

@media(max-width:700px){

  .single-video .post-top-banners{
    margin-bottom:12px !important;
  }

}
