.article:has(.at-media) {
    margin-block: 0;
}

.at-media {
    position: relative;
}

.at-media__link {
    position: absolute;
    inset: 0;
    text-decoration: none;
    color: inherit;
}

.at-media__vimeoVideo {
    display: block;
    width: 100%;
}

.at-media__media {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1280px;
    height: 0;
    object-fit: cover;
}

.--hasVideoVimeo {
    position: relative;
    width: 100%;
    height: unset;
    overflow: hidden;
    text-align: center;
}

.at-media__videoWrapper {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 29.25%;
}

.at-media__videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/**
 * Controls
 */

.player__controls {
    position: absolute;
    bottom: 8px;
    left: 8px;
    border-radius: 8px;
    background: #555;
    z-index: 1;
}

.btnPlayPause {
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    text-indent: -9999px;
    background-color: #ddd;
    mask-position: center;
    mask-size: 80%;
    mask-repeat: no-repeat;
}

.btnPlayPause:hover {
    background-color: #fff;
}

.btnPlayPause.play {
    -webkit-mask-image: url(play-circle.svg);
    mask-image: url(play-circle.svg);
}

.btnPlayPause.pause {
    -webkit-mask-image: url(pause-circle.svg);
    mask-image: url(pause-circle.svg);
}

