.lt-video-item-link {
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
  background-color: transparent;
  text-align: start;

}

.lt-video-item-link__image {
  position: relative;
  border-radius: var(--border-radius-base);

  aspect-ratio: 16 / 9;
  overflow: hidden;
  width: 100%;
}

.lt-video-item-link__image:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  font-size: 0;
  content: "";
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 30px 0 30px 60px;
  transition: transform 0.6s ease;
  transform: translate(-50%, -50%);
}

.lt-video-item-link__image:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  background-color: rgba(0, 0, 0, 0.15);
}

.lt-video-item-link__image:active:before,
.lt-video-item-link__image:hover:before {
  transform: translate(-50%, -50%) scale(1.1);
}
.lt-video-item-link__image img {
  display: block;
  width: 100%;
}

.lt-modal {
  max-width: 980px;
  width: 100%;
  border: 0;
  padding: 0;
  background-color: transparent;
}

.lt-modal__ratio {
  position: relative;
  width: 100%;
}

.lt-modal__ratio::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.lt-modal__ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lt-modal iframe {
  border: 0;
}

.lt-modal__actions {
  display: flex;
  justify-content: flex-end;
}
.lt-modal__close {
  color: #fff;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  box-shadow: none;
  touch-action: manipulation;
  font-size: 2rem;
}

.lt-modal__icon line {
  stroke: #fff;
  stroke-width: 2px;
}

.lt-modal::backdrop {
  background: rgb(0 0 0 / 0.7);
}
