.insight-custom-youtube-container {
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.insight-youtube-thumbnail-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}

.insight-youtube-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.insight-play-button-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20%; /* The play button will be 20% of the width of the thumbnail */
    height: auto;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1;
}

.insight-play-button-svg:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.insight-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.insight-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
