.hb {
  position: relative;
  width: 100%;
  height: clamp(480px, 56vw, 700px);
  background: linear-gradient(135deg, #F5F2ED 0%, #ECE5D6 50%, #DDD3BD 100%);
  overflow: hidden;
  font-family: var(--vierlot-font);
}
.hb__media,
.hb__media img,
.hb__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hb__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 237, 0.35);
  pointer-events: none;
  z-index: 1;
}
.hb__media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75%;
  background: linear-gradient(to bottom,
    rgba(245, 242, 237, 0) 0%,
    rgba(245, 242, 237, 0.75) 50%,
    rgba(245, 242, 237, 0.95) 100%);
  pointer-events: none;
  z-index: 2;
}
.hb__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}
.hb__heading {
  font-family: var(--vierlot-font);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  color: var(--vierlot-text);
  letter-spacing: 0.01em;
  max-width: 900px;
}
.hb__subheading {
  font-family: var(--vierlot-font);
  font-size: 20px;
  font-weight: 300;
  margin: 16px 0 0;
  color: var(--vierlot-text-light);
  max-width: 720px;
  line-height: 1.4;
}
.hb__cta {
  margin-top: 32px;
  border-color: var(--vierlot-text);
  color: var(--vierlot-text);
  background: transparent;
  font-size: 18px;
  min-width: 160px;
  height: 44px;
}
.hb__cta:hover {
  background: var(--vierlot-text);
  color: #F2F2ED;
}

@media (max-width: 768px) {
  .hb {
    height: clamp(360px, 78vw, 520px);
  }
  .hb__content {
    bottom: 48px;
    padding: 0 16px;
  }
  .hb__heading {
    font-size: 28px;
    line-height: 1.3;
  }
  .hb__subheading {
    font-size: 15px;
    margin-top: 12px;
  }
  .hb__cta {
    margin-top: 24px;
    font-size: 16px;
    min-width: 140px;
    height: 42px;
  }
}
