.hero-image {
  position: relative;
  display: flex;
  max-width: 1920px;
  margin: 0 auto 120px;
}

.welcome-image {
  margin: 8px;
  width: calc(100% - 16px);
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-image-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  right: 32px;
  z-index: 1;
  color: white;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.image-text-desc {
  font-size: 20px;
  font-family: Medium;
  line-height: 1.7;
  margin-bottom: 8px;
}

.image-text-title {
  font-size: 114px;
  font-family: Semi;
  line-height: 1;
}

.hero-image-bg {
  position: absolute;
  left: 8px;
  bottom: 8px;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  aspect-ratio: 16/9;
}

@media (max-width: 1100px) {
  .welcome-image {
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
  .hero-image-bg {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
  .hero-image-content {
    bottom: 48px;
  }
  .image-text-title {
    font-size: 64px;
  }
}
@media (max-width: 768px) {
  .hero-image {
    margin: 0 auto 48px;
  }
  .hero-image-content {
    max-width: 220px;
  }
  .image-text-desc {
    font-size: 14px;
    line-height: 1.4;
  }
  .image-text-title {
    font-size: 32px;
    line-height: 1.4;
  }
  .welcome-image, .hero-image-bg {
    aspect-ratio: 360/470;
  }
}