.xili-story {
  padding: var(--length-120) 0 var(--length-100) 0;
}

.xili-story-wrapper {
  display: flex;
  gap: var(--length-100);
  align-items: center;
}

.xili-story-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.xili-story-right {
  width: 34.25%;
  flex-shrink: 0;
}

.xili-story-line {
  width: 80px;
  height: 2px;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.10);
  margin: var(--length-48) 0;
}

.xili-story-desc * {
  color: #666;
  text-align: justify;
  font-size: var(--font-24);
  font-weight: 400;
  line-height: 1.5;
}

.xili-story-founder {
  margin-top: var(--length-48);
  position: relative;
  align-self: flex-end;
}

.xili-story-founder-text {
  color: #333;
  font-size: var(--font-36);
  font-weight: 500;
  line-height: 1.2;
}

.xili-story-founder-decorator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 19.8%);
  width: 260%;
  z-index: -1;
}

.xili-story-founder-decorator img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.xili-story-img-wrapper {
  width: 100%;
  border-radius: var(--length-20);
  overflow: hidden;
}

.xili-story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1500px) {
  .xili-story-founder-decorator{
    width: 150%;
  }
}

@media screen and (max-width: 768px) {
  .xili-story-wrapper {
    flex-direction: column-reverse;
    gap: var(--length-60);
  }

  .xili-story-right,
  .xili-story-left {
    width: 100%;
  }

  .xili-story-founder-decorator{
    bottom: 0;
    right: 0;
    left: auto;
    transform: none;
  }
}