.video-page .video-heading .heading {
    color: var(--primary);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio = 9/16 = 0.5625 = 56.25% */
    height: 0;
    overflow: hidden;
    box-shadow: 0px 3px 6px var(--neutral-light);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}