/* ProMonitor Blog Footer & CTA Component */

/* Blog CTA Section */
.blog-cta-section {
    background: #f8fafc;
    padding: 3rem 0;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-title {
    font-size: 2rem;
    color: #0A1628;
    margin-bottom: 1rem;
}

.cta-description {
    color: #64748b;
    margin-bottom: 2rem;
}

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

.cta-btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0078D4, #0063B1);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base, 0.3s ease);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.3);
}

.cta-btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #0078D4;
    border: 2px solid #0078D4;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base, 0.3s ease);
}

.cta-btn-secondary:hover {
    background: #0078D4;
    color: white;
}

/* Footer Section */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #0A1628;
}

.footer-section a {
    display: block;
    padding: 0.5rem 0;
    color: #64748b;
    text-decoration: none;
    transition: color var(--transition-fast, 0.15s ease);
}

.footer-section a:hover {
    color: #0078D4;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 2rem 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
