.landing-video-section {
  padding: 60px 20px 80px;
  background: var(--landing-video-background, #fff);
}

.landings .landing-video-section,
.editor-styles-wrapper .landing-video-section {
  padding: 26px 20px 60px 80px;
}

.landing-video-section__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.landing-video-section__title {
  max-width: 960px;
  margin: 0;
  color: #202060;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
}

.landing-video-section__frame {
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #3c3c73;
  overflow: hidden;
}

.landing-video-section__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 60, 115, 0.58);
  pointer-events: none;
}

.landing-video-section__thumbnail,
.landing-video-section__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.landing-video-section__thumbnail {
  object-fit: cover;
}

.landing-video-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(32, 32, 96, 0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.landing-video-section__play span {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #8d8fb7;
  transform: translate(-50%, -50%);
}

.landing-video-section__play:hover,
.landing-video-section__play:focus {
  background: #f5f7ff;
}

.landing-video-section__frame.is-playing::after,
.landing-video-section__frame.is-playing .landing-video-section__thumbnail,
.landing-video-section__frame.is-playing .landing-video-section__play {
  display: none;
}

.landing-video-section__cta {
  min-width: 469px;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 4px;
  background: #0090ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
}

.landing-video-section__cta:hover,
.landing-video-section__cta:focus {
  color: #fff;
  background: #5977e4;
  text-decoration: none;
}

@media only screen and (max-width: 991px) {
  .landing-video-section,
  .landings .landing-video-section,
  .editor-styles-wrapper .landing-video-section {
    padding: 48px 20px 64px;
  }

  .landing-video-section__title {
    font-size: 34px;
    line-height: 44px;
  }
}

@media only screen and (max-width: 640px) {
  .landing-video-section,
  .landings .landing-video-section,
  .editor-styles-wrapper .landing-video-section {
    padding: 40px 20px 56px;
  }

  .landing-video-section__inner {
    gap: 24px;
  }

  .landing-video-section__title {
    font-size: 28px;
    line-height: 36px;
  }

  .landing-video-section__play {
    width: 60px;
    height: 60px;
  }

  .landing-video-section__cta {
    width: 100%;
    min-width: 0;
  }
}
