/* ICH Hub — Public Styles */
/* Brand: #3e2949 (plum) · #eeead9 (cream) */

/* Subscribe form */
.ich-subscribe-form {
    background: #3e2949;
    color: #eeead9;
    border-radius: 12px;
    padding: 40px 48px;
    max-width: 560px;
    margin: 32px auto;
    font-family: 'Georgia', serif;
}
@media (max-width: 600px) { .ich-subscribe-form { padding: 28px 24px; } }

.ich-subscribe-form__title {
    font-size: 22px;
    font-weight: 700;
    color: #eeead9;
    margin: 0 0 8px;
}
.ich-subscribe-form__subtitle {
    font-size: 15px;
    color: rgba(238,234,217,.75);
    margin: 0 0 24px;
    line-height: 1.6;
}

/* Input + button */
.ich-form { display: flex; flex-direction: column; gap: 12px; }
.ich-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(238,234,217,.25);
    background: rgba(255,255,255,.08);
    color: #eeead9;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color .2s;
}
.ich-input::placeholder { color: rgba(238,234,217,.45); }
.ich-input:focus { border-color: rgba(238,234,217,.6); }

.ich-form__row {
    display: flex;
    gap: 8px;
}
.ich-input--email { flex: 1; }

.ich-btn {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity .2s, transform .1s;
    white-space: nowrap;
    font-family: inherit;
}
.ich-btn:hover { opacity: .88; transform: translateY(-1px); }
.ich-btn--primary {
    background: #eeead9;
    color: #3e2949;
}
.ich-btn--premium {
    background: #c9a227;
    color: #fff;
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* Form messages */
.ich-form__message {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 4px;
}
.ich-form__message--success { background: rgba(46,125,50,.2); color: #a5d6a7; }
.ich-form__message--error   { background: rgba(198,40,40,.2); color: #ef9a9a; }

.ich-form__privacy {
    font-size: 11px;
    color: rgba(238,234,217,.45);
    margin: 4px 0 0;
    text-align: center;
}

/* Paywall */
.ich-teaser {
    font-size: 17px;
    line-height: 1.8;
    color: inherit;
}
.ich-teaser::after {
    content: '';
    display: block;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #fff);
    margin-top: -20px;
}

.ich-paywall {
    border: 1px solid #e8e3d8;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    max-width: 480px;
    margin: 32px auto;
    background: #faf8f4;
}
.ich-paywall__lock { font-size: 36px; display: block; margin-bottom: 12px; }
.ich-paywall__title { font-size: 20px; font-weight: 700; color: #3e2949; margin: 0 0 8px; }
.ich-paywall__desc { font-size: 15px; color: #666; margin: 0 0 24px; }
.ich-paywall__free-note { font-size: 13px; color: #999; margin-top: 16px; }
.ich-paywall__free-note a { color: #3e2949; }

/* Count shortcode */
.ich-count { font-weight: 700; color: #3e2949; }
