[data-component="VideoPreview"] {
  height: 100%;
  overflow: hidden;
  transition-duration: 250ms;
  transition-property: scale;
  width: 100%;

  &::part(base) {
    height: 100%;
  }

  &::part(body) {
    flex-grow: 1;
  }

  &:has(a:hover) {
    scale: 1.01;
  }

  &.played {
    filter: saturate(0.25);
  }
}
