[data-template="playButton"] {
  --icon-size: 40px;
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  aspect-ratio: 1 / 1;
  font-size: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

[data-template="playButton"]::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  background: var(--color-play-button-icon);
}

[data-template="playButton"]:hover::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-hover);
}

[data-template="playButton"] .playButton__playIcon--pause {
  display: none;
}

[data-template="playButton"].pause .playButton__playIcon--pause {
  display: block;
}

[data-template="playButton"].pause .playButton__playIcon--play {
  display: none;
}

@media only screen and (max-width: 1024px) {

  [data-template="playButton"] {
    --icon-size: 32px;
  }

}