.hero-alt {
  height: calc(100vh - 75px);

  @media (max-width: 1024px) {
    height: 300px;
  }
}

.hero-alt-figure {
  position: relative;
  height: 100%;

  img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.hero-alt-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 92px;
  z-index: 10;
}

.hero-alt-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-alt-content {
  max-width: 840px;

  @media (max-width: 1024px) {
    display: none;
  }

  h1 {
    font-family: var(--ff-secondary);
    font-weight: 700;
    font-size: 83px;
    color: #fffaee;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 24px;

    @media (max-width: 1240px) {
      font-size: 43px;
      letter-spacing: normal;
    }
  }

  p {
    padding: 0;
    margin: 0;
    color: #fffaee;
    font-family: var(--ff-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    max-width: 800px;
  }
}