.video {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-left: var(--space-neutral);
  padding-right: 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:
    0 0.2em 0.4em -0.2em rgba(var(--rgb-black), 0.2),
    0 0.4em 0.8em -0.4em rgba(var(--rgb-black), 0.4),
    0 0.6em 1.2em -0.6em rgba(var(--rgb-black), 0.6)
  ;
  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-left: 0;
  padding-right: 0;
  width: 100%;
}

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

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