/* Article Content Styles */
.article-content {
    color: #374151; /* Default text color */
    line-height: 1.75;
}

/* Headings */
.article-content h1 {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    color: #1f2937; /* Dark gray */
    margin: 2.5rem 0 1.5rem;
    line-height: 1.2;
}

.article-content h2 {
    font-size: 1.875rem; /* 30px */
    font-weight: 600;
    color: #1f2937;
    margin: 2.25rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb; /* Light gray border */
}

.article-content h3 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.article-content h4 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: #374151;
    margin: 1.75rem 0 1rem;
}

.article-content h5 {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    color: #4b5563;
    margin: 1.5rem 0 0.875rem;
}

.article-content h6 {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    color: #4b5563;
    margin: 1.25rem 0 0.75rem;
}

/* Lists */
.article-content ul,
.article-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 0.3rem;
    padding-left: 0.5rem;
}

.article-content li > p {
    margin: 0.3rem 0;
}

.article-content li > ul,
.article-content li > ol {
    margin: 0.5rem 0 0.5rem 1rem;
}

/* Nested lists */
.article-content ul ul,
.article-content ol ul {
    list-style-type: circle;
}

.article-content ol ol,
.article-content ul ol {
    list-style-type: lower-roman;
}

/* List items with paragraphs */
.article-content li > p:first-child {
    margin-top: 0.5rem;
}

.article-content li > p:last-child {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-content h1 {
        font-size: 1.875rem; /* 30px */
    }
    
    .article-content h2 {
        font-size: 1.5rem; /* 24px */
    }
    
    .article-content h3 {
        font-size: 1.25rem; /* 20px */
    }
}
