.hp {
  background: var(--vierlot-bg);
  padding: 60px 0;
  font-family: var(--vierlot-font);
}
.hp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.hp__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: 0;
  padding: 0;
}
.hp__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--vierlot-line);
}
.hp__img,
.hp__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hp__card:hover .hp__img,
.hp__card:hover .hp__media img {
  transform: scale(1.03);
}
.hp__title {
  font-family: var(--vierlot-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0 0 8px;
  line-height: 1.4;
  max-width: 280px;
}
.hp__text {
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
}

@media (max-width: 768px) {
  .hp {
    padding: 40px 0;
  }
  .hp__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
