.hts {
  background: var(--vierlot-bg);
  padding: 60px 0;
  font-family: var(--vierlot-font);
}
.hts__head {
  text-align: center;
  margin-bottom: 40px;
}
.hts__title {
  font-family: var(--vierlot-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0;
  line-height: 1.3;
}
.hts__subtitle {
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  margin: 12px 0 0;
}

.hts__track-wrap {
  position: relative;
  overflow: hidden;
}
.hts__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
}
.hts__track::-webkit-scrollbar {
  display: none;
}
.hts__track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hts__card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}
.hts__stars {
  display: flex;
  gap: 8px;
  color: var(--vierlot-text);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
}
.hts__stars span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}
.hts__body {
  font-family: var(--vierlot-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.6;
  margin: 0 0 16px;
}
.hts__name {
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin-bottom: 8px;
}
.hts__verified {
  font-family: var(--vierlot-font);
  font-size: 12px;
  font-weight: 400;
  color: var(--vierlot-text-muted);
}

.hts__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.hts__arrow {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  color: var(--vierlot-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hts__arrow:hover {
  opacity: 0.65;
}
.hts__arrow:disabled,
.hts__arrow.is-disabled {
  color: var(--vierlot-disabled);
  cursor: not-allowed;
}
.hts__arrow:disabled:hover,
.hts__arrow.is-disabled:hover {
  opacity: 1;
}
.hts__dots {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hts__dot {
  width: 8px;
  height: 8px;
  background: var(--vierlot-disabled);
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.2s ease;
}
.hts__dot.is-active {
  background: var(--vierlot-text);
}

.hts.is-single .hts__controls {
  display: none;
}

@media (max-width: 768px) {
  .hts {
    padding: 40px 0;
  }
  .hts__head {
    margin-bottom: 28px;
  }
  .hts__title {
    font-size: 22px;
  }
  .hts__card {
    flex-basis: 85vw;
    max-width: 280px;
  }
  .hts__stars span {
    width: 16px;
    height: 16px;
  }
  .hts__stars {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .hts__body {
    font-size: 14px;
  }
  .hts__name {
    font-size: 13px;
  }
  .hts__verified {
    font-size: 11px;
  }
  .hts__controls {
    margin-top: 24px;
  }
}
