.introduction {
  min-height: calc(100vh - 60px); /*fallback*/
  min-height: calc(100svh - 60px);
  position: relative;
  background-color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.introduction .blob-img {
  position: absolute;
  top: 0;
  left: 0;
}

.introduction-text {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--inline-padding);
  padding-top: 122px;
  padding-bottom: 164px;
}

.introduction-text > * {
  max-width: 586px;
}

.introduction-text h1 {
  position: relative;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 52px;
  line-height: 64px;
  margin-bottom: 16px;
}

.introduction-text p {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 32px;
}

.introduction-text em {
  color: var(--text-heighlight);
  font-weight: 500;
}

.text-corner {
  position: absolute;
  top: -32px;
  right: -16px;
}

.introduction-tablet-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.introduction-tablet-image img {
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 182px);
}

.mobile-image {
  display: none;
}

@media screen and (max-width: 1450px) {
  .blob-img {
    top: 100px;
  }

  .introduction .mobile-image {
    display: inline-block;
  }

  .introduction-tablet-image {
    margin-left: auto;
    margin-bottom: 64px;
  }

  .introduction-tablet-image img {
    max-height: unset;
    width: 100%;
    height: auto;
  }

  .introduction .desktop-image {
    display: none;
  }

  .introduction {
    flex-direction: column;
    align-items: flex-start;
  }
  .introduction-text {
    padding-block: 175px 0;
    justify-content: flex-start;
    min-height: unset;
    margin-right: var(--inline-padding);
  }

  .introduction h1 {
    font-size: 28px;
    line-height: 1;
  }

  .introduction-text p {
    font-size: 16px;
    line-height: 24px;
  }
}