
.hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;

  .image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(to bottom, transparent 15%, black);


    img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 100%;
      opacity: 0.8;

      &:after {
        content: '';
        position: absolute;
        inset: 0;
      }
    }
  }

  .hero-text {
    position: relative;
    font-size: var(--fs-hero-home);
    font-weight: var(--fw-bold);
    z-index: 1;
    display: grid;
    align-content: flex-end;
    line-height: 1;
    margin-block-end: 10rem;
  }
}

.main-content {
  margin-block-start: 100vh;
}
