.hengsheng_factory_intro {
  padding: 100px 0 120px;
  background: var(--bg-color);
}

.hengsheng_factory_intro .container {
  max-width: none;
  padding-left: 240px;
  padding-right: 240px;
}

.hengsheng_factory_intro_main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 683px) minmax(0, 566px);
  align-items: start;
  justify-content: flex-start;
  column-gap: 191px;
}

.hengsheng_factory_intro_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hengsheng_factory_intro_eyebrow {
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-family-bold);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}

.hengsheng_factory_intro_title {
  width: 100%;
  max-width: 683px;
  margin: 24px 0 0;
  color: var(--title-text-color);
  font-family: var(--font-family-bold);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.33;
  text-transform: capitalize;
}

.hengsheng_factory_intro_copy {
  width: 577px;
  max-width: 100%;
  margin-top: 28px;
}

.hengsheng_factory_intro_lead {
  display: grid;
  grid-template-columns: 1px minmax(0, 528px);
  align-items: start;
  column-gap: 48px;
}

.hengsheng_factory_intro_lead_line {
  display: block;
  width: 1px;
  height: 84px;
  background: var(--title-text-color);
}

.hengsheng_factory_intro_lead_text {
  margin: 0;
  color: var(--title-text-color);
  font-family: var(--font-family-semi-bold);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4375;
  text-transform: capitalize;
}

.hengsheng_factory_intro_desc {
  width: 100%;
  max-width: 528px;
  margin: 12px 0 0 49px;
  color: var(--text-color);
  font-family: var(--font-family-semi-bold);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4375;
  text-transform: capitalize;
}

.hengsheng_factory_intro_button {
  min-width: 160px;
  min-height: 40px;
  margin-top: 44px;
  margin-left: 49px;
  padding: 8px 26px;
  border-radius: 30px;
  background: var(--title-text-color);
  color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-family-semi-bold);
  font-size: 15.699px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 0.28s ease, transform 0.28s ease;
}

.hengsheng_factory_intro_button:hover {
  color: #f5f5f5;
  background: var(--btn-hover);
  transform: translateY(-2px);
}

.hengsheng_factory_intro_media {
  width: 100%;
  max-width: 566px;
  height: 517px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hengsheng_factory_intro_media:hover {
  transform: scale(1.05);
}

.hengsheng_factory_intro_media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1599px) {
  .hengsheng_factory_intro .container {
    padding-left: 120px;
    padding-right: 120px;
  }

  .hengsheng_factory_intro_main {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 566px);
    column-gap: 72px;
  }
}

@media (max-width: 1399px) {
  .hengsheng_factory_intro {
    padding: 80px 0 100px;
  }

  .hengsheng_factory_intro .container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hengsheng_factory_intro_title {
    margin-top: 20px;
    font-size: 32px;
  }

  .hengsheng_factory_intro_copy {
    width: 100%;
    margin-top: 28px;
  }

  .hengsheng_factory_intro_lead {
    column-gap: 36px;
  }

  .hengsheng_factory_intro_desc {
    margin-top: 24px;
  }

  .hengsheng_factory_intro_button {
    margin-top: 44px;
    margin-left: 49px;
  }
}

@media (max-width: 1199px) {
  .hengsheng_factory_intro {
    padding: 70px 0 90px;
  }

  .hengsheng_factory_intro .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hengsheng_factory_intro_main {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .hengsheng_factory_intro_title {
    max-width: none;
  }

  .hengsheng_factory_intro_lead {
    grid-template-columns: 1px minmax(0, 1fr);
    column-gap: 32px;
  }

  .hengsheng_factory_intro_desc {
    max-width: none;
    width: auto;
    margin-top: 24px;
    margin-left: 33px;
  }

  .hengsheng_factory_intro_button {
    margin-top: 44px;
    margin-left: 33px;
  }

  .hengsheng_factory_intro_media {
    max-width: none;
    height: auto;
    aspect-ratio: 566 / 517;
  }
}

@media (max-width: 767px) {
  .hengsheng_factory_intro {
    padding: 50px 0 60px;
  }

  .hengsheng_factory_intro .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hengsheng_factory_intro_main {
    gap: 28px;
  }

  .hengsheng_factory_intro_eyebrow {
    font-size: 20px;
  }

  .hengsheng_factory_intro_title {
    margin-top: 20px;
    font-size: 28px;
    line-height: 1.28;
  }

  .hengsheng_factory_intro_copy {
    margin-top: 32px;
  }

  .hengsheng_factory_intro_lead {
    column-gap: 20px;
  }

  .hengsheng_factory_intro_lead_line {
    height: 72px;
  }

  .hengsheng_factory_intro_lead_text,
  .hengsheng_factory_intro_desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .hengsheng_factory_intro_desc {
    margin-top: 16px;
    margin-left: 21px;
  }

  .hengsheng_factory_intro_button {
    min-width: 148px;
    min-height: 44px;
    margin-top: 44px;
    margin-left: 21px;
    padding: 10px 22px;
    font-size: 14px;
  }
}
