.content-wrapper {
    max-width: 40rem;
    margin-inline: auto;
}
.content-wrapper > *:not(:last-child) {
    margin-bottom: var(--space-sm);
}
img{
    width: 100%;
    height: auto;
}
.video {
    cursor: pointer;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .6);
}

.video-overlay button {
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
}

.video-overlay button svg {
    vertical-align: middle;
    width: 4rem;
    height: 4rem;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}