/* Spotlight Play Button Overriide */
.paragraph.spotlight .spotlight-image .video-link {
    &::before {
        content: '';
        background-image: url(../../images/icons/play-icon.svg);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
        transform: translate(-50%, -50%);
        width: 175px;
        height: 175px;
        opacity: 0.6;
        transition: opacity 250ms;
    }

    &:hover::before {
        opacity: 1;
    }
}

/* H3 */
.field--name-field-html-text h3, .field--name-body h3, .field--type-text-long h3, .field--type-text-with-summary h3 {
    font-size: 1.5rem;
}