
.han-kha-wrap,
.han-kha-wrap *{box-sizing:border-box}
.han-kha-wrap{
  --hankha-bg:#e8e5df;
  width:100%;
  background:var(--hankha-bg);
  padding:34px 18px 38px;
  overflow:hidden;
  font-family:"Inter","Segoe UI",Arial,sans-serif;
}
.han-kha-header{
  margin-bottom:28px;
}
.han-kha-heading{
  max-width:52%;
}
.han-kha-marquee{
  position:relative;
  display:inline-flex;
  width:170px;
  overflow:hidden;
  border:1px solid #d0d54b;
  border-radius:999px;
  padding:8px 14px;
  background:rgba(255,255,255,.35);
  margin-bottom:22px;
}
.han-kha-marquee-track{
  display:flex;
  gap:28px;
  min-width:max-content;
  animation:hankhaMarquee 11s linear infinite;
}
.han-kha-marquee-track span{
  white-space:nowrap;
  font-size:12px;
  font-weight:600;
  line-height:1;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:#2b2b2b;
}
@keyframes hankhaMarquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-33.333%)}
}
.han-kha-title{
  margin:0;
  color:#070707;
  font-size:64px;
  line-height:.98;
  font-weight:800;
  letter-spacing:-.05em;
}
.han-kha-desc{
  margin-top:16px;
  color:#5b5b5b;
  font-size:18px;
  line-height:1.7;
  max-width:780px;
}
.han-kha-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.han-kha-card{
  --hankha-card-bg:#f6f5f2;
  --hankha-fill:#d9e34f;
  position:relative;
  min-height:460px;
  background:var(--hankha-card-bg);
  border-radius:32px;
  overflow:hidden;
  padding:22px 22px 0 22px;
  isolation:isolate;
}
.han-kha-card-fill{
  position:absolute;
  inset:0;
  background:var(--hankha-fill);
  z-index:0;
  opacity:1;
  clip-path:circle(0% at 100% 0%);
  transition:clip-path .6s ease, opacity .35s ease;
}
.han-kha-card:hover .han-kha-card-fill{
  clip-path:circle(150% at 100% 0%);
}
.han-kha-card-arrow{
  position:absolute;
  top:0;
  right:0;
  width:74px;
  height:74px;
  border-radius:0 32px 0 32px;
  background:#f6f5f2;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
  text-decoration:none;
}
.han-kha-card-arrow svg{
  width:22px;
  height:22px;
}
.han-kha-card-body{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
}
.han-kha-card-title{
  margin:0 0 0 0;
  color:#070707;
  font-size:34px;
  line-height:.98;
  font-weight:800;
  letter-spacing:-.05em;
  max-width:78%;
  transition:color .28s ease, background-color .28s ease;
}
.han-kha-card-figure{
  flex:1 1 auto;
  width:100%;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:0;
  margin:0;
}
.han-kha-card-figure img{
  display:block;
  width:auto;
  height:auto;
  max-width:84%;
  max-height:100%;
  object-fit:contain;
  object-position:left bottom;
  margin:0;
  align-self:flex-end;
}
@media (max-width: 1024px){
  .han-kha-heading{
    max-width:100%;
  }
  .han-kha-title{
    font-size:50px;
  }
  .han-kha-cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 767px){
  .han-kha-wrap{
    padding:24px 12px 28px;
  }
  .han-kha-header{
    margin-bottom:18px;
  }
  .han-kha-heading{
    max-width:100% !important;
  }
  .han-kha-title{
    font-size:38px;
    line-height:1.02;
    text-align:left;
  }
  .han-kha-desc{
    font-size:15px;
    line-height:1.6;
    text-align:left;
  }
  .han-kha-cards{
    display:flex;
    gap:16px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:8px;
  }
  .han-kha-cards::-webkit-scrollbar{
    height:5px;
  }
  .han-kha-cards::-webkit-scrollbar-thumb{
    background:rgba(0,0,0,.18);
    border-radius:999px;
  }
  .han-kha-card{
    min-width:320px;
    width:320px;
    min-height:430px;
    flex:0 0 auto;
    scroll-snap-align:start;
  }
  .han-kha-card-title{
    font-size:28px;
    max-width:76%;
  }
  .han-kha-card-arrow{
    width:64px;
    height:64px;
    border-radius:0 28px 0 28px;
  }
}
