.video {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-inline: var(--space-neutral);
  position: relative;
  width: min(100%, 48em);
  z-index: 1;
}

.video__card {
  overflow: hidden;
}

.video__card video {
  position: relative;
}

.video__button {
  background: linear-gradient(
    135deg,
    rgba(var(--rgb-blurple), 0.85) 0,
    rgba(var(--rgb-salmon), 0.85) 100%
  );
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.video__button:after {
  background: url('/assets/images/general/play.svg') center center / 0.5em 0.5em no-repeat var(--color-white);
  border-radius: 1.6em;
  box-shadow: var(--box-shadow-play);
  content: '';
  height: 1.7em;
  left: calc(50% - 1.35em);
  position: absolute;
  top: calc(50% - 0.85em);
  width: 2.7em;
}



.video--playing .video__button {
  display: none;
}

.video--full {
  padding-inline: 0;
  width: 100%;
}

.video--small {
  width: min(100%, 35em);
}

.video--medium {
  width: min(100%, 41em);
}
