.blendenraum-security-widget {
    margin: 18px 0;
}

.blendenraum-security-challenge {
    width: 100%;
}

.blendenraum-security-status {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 10px 14px;
    border: 1px solid #c9d9e6;
    border-radius: 12px;
    background: #f6fafe;
    color: #17324a;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.blendenraum-security-lens {
    display: inline-grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #0a243a, #0b5d96);
    box-shadow: 0 5px 15px rgba(4, 31, 52, .18);
}

.blendenraum-security-lens svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.blendenraum-security-status.is-loading .blendenraum-security-lens svg {
    animation: blendenraum-lens-turn 1.8s linear infinite;
}

.blendenraum-security-status.is-complete {
    border-color: #a7d5c1;
    background: #f0faf6;
    color: #17613f;
}

.blendenraum-security-status.is-error {
    border-color: #e9b7b7;
    background: #fff5f5;
    color: #8b2f2f;
}

.fb-comment-turnstile .blendenraum-security-status {
    margin-top: 10px;
    max-width: 420px;
}

@keyframes blendenraum-lens-turn {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .blendenraum-security-status.is-loading .blendenraum-security-lens svg {
        animation: none;
    }
}

