.hengsheng_certificate {
  padding: var(--component-gap);
  background: var(--bg-color);
  overflow-x: clip;
}


.hengsheng_certificate_header {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hengsheng_certificate_title {
  margin: 0;
  max-width: 729px;
  color: var(--title-text-color);
  font-family: var(--font-family-semi-bold);
  font-size: var(--title-size-h2);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.hengsheng_certificate_controls {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.hengsheng_certificate_button {
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.hengsheng_certificate_button_prev,
.hengsheng_certificate_button_next {
  border: 1px solid var(--title-text-color);
  background: #F2F2F2;
  color:#000000;
}




.hengsheng_certificate_button_next:hover,
.hengsheng_certificate_button_prev:hover {
  background: var(--color-primary);
  border-color: var(--title-text-color);
  color: var(--color-second);
}

.hengsheng_certificate_button_icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hengsheng_certificate_button_icon svg {
  width: 100%;
  height: 100%;
}

.hengsheng_certificate_stage {
  width: min(85.8431644691%, 1237px);
  aspect-ratio: 1237 / 550;
  margin: 0 auto;
  position: relative;
}

.hengsheng_certificate_card {
  position: absolute;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transform: translateX(-50%);
  transition: top 0.45s ease, left 0.45s ease, width 0.45s ease, opacity 0.32s ease, transform 0.45s ease, filter 0.45s ease;
}

.hengsheng_certificate_card[data-slot="-2"] {
  top: 32%;
  left: 9.86%;
  width: 19.73%;
  aspect-ratio: 244 / 317;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hengsheng_certificate_card[data-slot="-1"] {
  top: 20.18%;
  left: 25.18%;
  width: 22.07%;
  aspect-ratio: 273 / 395;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hengsheng_certificate_card[data-slot="0"] {
  top: 0;
  left: 50.12%;
  width: 32.17%;
  aspect-ratio: 398 / 550;
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

.hengsheng_certificate_card[data-slot="1"] {
  top: 20.18%;
  left: 73.85%;
  width: 22.07%;
  aspect-ratio: 273 / 395;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hengsheng_certificate_card[data-slot="2"] {
  top: 32%;
  left: 90.14%;
  width: 19.73%;
  aspect-ratio: 244 / 317;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hengsheng_certificate_card_inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.hengsheng_certificate_card[data-slot="0"] .hengsheng_certificate_card_inner {
  box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.25);
}

.hengsheng_certificate_card:hover .hengsheng_certificate_card_inner,
.hengsheng_certificate_card:focus-visible .hengsheng_certificate_card_inner {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

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

@media screen and (max-width: 1500px) {
  .hengsheng_certificate {
    padding: 80px 0;
  }


  .hengsheng_certificate_header {
    margin-bottom: 52px;
  }

  .hengsheng_certificate_stage {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .hengsheng_certificate {
    padding: 60px 0;
  }

  .hengsheng_certificate_controls {
    gap: 18px;
  }

  .hengsheng_certificate_button {
    width: 42px;
    height: 42px;
  }
}

@media screen and (max-width: 1200px) {
  .hengsheng_certificate_stage {
    aspect-ratio: 1.95 / 1;
  }

  .hengsheng_certificate_card[data-slot="-2"] {
    left: 11%;
    width: 18%;
  }

  .hengsheng_certificate_card[data-slot="-1"] {
    left: 27%;
    width: 22%;
  }

  .hengsheng_certificate_card[data-slot="0"] {
    left: 50%;
    width: 34%;
  }

  .hengsheng_certificate_card[data-slot="1"] {
    left: 73%;
    width: 22%;
  }

  .hengsheng_certificate_card[data-slot="2"] {
    left: 89%;
    width: 18%;
  }
}

@media screen and (max-width: 992px) {
  .hengsheng_certificate {
    padding: 50px 0;
  }

  .hengsheng_certificate_header {
    margin-bottom: 36px;
    flex-direction: column;
    align-items: center;
  }

  .hengsheng_certificate_title {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hengsheng_certificate_controls {
    width: 100%;
    justify-content: center;
  }

  .hengsheng_certificate_stage {
    aspect-ratio: 1.45 / 1;
  }

  .hengsheng_certificate_card[data-slot="-2"],
  .hengsheng_certificate_card[data-slot="2"] {
    top: 23%;
    width: 18%;
    opacity: 0.5;
  }

  .hengsheng_certificate_card[data-slot="-1"],
  .hengsheng_certificate_card[data-slot="1"] {
    top: 14%;
    width: 24%;
  }

  .hengsheng_certificate_card[data-slot="0"] {
    width: 38%;
  }
}

@media screen and (max-width: 768px) {
  .hengsheng_certificate {
    padding: 40px 0;
  }

  .hengsheng_certificate_header {
    gap: 18px;
  }

  .hengsheng_certificate_controls {
    gap: 14px;
  }

  .hengsheng_certificate_button {
    width: 40px;
    height: 40px;
  }

  .hengsheng_certificate_stage {
    aspect-ratio: 1 / 1.05;
  }

  .hengsheng_certificate_card[data-slot="-2"],
  .hengsheng_certificate_card[data-slot="2"] {
    display: none;
  }

  .hengsheng_certificate_card[data-slot="-1"] {
    top: 16%;
    left: 16%;
    width: 26%;
    opacity: 0.55;
  }

  .hengsheng_certificate_card[data-slot="0"] {
    left: 50%;
    width: 48%;
  }

  .hengsheng_certificate_card[data-slot="1"] {
    top: 16%;
    left: 84%;
    width: 26%;
    opacity: 0.55;
  }
}

@media screen and (max-width: 576px) {
  .hengsheng_certificate {
    padding: 30px 0;
  }

  .hengsheng_certificate_header {
    margin-bottom: 28px;
  }

  .hengsheng_certificate_controls {
    gap: 12px;
  }

  .hengsheng_certificate_button {
    width: 36px;
    height: 36px;
  }

  .hengsheng_certificate_stage {
    aspect-ratio: 1 / 1.18;
  }

  .hengsheng_certificate_card[data-slot="-1"],
  .hengsheng_certificate_card[data-slot="1"] {
    top: 18%;
    width: 24%;
  }

  .hengsheng_certificate_card[data-slot="0"] {
    width: 56%;
  }
}
