/* V10.6 — homepage hero composition based on the supplied reference. */
body > main > .hero {
  box-sizing: border-box;
  height: 100svh;
  min-height: 700px;
  padding: 92px 3.15vw 44px;
  background: #f6f6f4;
  isolation: isolate;
}

body > main > .hero .hero-image {
  top: 92px;
  height: calc(100% - 92px);
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

body > main > .hero::after {
  inset: 92px 0 0;
  background: linear-gradient(90deg, rgba(249, 249, 248, .20) 0%, rgba(249, 249, 248, .08) 38%, rgba(249, 249, 248, 0) 62%);
}

body > main > .hero .hero-copy {
  position: absolute;
  z-index: 3;
  top: 27.2%;
  left: 3.15vw;
  width: auto;
  padding: 0;
}

body > main > .hero .hero-pretitle {
  margin: 0 0 clamp(20px, 2vw, 31px) .4vw;
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 470;
}

body > main > .hero h1 {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(66px, 6.55vw, 106px);
  line-height: .93;
  letter-spacing: -.072em;
  font-weight: 650;
}

body > main.zh-site > .hero h1 {
  font-size: clamp(70px, 6.9vw, 112px);
  line-height: 1.02;
  letter-spacing: -.075em;
}

body > main > .hero .hero-pagination {
  top: 132px;
  right: 3.15vw;
}

body > main > .hero .hero-meta {
  bottom: 46px;
  left: 3.15vw;
  right: 3.15vw;
}

body > main > .hero .hero-meta a {
  min-width: 174px;
  gap: 28px;
  justify-content: space-between;
}

@media (max-width: 900px) {
  body > main > .hero {
    height: 100svh;
    min-height: 760px;
    padding: 72px 20px 30px;
  }

  body > main > .hero .hero-image {
    top: 72px;
    height: calc(100% - 72px);
    object-position: 68% center;
  }

  body > main > .hero::after {
    inset: 72px 0 0;
    background: linear-gradient(90deg, rgba(249, 249, 248, .72) 0%, rgba(249, 249, 248, .43) 52%, rgba(249, 249, 248, .08) 100%);
  }

  body > main > .hero .hero-copy {
    top: 25%;
    left: 20px;
    right: 20px;
  }

  body > main > .hero .hero-pretitle {
    margin: 0 0 21px 2px;
    font-size: clamp(20px, 6vw, 26px);
  }

  body > main > .hero h1 {
    white-space: normal;
    font-size: clamp(45px, 12.8vw, 64px);
    line-height: .9;
    letter-spacing: -.07em;
  }

  body > main.zh-site > .hero h1 {
    font-size: clamp(47px, 13.2vw, 66px);
    line-height: 1.02;
  }

  body > main > .hero .hero-pagination {
    top: 92px;
    right: 20px;
  }

  body > main > .hero .hero-meta {
    bottom: 30px;
    left: 20px;
    right: 20px;
  }

  body > main > .hero .hero-meta p {
    display: block;
    max-width: 145px;
    font-size: 9px;
    line-height: 1.45;
  }

  body > main > .hero .hero-meta a {
    min-width: 154px;
    margin-left: auto;
  }
}

@media (max-width: 430px) {
  body > main > .hero {
    min-height: 720px;
  }

  body > main > .hero .hero-copy {
    top: 24%;
  }

  body > main > .hero h1 {
    font-size: clamp(43px, 12.3vw, 53px);
  }

  body > main.zh-site > .hero h1 {
    font-size: clamp(44px, 12.6vw, 55px);
  }

  body > main > .hero .hero-meta {
    align-items: flex-end;
    gap: 18px;
  }

  body > main > .hero .hero-meta a {
    min-width: 142px;
    gap: 18px;
    font-size: 12px;
  }
}

