/* .wide-video {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(var(--g9-mobile), 5vw, var(--g9-desktop));
  min-height: clamp(320px, 30vw, 400px);
  border-radius: 12px;
}
@media (any-hover: hover) {
  .wide-video:hover .wide-video__play {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
.wide-video__img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.wide-video__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32));
}
.wide-video__play {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  transform: scale3d(1, 1, 1);
  will-change: transform;

  position: absolute;
  top: calc(50% - 36px);
  left: calc(50% - 36px);
}
.wide-video__play svg {
  width: 22px;
  flex: 0 0 22px;
  position: relative;
  left: 3px;
  top: 1px;
}
.wide-video__text {
  position: relative;
  z-index: 1;
} */