.hero {
  position: relative;
  max-width: 1920px;
  margin: 0 auto 140px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 32px 0;
  margin: 0 auto;
  max-width: 864px;
}

.hero-h1 {
  text-align: center;
  margin: 20px 0;
}

.hero-subtitle {
  color: #4B5563;
  text-align: center;
  max-width: 640px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin: 40px 0 56px;
}

.hero-filter {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.hero-img {
  width: 1220px;
  aspect-ratio: 1220/500;
  border-radius: 20px 20px 0 0;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.16);
  padding: 10px 10px 0 10px;
  overflow: hidden;
}
.hero-img img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 1300px) {
  .hero-img {
    width: 94vw;
  }
}
@media (max-width: 768px) {
  .hero {
    margin: 0 auto 48px;
  }
  .hero-wrap {
    padding: 104px 16px 0;
  }
  .hero-wrap .tagline {
    padding: 4px 9px;
  }
  .hero-btns {
    margin: 40px 0;
  }
  .hero-img {
    border-radius: 6px 6px 0 0;
    padding: 3px 3px 0 3px;
  }
  .hero-img img {
    border-radius: 4px 4px 0 0;
  }
  .hero-filter {
    height: 30px;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
}