/* Morning Reset Guide - Article Styles */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.article-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: #4b5563;
}

.article-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-content ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
    color: #4b5563;
}

.article-content strong {
    font-weight: 600;
    color: #111827;
}

.highlight-box {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.quick-answer-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
}

.faq-question::before {
    content: "Q:";
    color: #10b981;
    font-weight: 700;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.faq-answer {
    color: #4b5563;
    line-height: 1.75;
    padding-left: 2rem;
}