.runfeng_aduio_text {
  padding: 0 0 var(--content-gap);
}

.runfeng_aduio_text_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.runfeng_aduio_text_content_title {
  color: var(--title-text-color);
  font-size: var(--title-size-h1);
  font-weight: 700;
  line-height: 1.52;
  
  width: 100%;
}

.runfeng_aduio_text_content_desc {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  
  margin-left: var(--content-gap-lg);
}

.runfeng_aduio_text_content_video {
  display: block;
  position: relative;
  margin-top: calc(var(--text-gap-md)*2);
}

.runfeng_aduio_text_content_video img {
  width: 100%;
  aspect-ratio: 1437 / 750;
  object-fit: cover;
}

.runfeng_aduio_text_content_btn {
  background: rgba(40, 40, 40, 0.50);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .runfeng_aduio_text_content {
    flex-direction: column;
    gap: var(--text-gap-md);
  }

  .runfeng_aduio_text_content_desc {
    margin-left: 0;
  }

  .runfeng_aduio_text_content_video svg {
    width: 50px;
    height: 50px;
  }

}