/**
 * Insights Paywall Styles
 * 
 * This file contains the styles for the insights page paywall banner.
 * It follows the same styling patterns as the article limit banner
 * to maintain consistency across the site.
 */

.insights-paywall-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #22305A 0%, #4D71F7 100%);
    color: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 1.5rem;
    text-align: center;
}

.insights-paywall-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.insights-paywall-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.insights-paywall-message p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.insights-paywall-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insights-paywall-signin,
.insights-paywall-create {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.insights-paywall-signin {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.insights-paywall-create {
    background: white;
    color: #22305A;
}

.insights-paywall-signin:hover {
    background: rgba(255, 255, 255, 0.3);
}

.insights-paywall-create:hover {
    background: #f0f0f0;
}

.insights-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .insights-paywall-content {
        flex-direction: column;
    }
    
    .insights-paywall-message h3 {
        font-size: 1.3rem;
    }
    
    .insights-paywall-message p {
        font-size: 1rem;
    }
    
    .insights-paywall-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .insights-paywall-signin,
    .insights-paywall-create {
        width: 100%;
    }
}
