.video-list {
  position: relative;
}
.video-list__wrapper {
  position: relative;
}
.video-list__item {
  overflow: hidden;
  position: relative;
  padding: 0 72px;
}
.video-list__text{
  margin-bottom: 34px;
  position: relative;
}
.video-list__title{
  margin-bottom: 4px;
}
.video-list__image-wrapper{
  width: 27%;
  max-width: 288px;
  min-width: 180px;
  padding-right: 56px;
  flex-shrink: 0;
}
.video-list__item-image{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.video-list__text-wrapper{
  max-width: 80%;
}
.video-list__image-inner{
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.video-list__item-popup-video{
  width: 40px;
  height: 40px;
  background: var(--color-base);
  display: block;
  position: absolute;
  bottom: 24px;
  left: 24px;
  transition: transform ease 0.3s;
  cursor: pointer;
}
.video-list__item-popup-video:before{
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  transition: transform ease 0.3s;
  border: 6px solid transparent;
  border-left: 11px solid #fff;
  z-index: 2;
}
.video-list__item-popup-video:hover {
    transform: scale(1.2);
}

.video-list .svg-quotes{
  position: absolute;
  top: 0.3em;
  left: 0.1em;
}
.video-list .svg-quotes,
.video-list .svg-quotes svg {
  width: 0.9666em;
  height: 0.7em;
}
.video-list .svg-quotes use{
  fill: var(--color-base);
}

@media(max-width: 991px){
  .video-list__image-wrapper{
    padding-right: 32px;
  }
  .video-list__item{
    padding: 0 32px;
  }
}

@media(max-width: 599px){
  .video-list__item{
    flex-direction: column;
    padding: 0;
  }
  .video-list__image-wrapper{
    padding-right: 0;
    padding-bottom: 20px;
    padding-top: 0;
    width: 100%;
    max-width: 250px;
  }
  .video-list__text-wrapper{
    width: 100%;
    max-width: 100%;
  }
}
.video-list .video-list__item-wrapper{
  width: clamp(344px, 50%, 600px);
  aspect-ratio: 16 / 9; /* или 4/3, 1/1 */
  height: auto;
}
.video-list .video-list__item-video{
  min-height: auto;
}
.video-button{
  position: absolute;
  left: 32px;
  bottom: 32px;
  transition: transform .3s ease;
    transform: scale3d(1, 1, 1);
    will-change: transform;
}
.video-container .video-list-one{
  display: flex;
  flex-wrap: wrap-reverse;
}
@media (max-width: 768px) {
  .video-container .video-list-one {
    gap: 12px;
}
  .video-container .video-list.video-list-one .video-text {
    font-size: var(--fs-14);
    line-height: var(--fs-14-line-height);
  }
  .video-list-one .video-list__item-wrapper{
    width: 100%;
    aspect-ratio: 43/25; /* или 4/3, 1/1 */
    height: auto;
  }
}
@media (any-hover: hover) {
  .wide-video:hover .video-button {
      transform: scale3d(1.1, 1.1, 1.1);
  }
}
