.gdpr-info-box {
    min-height: 200px;
    justify-content: center;
    .video-consentGate {
        max-width: 500px;
        align-items: center;
        background: #f6f5f4;
        border: 0.5px solid #504f64;
        block-size: 100%;
        color: #504f64;
        display: flex;
        inset: 0;
        justify-content: center;
        padding: 2rem 1.5rem;
        text-align: center;
        z-index: 15;
        flex-direction: column;
        gap: 1rem;

        .video-consentGate-text {
            margin: 0;
            font-size: 1rem;
            line-height: 1.6;
            max-inline-size: 28rem;
        }

        .video-consentGate-button {
            align-items: center;
            background: #919191;
            border: none;
            border-radius: 100px;
            color: #fff;
            cursor: pointer;
            display: inline-flex;
            gap: 0.5rem;
            letter-spacing: 0.02em;
            padding: 0.75rem 1.5rem;
            transition: background 0.2s ease, transform 0.2s ease;
            font-size: 0.75rem;

            &::after {
                content: "→";
                font-size: 0.9rem;
                line-height: 1;
            }

            &:hover {
                background: #616161;
            }

            &:active {
                transform: translateY(1px);
            }

            &:focus-visible {
                outline: 2px solid #504f64;
                outline-offset: 3px;
            }
        }
    }
}
