.yibo_company_story {
  overflow: hidden;
  padding:  var(--component-gap) 0  calc(var(--text-gap-md) * 4);
  background: #fffaf4;
}

.yibo_company_story-title {
  margin: 0;
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.yibo_company_story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--text-gap-md);
  margin: var(--component-gap-sm) auto 0;
}

.yibo_company_story-stat {
  text-align: center;
}

.yibo_company_story-stat-value {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: clamp(32px, 3.125vw, 60px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.yibo_company_story-stat-line {
  width: 100%;
  height: 1px;
  margin: var(--component-gap-xs) 0;
  background: rgba(22, 20, 19, 0.22);
}

.yibo_company_story-stat-label {
  color: #5b5757;
  font-family: var(--font-family);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: 1.35;
}

.yibo_company_story-cover {
  position: relative;
  display: block;
  margin: var(--component-gap-md) auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  aspect-ratio: 1400 / 787;
}

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

.yibo_company_story-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 4.125vw,80px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(216, 141, 69, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(255, 250, 244, 0.16);
  animation: yiboCompanyStoryPlayBreath 2.4s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.yibo_company_story-play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(216, 141, 69, 0.18);
  animation: yiboCompanyStoryPlayHalo 2.4s ease-in-out infinite;
  z-index: -1;
}

.yibo_company_story-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fffaf4;
}

@keyframes yiboCompanyStoryPlayBreath {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 1px rgba(255, 250, 244, 0.16);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 24px rgba(216, 141, 69, 0.24);
  }
}

@keyframes yiboCompanyStoryPlayHalo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.28;
  }
}

@media (max-width: 1199px) {
  .yibo_company_story-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .yibo_company_story {
    padding-bottom: var(--component-gap-md);
  }

  .yibo_company_story-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}
