.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: 24px;
}
.ht__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px 42px;
  border: 1px solid var(--vierlot-line);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.25s ease;
}
.ht__item:hover {
  border-color: var(--vierlot-text-muted);
}
.ht__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: 55%;
  font-family: var(--vierlot-font);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vierlot-text-muted);
  text-align: right;
  line-height: 1.3;
}
.ht__icon {
  width: 40px;
  height: 40px;
  color: var(--vierlot-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ht__icon svg {
  width: 40px;
  height: 40px;
}
.ht__name {
  font-family: var(--vierlot-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0 0 10px;
  line-height: 1.4;
  max-width: 230px;
}
.ht__name--bold {
  font-weight: 700;
}
.ht__body {
  font-family: var(--vierlot-font);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.55;
  margin: 0;
  max-width: 230px;
}
.ht__details {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: var(--vierlot-font);
  font-size: 11px;
  font-weight: 400;
  color: var(--vierlot-text-muted);
  transition: color 0.25s ease;
}
.ht__item:hover .ht__details {
  color: var(--vierlot-text);
}

.ht__case {
  display: block;
  text-align: center;
  margin: 32px auto 0;
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.ht__case:hover,
.ht a.ht__case:hover {
  opacity: 0.65;
}
.ht__legal {
  display: block;
  text-align: center;
  margin: 22px auto 0;
  font-family: var(--vierlot-font);
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ht__legal:hover,
.ht a.ht__legal:hover {
  color: var(--vierlot-text-light);
}

@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: 16px;
  }
  .ht__item {
    padding: 26px 14px 38px;
  }
  .ht__name {
    font-size: 14px;
  }
  .ht__body {
    font-size: 12px;
  }
  .ht__badge {
    font-size: 8.5px;
    top: 8px;
    right: 8px;
  }
  .ht__case {
    font-size: 13px;
  }
  .ht__legal {
    font-size: 11px;
  }
}
