.spg-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}
.spg-video .spg-video__player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.spg-video__cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: #000;
}
.spg-video .spg-video__play {
    display: block;
    width: 200px;
    height: auto;
    aspect-ratio: 1;
    max-width: 45%;
    max-height: 85%;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
}
.spg-video__play img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.spg-video__play:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 6px;
}
.spg-video__error {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 14px;
}
.spg-video__error a { color: #ff6100; }
.spg-video [hidden] { display: none !important; }
