.vb-hero {
  position: relative;
  width: 100%;
}

.vb-hero__frame {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.vb-hero__content {
  position: relative;
  z-index: 1;
}

.vb-hero__inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;

  padding: 80px 80px 64px 80px;
  gap: 100px;

  background: linear-gradient(90deg, #7f6252 0%, #dcc2b7 100%);
}

.vb-hero__title {
  color: #fff;
  text-align: center;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

@media (max-width: 768px) {
  .vb-hero__inner {
    padding: 32px 20px;
  }

  .vb-hero__title {
    font-size: 40px;
  }
}
