
.yj002-lazy-video-module {
  width: 100%;
  padding: 46px 0;
  background: transparent;
  box-sizing: border-box;
}

.yj002-lazy-video-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.yj002-video-title {
  text-align: center;
  margin-bottom: 26px;
  padding: 0 16px;
  box-sizing: border-box;
}

.yj002-video-title h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
  color: #111;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.yj002-video-title p {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.yj002-video-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.yj002-video-cover-img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.yj002-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
  transition: background 0.35s ease;
}

.yj002-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background 0.25s ease;
}

.yj002-video-play span {
  display: block;
  margin-left: 6px;
  font-size: 34px;
  line-height: 1;
  color: #111;
}

.yj002-video-card:hover .yj002-video-cover-img {
  transform: scale(1.025);
}

.yj002-video-card:hover .yj002-video-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.yj002-video-card:hover .yj002-video-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fff;
}

.yj002-video-card video {
  width: 100%;
  display: block;
  height: auto;
  background: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .yj002-lazy-video-module {
    padding: 34px 0;
  }

  .yj002-video-title {
    margin-bottom: 20px;
    padding: 0 12px;
  }

  .yj002-video-title h2 {
    font-size: 26px;
  }

  .yj002-video-title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .yj002-video-card {
    border-radius: 14px;
  }

  .yj002-video-play {
    width: 62px;
    height: 62px;
  }

  .yj002-video-play span {
    font-size: 26px;
    margin-left: 4px;
  }
}
