/* ===============================
   Inc42 Style Paywall (Frontend)
================================ */

.inc42-paywall {
    margin: 40px 0;
    padding: 32px;
    text-align: center;
    background: #fafafa;
    border-top: 2px solid #eaeaea;
}

/* Heading */
.inc42-paywall h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* Description text */
.inc42-paywall p {
    color: #555;
    margin-bottom: 22px;
    font-size: 15px;
}

/* Buttons base */
.inc42-paywall a,
.inc42-paywall a:visited,
.inc42-paywall a:hover,
.inc42-paywall a:focus {
    display: inline-block;
    min-width: 140px;
    padding: 12px 22px;
    margin: 0 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: #ffffff !important; /* 🔒 force white text */
    transition: all 0.2s ease;
}

/* Login button */
.inc42-paywall .btn-login {
    background: #d32f2f;
}

/* Register button */
.inc42-paywall .btn-register {
    background: #b71c1c;
}

/* Hover */
.inc42-paywall a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Mobile friendly */
@media (max-width: 480px) {
    .inc42-paywall a {
        display: block;
        margin: 8px auto;
        width: 100%;
        max-width: 260px;
    }
}
