
.cts-slider{
  --cts-gap:18px;
  --cts-visible:3;
  position:relative;
  width:100%;
  font-family:"Plus Jakarta Sans",Arial,sans-serif;
  padding:2px 0 24px;
}
.cts-viewport{
  overflow:hidden;
  width:100%;
}
.cts-track{
  display:flex;
  align-items:stretch;
  gap:var(--cts-gap);
  transition:transform .55s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.cts-card{
  box-sizing:border-box;
  flex:0 0 calc((100% - (var(--cts-gap) * (var(--cts-visible) - 1)))/var(--cts-visible));
  min-width:0;
  background:#fff;
  border:1px solid #dde3eb;
  border-radius:14px;
  padding:21px 20px 20px;
  box-shadow:0 1px 2px rgba(16,24,40,.08);
}
.cts-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.cts-name{
  color:#182235;
  font-size:17px;
  line-height:1.35;
  font-weight:700;
}
.cts-location{
  margin-top:5px;
  color:#8a94a3;
  font-size:12px;
  line-height:1.3;
}
.cts-source{
  flex:0 0 auto;
  width:76px;
  line-height:0;
  margin-top:2px;
}
.cts-source img{
  display:block;
  width:100%;
  height:auto;
  max-width:76px;
}
.cts-source-text{
  flex:0 0 auto;
  color:#f21846;
  font-size:10px;
  font-weight:700;
  margin-top:4px;
}
.cts-rating-row{
  display:flex;
  align-items:center;
  gap:11px;
  margin:17px 0 12px;
}
.cts-score{
  color:#173ce6;
  font-size:23px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.4px;
}
.cts-stars{
  color:#ff6500;
  font-size:15px;
  line-height:1;
  letter-spacing:1px;
  white-space:nowrap;
}
.cts-review{
  color:#667085;
  font-size:15.5px;
  line-height:1.62;
  font-style:italic;
  font-weight:400;
}
.cts-dots{
  display:flex!important;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:16px;
  min-height:10px;
}
.cts-dot,
.cts-slider .cts-dot{
  appearance:none!important;
  -webkit-appearance:none!important;
  display:block!important;
  flex:0 0 8px!important;
  width:8px!important;
  height:8px!important;
  min-width:8px!important;
  min-height:8px!important;
  max-width:8px!important;
  max-height:8px!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:50%!important;
  background:#cbd3df!important;
  box-shadow:none!important;
  outline:0!important;
  font-size:0!important;
  line-height:0!important;
  cursor:pointer;
}
.cts-dot.is-active,
.cts-slider .cts-dot.is-active{
  background:#173ce6!important;
}
.cts-empty{
  padding:15px;
  border:1px dashed #cbd5e1;
  background:#f8fafc;
  border-radius:10px;
  font-family:"Plus Jakarta Sans",Arial,sans-serif;
}
@media(max-width:1024px){
  .cts-name{font-size:16.5px}
  .cts-review{font-size:15px}
}
@media(max-width:767px){
  .cts-slider{--cts-gap:12px;padding-bottom:20px}
  .cts-card{padding:19px 17px}
  .cts-name{font-size:16px}
  .cts-source{width:68px}
  .cts-source img{max-width:68px}
  .cts-score{font-size:21px}
  .cts-stars{font-size:14px}
  .cts-review{font-size:14.5px;line-height:1.6}
}
