/**
 * Reach AI Pro - Public Styles
 * 
 * @package ReachAI
 */

.reach-ai-wrapper {
    max-width: 100%;
}

.reach-ai-content {
    margin: 20px 0;
    padding: 0;
    line-height: 1.8;
    color: #333;
}

.reach-ai-content h1,
.reach-ai-content h2,
.reach-ai-content h3,
.reach-ai-content h4,
.reach-ai-content h5,
.reach-ai-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.3;
}

.reach-ai-content h1 {
    font-size: 2.5em;
}

.reach-ai-content h2 {
    font-size: 2em;
}

.reach-ai-content h3 {
    font-size: 1.75em;
}

.reach-ai-content p {
    margin-bottom: 1em;
}

.reach-ai-content ul,
.reach-ai-content ol {
    margin: 1em 0;
    padding-left: 2em;
}

.reach-ai-content li {
    margin-bottom: 0.5em;
}

.reach-ai-content strong {
    font-weight: 600;
}

.reach-ai-content em {
    font-style: italic;
}

.reach-ai-content a {
    color: #5856D6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.reach-ai-content a:hover {
    color: #4745B5;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .reach-ai-content h1 {
        font-size: 2em;
    }
    
    .reach-ai-content h2 {
        font-size: 1.75em;
    }
    
    .reach-ai-content h3 {
        font-size: 1.5em;
    }
}

