/* ─── Paywall inline (artículos, usuario no logueado) ─── */
.qhubo-paywall,
.qhubo-paywall * {
    box-sizing: border-box;
}

.qhubo-paywall a,
.qhubo-paywall button,
.qhubo-paywall input,
.qhubo-paywall select {
    font: inherit;
}

.qhubo-paywall a {
    text-decoration: none;
    color: inherit;
}

.qhubo-paywall button,
.qhubo-paywall [type="button"],
.qhubo-paywall [type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 0;
    background: transparent;
    color: inherit;
    box-shadow: none;
}

.qhubo-paywall {
    width: 100%;
    height: 501px;
    margin: 32px auto;
    padding: 20px;
    gap: 24px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid #6A7282;
    text-align: center;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qhubo-paywall__title {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.35;
    color: #1E1E1E;
}

.qhubo-paywall__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    max-width: 680px;
}

.qhubo-paywall__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 335px;
    height: 41px;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: background .15s, border-color .15s;
}

.qhubo-paywall__btn--google {
    background: #FFFFFF;
    color: #101828;
    border: 1px solid #000000;
}
.qhubo-paywall__btn--google:hover { border-color: #009DE0; }

.qhubo-paywall__btn--email {
    background: #009DE0;
    color: #FFFFFF;
    border: 1px solid #007BAF;
}
.qhubo-paywall__btn--email:hover { background: #007BAF; }

.qhubo-paywall__link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1E1E1E;
    text-decoration: underline;
    cursor: pointer;
}
.qhubo-paywall__link:hover { color: #009DE0; }

.qhubo-paywall__checks {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #555555;
}

.qhubo-paywall__legal {
    margin: 0;
    font-size: 11px;
    color: #999999;
    line-height: 1.5;
}

.qhubo-paywall-fade {
    position: relative;
    overflow: hidden;
    max-height: 220px;
}
.qhubo-paywall-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    pointer-events: none;
}

@media (max-width: 480px) {
    .qhubo-paywall { padding: 16px; height: auto; }
    .qhubo-paywall__title { font-size: 18px; }
    .qhubo-paywall__btn { width: 100%; }
}
