.elite-kc{
  width:100%;
  box-sizing:border-box;
  padding:20px 0 30px;
  font-family:inherit;
  color:#111;
  background:transparent!important;
}

.elite-kc *,
.elite-kc *::before,
.elite-kc *::after{
  box-sizing:border-box;
}

.elite-kc-head{
  width:min(100%,1200px);
  margin:0 auto 18px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.elite-kc-head h2{
  margin:0;
  font-size:clamp(24px,3vw,42px);
  line-height:1;
  font-weight:800;
  letter-spacing:-.02em;
  color:#111;
}

.elite-kc-head p{
  margin:8px 0 0;
  color:#777;
  font-size:14px;
  line-height:1.45;
}

.elite-kc-controls{
  display:flex;
  gap:8px;
}

.elite-kc-controls button{
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:24px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform .15s ease, opacity .15s ease;
}

.elite-kc-controls button:hover{
  transform:translateY(-1px);
}

.elite-kc-controls button:disabled{
  opacity:.35;
  cursor:not-allowed;
}

.elite-kc-track-wrap{
  width:min(100%,1200px);
  margin:0 auto;
  overflow:hidden;
  padding:6px 14px 10px;
}

.elite-kc-track{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:4px 2px 12px;
  scrollbar-width:none;
  align-items:stretch;
}

.elite-kc-track::-webkit-scrollbar{
  display:none;
}

.elite-kc-card{
  scroll-snap-align:start;
  flex:0 0 240px;
  min-height:430px;
  border-radius:140px;
  background:#f1f1f1!important;
  padding:26px 22px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  border:none!important;
  box-shadow:none!important;
  overflow:hidden;
}

.elite-kc-photo{
  width:170px;
  height:170px;
  border-radius:999px!important;
  overflow:hidden;
  background:#e4e4e4;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  flex:0 0 auto;
}

.elite-kc-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:999px!important;
}

.elite-kc-photo span{
  width:100%;
  height:100%;
  border-radius:999px;
  background:#d8d8d8;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:56px;
  font-weight:800;
}

.elite-kc-body{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.elite-kc-body h3{
  margin:0;
  font-size:18px;
  line-height:1.1;
  font-weight:800;
  text-transform:uppercase;
  color:#111;
}

.elite-kc-city{
  display:block;
  color:#666;
  font-size:13px;
  font-weight:600;
  line-height:1.3;
}

.elite-kc-rating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  margin-top:2px;
  min-height:22px;
}

.elite-kc-rating strong{
  display:none!important;
}

.elite-kc-rating span{
  margin:0;
}

.elite-kc-star{
  font-size:18px;
  line-height:1;
  transition:opacity .15s ease;
}

.elite-kc-star.is-on{
  color:#111;
}

.elite-kc-star.is-off{
  color:#cfcfcf;
}

.elite-kc-total{
  display:none!important;
}

.elite-kc-skills{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px;
  margin-top:4px;
}

.elite-kc-skills span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  min-height:28px;
  border-radius:999px;
  background:#e4e4e4;
  color:#333;
  font-size:11px;
  line-height:1.15;
  font-weight:700;
}

.elite-kc-dots{
  width:min(100%,1200px);
  margin:8px auto 0;
  padding:0 14px;
  display:flex;
  justify-content:center;
  gap:7px;
}

.elite-kc-dots button{
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:999px;
  background:#d1d1d1;
  cursor:pointer;
}

.elite-kc-dots button.is-active{
  width:22px;
  background:#111;
}

.elite-kc-empty{
  width:min(100% - 28px,720px);
  margin:0 auto;
  padding:24px;
  border-radius:24px;
  background:#f5f5f5;
  text-align:center;
}

.elite-kc-empty strong{
  display:block;
  color:#111;
  font-size:22px;
}

.elite-kc-empty span{
  display:block;
  margin-top:6px;
  color:#777;
}

@media (max-width:900px){
  .elite-kc-card{
    flex-basis:220px;
    min-height:410px;
    border-radius:130px;
  }

  .elite-kc-photo{
    width:154px;
    height:154px;
  }
}

@media (max-width:640px){
  .elite-kc{
    padding:14px 0 24px;
  }

  .elite-kc-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .elite-kc-controls{
    display:none;
  }

  .elite-kc-track{
    gap:16px;
  }

  .elite-kc-card{
    flex-basis:78vw;
    max-width:260px;
    min-height:400px;
    border-radius:120px;
    padding:22px 18px 24px;
  }

  .elite-kc-photo{
    width:148px;
    height:148px;
    margin-bottom:16px;
  }

  .elite-kc-body h3{
    font-size:17px;
  }
}
