.video-responsive {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-width: 100%;
    height: auto;

    .video-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;

        img {
            object-fit: contain;
            width: 100%;
            height: 100%;
        }

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius);
            background-color: rgba(255, 255, 255, 0.25);
            pointer-events: none;
        }

        &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 5rem;
            height: 5rem;
            background-image: url(../../../Icons/circle-red-play.svg);
            background-repeat: no-repeat;
            background-position: 50% 50%;
            background-size: 100% 100%;
            pointer-events: none;
        }
    }

    .video-cookie {
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 10px inset rgba(0, 0, 0, 0.2);
        font-size: 0.875rem;

        a {
            display: inline-block !important;
        }
    }

    iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
