/* Email Sign-up Form - WP Wayfinder */

.wayfinder-email-signup {
    width: 100%;
}

.wayfinder-email-signup__header {
    margin-bottom: 1.25rem;
}

.wayfinder-email-signup__heading {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #f5bd1e, #ff6501, #ed1c24, #ff1592);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 0.5rem 0;
}

.wayfinder-email-signup__description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.wayfinder-email-signup__form {
    max-width: 100%;
}

.wayfinder-email-signup__fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .wayfinder-email-signup__fields {
        flex-direction: row;
        align-items: center;
        max-width: 420px;
    }
}

.wayfinder-email-signup__input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 2rem;
    background-color: white;
    color: #111827;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wayfinder-email-signup__input::placeholder {
    color: #9ca3af;
}

.wayfinder-email-signup__input:hover {
    border-color: #9ca3af;
}

.wayfinder-email-signup__input:focus {
    outline: none;
    border-color: #ff6501;
    box-shadow: 0 0 0 3px rgba(255, 101, 1, 0.15);
}

.wayfinder-email-signup__submit {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.wayfinder-email-signup__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.wayfinder-email-signup__message {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.wayfinder-email-signup__message--success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.wayfinder-email-signup__message--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Compact variant - footer */
.wayfinder-email-signup--compact .wayfinder-email-signup__fields {
    max-width: 100%;
}

@media (min-width: 640px) {
    .wayfinder-email-signup--compact .wayfinder-email-signup__fields {
        max-width: 320px;
    }
}

/* Full variant - sections */
.wayfinder-email-signup--full {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

/* Inline variant - within content */
.wayfinder-email-signup--inline .wayfinder-email-signup__heading {
    font-size: 1.25rem;
}
