/**
 * LCUS Newsletter Signup - Frontend Styles
 */

.lcus-newsletter-signup {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 5px solid #2271b1;
}

.lcus-newsletter-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.lcus-newsletter-message {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.lcus-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lcus-newsletter-email {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.lcus-newsletter-email:focus {
    outline: none;
    border-color: #2271b1;
}

.lcus-newsletter-button {
    padding: 12px 24px;
    background: #2271b1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lcus-newsletter-button:hover {
    background: #135e96;
}

.lcus-newsletter-button:disabled {
    background: #999;
    cursor: not-allowed;
}

.lcus-newsletter-message-area {
    margin-top: 15px;
}

.lcus-newsletter-success {
    padding: 10px 15px;
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
    border-radius: 4px;
}

.lcus-newsletter-error {
    padding: 10px 15px;
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .lcus-newsletter-form {
        flex-direction: column;
    }
    
    .lcus-newsletter-button {
        width: 100%;
    }
}
