
.han-tk-wrap,
.han-tk-wrap *{box-sizing:border-box}
.han-tk-wrap{
  --hantk-bg:#efefef;
  width:100%;
  background:var(--hantk-bg);
  padding:40px 24px;
  font-family:"Inter","Segoe UI",Arial,sans-serif;
  overflow:hidden;
}
.han-tk-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  margin-bottom:42px;
}
.han-tk-heading{
  max-width:52%;
  min-width:0;
}
.han-tk-marquee{
  position:relative;
  display:inline-flex;
  width:160px;
  max-width:100%;
  overflow:hidden;
  border:1px solid #ced43a;
  border-radius:999px;
  padding:8px 14px;
  background:rgba(255,255,255,.45);
  margin-bottom:28px;
}
.han-tk-marquee-track{
  display:flex;
  min-width:max-content;
  gap:28px;
  animation:hantkMarquee 12s linear infinite;
  will-change:transform;
}
.han-tk-marquee-track span{
  white-space:nowrap;
  font-size:12px;
  font-weight:600;
  line-height:1;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:#2b2b2b;
}
@keyframes hantkMarquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-33.333%)}
}
.han-tk-title{
  margin:0;
  font-size:72px;
  line-height:.98;
  font-weight:800;
  letter-spacing:-.05em;
  color:#070707;
}
.han-tk-desc{
  margin-top:24px;
  max-width:720px;
  font-size:18px;
  line-height:1.7;
  color:#5e5e5e;
}
.han-tk-top-btn{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:6px 6px 6px 24px;
  min-height:54px;
  border-radius:999px;
  background:#fff;
  color:#070707;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.12);
  transition:transform .25s ease, box-shadow .25s ease;
}
.han-tk-top-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}
.han-tk-top-btn-text{
  font-size:16px;
  font-weight:700;
  line-height:1;
}
.han-tk-top-btn-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#d9e14a;
  color:#111;
}
.han-tk-top-btn-icon svg{
  width:18px;
  height:18px;
}
.han-tk-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.han-tk-card{
  min-width:0;
}
.han-tk-card-image{
  position:relative;
  display:block;
  border-radius:28px;
  overflow:hidden;
  background:#ddd;
  text-decoration:none;
}
.han-tk-card-image::before{
  content:"";
  position:absolute;
  top:0;
  left:-140%;
  width:80%;
  height:100%;
  background:linear-gradient(110deg, transparent 10%, rgba(255,255,255,.35) 48%, transparent 82%);
  transform:skewX(-18deg);
  z-index:2;
  pointer-events:none;
  transition:left .75s ease;
}
.han-tk-card:hover .han-tk-card-image::before{
  left:160%;
}
.han-tk-card-image img{
  display:block;
  width:100%;
  aspect-ratio:1.35 / 1;
  object-fit:cover;
  transition:transform .45s ease, filter .45s ease;
}
.han-tk-card:hover .han-tk-card-image img{
  transform:scale(1.05);
  filter:brightness(1.04);
}
.han-tk-meta-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:18px;
}
.han-tk-badge{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:6px 16px;
  border-radius:999px;
  background:#d9e14a;
  color:#111;
  font-size:14px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}
.han-tk-line{
  flex:1 1 auto;
  height:1px;
  background:#d1d1d1;
  min-width:20px;
}
.han-tk-meta{
  flex:0 0 auto;
  color:#8a8a8a;
  font-size:14px;
  font-weight:600;
  line-height:1;
  white-space:nowrap;
}
.han-tk-card-title{
  margin:18px 0 0;
  font-size:24px;
  line-height:1.18;
  font-weight:800;
  letter-spacing:-.04em;
  color:#111;
}
.han-tk-card-title a{
  color:inherit;
  text-decoration:none;
}
@media (max-width: 1024px){
  .han-tk-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .han-tk-heading{
    max-width:100%;
  }
  .han-tk-title{
    font-size:56px;
  }
  .han-tk-cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 767px){
  .han-tk-wrap{
    padding:26px 16px 30px;
  }
  .han-tk-top{
    gap:18px;
    margin-bottom:26px;
  }
  .han-tk-heading{
    max-width:100% !important;
  }
  .han-tk-title{
    font-size:38px;
    line-height:1.02;
    text-align:left !important;
  }
  .han-tk-desc{
    margin-top:16px;
    font-size:15px;
    line-height:1.6;
    text-align:left !important;
  }
  .han-tk-top-btn{
    min-height:48px;
    padding:5px 5px 5px 18px;
  }
  .han-tk-top-btn-text{
    font-size:14px;
  }
  .han-tk-top-btn-icon{
    width:38px;
    height:38px;
  }
  .han-tk-cards{
    display:flex;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    gap:16px;
    padding-bottom:8px;
    margin-right:-4px;
  }
  .han-tk-cards::-webkit-scrollbar{
    height:5px;
  }
  .han-tk-cards::-webkit-scrollbar-thumb{
    background:rgba(0,0,0,.18);
    border-radius:999px;
  }
  .han-tk-card{
    min-width:285px;
    width:285px;
    flex:0 0 auto;
    scroll-snap-align:start;
  }
  .han-tk-card-title{
    font-size:22px;
  }
  .han-tk-meta-row{
    gap:10px;
    flex-wrap:nowrap;
  }
  .han-tk-badge{
    font-size:12px;
    padding:6px 14px;
  }
  .han-tk-meta{
    font-size:12px;
  }
}
