.ll-video-pitch {
  padding: clamp(32px, 6vw, 56px) 0;
  background: var(--ll-video-bg, #f9fafb);
}

.ll-video-pitch__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

@media (max-width: 991px) {
  .ll-video-pitch__grid {
    grid-template-columns: 1fr;
  }
}

.ll-video-pitch__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(17, 24, 39, 0.2);
  background: #000;
  aspect-ratio: 16 / 9;
}

.ll-video-pitch__poster picture,
.ll-video-pitch__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ll-video-pitch__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ll-video-pitch__play::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 4px;
}

.ll-video-pitch__play:hover,
.ll-video-pitch__play:focus {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}

.ll-video-pitch__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ll-video-pitch__embed iframe,
.ll-video-pitch__embed video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: #000;
}

.ll-video-pitch__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ll-video-pitch__title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.ll-video-pitch__subtitle {
  font-size: 18px;
  margin: 0;
  color: #4b5563;
}

.ll-video-pitch__kpis {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #111827;
}

.ll-video-pitch__cta {
  align-self: flex-start;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .ll-video-pitch__play {
    transition: none;
  }
}
