.ht {
  background: var(--vierlot-bg);
  padding: 60px 0;
  font-family: var(--vierlot-font);
}
.ht__head {
  text-align: center;
  margin-bottom: 40px;
}
.ht__title {
  font-family: var(--vierlot-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0;
  line-height: 1.3;
}
.ht__subtitle {
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  margin: 12px 0 0;
}
.ht__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.ht__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}
.ht__icon {
  width: 40px;
  height: 40px;
  color: var(--vierlot-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.ht__icon svg {
  width: 40px;
  height: 40px;
}
.ht__name {
  font-family: var(--vierlot-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0;
  line-height: 1.45;
  max-width: 240px;
}

@media (max-width: 768px) {
  .ht {
    padding: 40px 0;
  }
  .ht__head {
    margin-bottom: 32px;
  }
  .ht__title {
    font-size: 22px;
  }
  .ht__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .ht__name {
    font-size: 14px;
  }
}
