.ncns-paywall {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.ncns-card {
    flex: 1;
    border: 1px solid #ddd;
    padding: 20px;
    background: #fafafa;
    border-radius: 6px;
}

.ncns-btn {
    display: inline-block;
    margin-top: 10px;
    background: #cc0000;
    color: #fff;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 4px;
}
/* ===== Content fade / blend effect ===== */

.ncns-preview {
    position: relative;
    max-height: 300px; /* controls how much is visible */
    overflow: hidden;
}

.ncns-preview::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0.85),
        #ffffff
    );
    pointer-events: none;
}

/* Optional: smoother typography feel */
.ncns-preview p {
    margin-bottom: 1em;
}

/* Space before cards */
.ncns-paywall {
    margin-top: 10px;
}
