/**
 * AI Growth SEO Frontend Styles
 *
 * @package AI_Growth_SEO
 * @since 1.9.8
 */

/* Web Stories Base Styles */
.ai-web-story {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.web-story-content {
    max-width: 100%;
    margin: 0 auto;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .web-story-mobile-enhanced {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .web-story-content {
        padding: 0 15px;
    }
}

/* AMP Story Compatibility */
.amp-web-story {
    background: #000;
    color: #fff;
}

/* Loading States */
.web-story-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.web-story-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .ai-web-story {
        color: #000;
        background: #fff;
    }
}
