/* 首页完整横幅：人物与背景是一张图，避免抠图造成的边缘或面部损坏。 */
body[data-page="home"] .hero {
  background:
    linear-gradient(90deg, rgba(7, 9, 28, .98) 0%, rgba(7, 9, 28, .94) 31%, rgba(7, 9, 28, .56) 55%, rgba(7, 9, 28, .08) 100%),
    url('/hero-v4.png') center center / cover no-repeat;
}

body[data-page="home"] .hero::before {
  display: none;
}

body[data-page="home"] .hero::after {
  display: none;
}

@media (max-width: 720px) {
  body[data-page="home"] .hero {
    background:
      linear-gradient(90deg, rgba(7, 9, 28, .96) 0%, rgba(7, 9, 28, .77) 58%, rgba(7, 9, 28, .36) 100%),
      url('/hero-v4.png') 66% center / cover no-repeat;
  }
}
