/* Wrapper */
.cfwp-blur-wrapper {
    margin: 20px 0;
    position: relative;
}

/* CTA area */
.cfwp-blur-cta {
    background: rgba(6, 115, 170, 0.90);
    padding: 18px;
    color: white;
    border-radius: 10px;
    margin-bottom: 18px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 10px 24px;
    background: #0D1096;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.cta-button:hover {
    background: #080b7c;
}

/* BLURRED CONTENT */
.cfwp-blur-content {
    filter: blur(6px);
    pointer-events: none;
    background: rgba(0, 102, 204, 0.30);
    border-radius: 10px;
    padding: 20px;
    transition: filter 0.3s;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* UNLOCKED (subscriber view) */
.cfwp-blur-unlocked {
    filter: none;
    pointer-events: auto;
}


