/* ── SYNTEXA Paywall Frontend – Bild-Zeitung Style ─────────── */

.syntexa-wrap {
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

/* Teaser mit hartem Blur-Cut wie Bild.de */
.syntexa-teaser {
    position: relative;
    overflow: hidden;
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}
.syntexa-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 50%, #ffffff 100%);
}

/* Gate direkt am Teaser andockend */
.syntexa-gate {
    background: #ffffff;
    border: 1.5px solid #E0E0E0;
    border-top: 4px solid #6C63FF;
    border-radius: 4px;
    padding: 1.75rem 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-top: -10px;
    position: relative;
}

.syntexa-gate-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.syntexa-gate-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0A0A0A;
    margin: 0 0 0.35rem;
    letter-spacing: -0.3px;
}

.syntexa-gate-text {
    color: #555;
    font-size: 0.92rem;
    margin: 0 0 1rem;
    line-height: 1.55;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Preis – groß und prominent wie Bild */
.syntexa-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 1.25rem;
    background: #F8F7FF;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}
.syntexa-price-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: #6C63FF;
    letter-spacing: -1.5px;
    line-height: 1;
}
.syntexa-price-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
}

/* Button – groß, breit, wie Bild "Jetzt freischalten" */
.syntexa-btn {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 0.75rem;
    background: #6C63FF;
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.1s ease;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(108,99,255,0.3);
    letter-spacing: 0.2px;
}
.syntexa-btn:hover {
    background: #5a52e0;
    transform: translateY(-1px);
}
.syntexa-btn:active {
    transform: translateY(0);
}

/* Divider mit "oder" */
.syntexa-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 340px;
    margin: 0 auto 0.75rem;
    color: #bbb;
    font-size: 0.8rem;
}
.syntexa-divider::before,
.syntexa-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E5E5;
}

/* Sicherheits-Hinweis */
.syntexa-secure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 0.6rem;
    font-size: 0.72rem;
    color: #aaa;
    margin-top: 0.75rem;
}
.syntexa-secure span { white-space: nowrap; }

/* Meldungen */
.syntexa-msg {
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
    text-align: left;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.syntexa-msg-warn  { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.syntexa-msg-error { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* Admin Banner */
.syntexa-admin-banner {
    background: #F4F3FF;
    border: 1px solid #6C63FF;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    color: #4338CA;
    margin-bottom: 1rem;
}

/* Mobil */
@media (max-width: 600px) {
    .syntexa-gate { padding: 1.25rem 1rem; }
    .syntexa-btn  { max-width: 100%; }
}

