[data-template="playButton"] {
    --icon-size: 40px;
    position: relative;
    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;
}
[data-template="playButton"]:hover::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    content: "";
    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;
    }

}