.af-hero {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  line-height: 0;
}

.af-hero__video,
.af-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.af-hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 36px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  font: 600 18px/1 sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition:
    background 0.2s,
    opacity 0.25s;
}

.af-hero__play:hover {
  background: rgba(0, 0, 0, 0.4);
}

.af-hero.is-playing .af-hero__play {
  opacity: 0;
  pointer-events: none;
}
