/* Base article styling */
.article-container {
    max-width: 65ch;
    margin: 0 auto;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #374151;
}

/* Headers */
.article-header {
    margin-bottom: 2rem;
}

.article-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* Text elements */
.article-text {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.article-emphasis {
    font-weight: 600;
}

/* Lists */
.article-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.article-list li {
    margin-bottom: 0.5rem;
}

/* FAQ section */
.faq-container {
    display: grid;
    gap: 1rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    color: #111827;
}

/* Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

/* Sources/References */
.sources-list {
    list-style-type: disc;
    padding-left: 1.25rem;
}

.source-link {
    color: #059669;
    text-decoration: none;
}

.source-link:hover {
    color: #047857;
    text-decoration: underline;
}

/* Call to Action */
.cta-container {
    background-color: #F3F4F6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-text {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #059669;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #047857;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .subsection-title {
        font-size: 1.125rem;
    }
}
