.hs {
  background: var(--vierlot-bg);
  padding: 60px 0;
  font-family: var(--vierlot-font);
}
.hs__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}
.hs__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EAE5DB;
}
.hs__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hs__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hs__eyebrow {
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--vierlot-text-light);
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 16px;
}
.hs__heading {
  font-family: var(--vierlot-font);
  font-size: 28px;
  font-weight: 400;
  color: var(--vierlot-text);
  line-height: 1.3;
  margin: 0 0 12px;
}
.hs__subheading {
  font-family: var(--vierlot-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  margin: 0 0 24px;
  line-height: 1.45;
}
.hs__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.hs__body p {
  font-family: var(--vierlot-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.6;
  margin: 0;
}
.hs__btn {
  font-size: 16px;
  min-width: 140px;
  height: 40px;
}

@media (max-width: 768px) {
  .hs {
    padding: 40px 0;
  }
  .hs__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hs__heading {
    font-size: 24px;
  }
  .hs__subheading {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hs__body p {
    font-size: 14px;
    line-height: 1.5;
  }
  .hs__body {
    gap: 16px;
    margin-bottom: 24px;
  }
  .hs__btn {
    align-self: center;
    max-width: 200px;
  }
}
