/* Headers */
.content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Paragraphs and text */
.content p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.content strong {
    color: #0f172a;
    font-weight: 600;
}

/* Lists */
.content ul, 
.content ol {
    margin: 1.5rem 0;
    margin-left: 1.5rem;
}
.content li {
    color: #475569;
    margin-bottom: 0.5rem;
}
.content ul > li {
    list-style-type: disc;
}
.content ol > li {
    list-style-type: decimal;
}

/* Links */
.content a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}
.content a:hover {
    color: #1d4ed8;
}

/* Blockquotes */
.content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin: 1.5rem 0;
    color: #475569;
    font-style: italic;
}

/* Code blocks */
.content pre {
    background-color: #1e293b;
    color: white;
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}
.content code {
    background-color: #f1f5f9;
    color: #1e293b;
    border-radius: 0.25rem;
    padding: 0.125rem 0.375rem;
    font-size: 0.875rem;
}
.content pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
    font-size: 1rem;
}

/* Tables */
.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.content th {
    background-color: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
}
.content td {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    color: #475569;
}

/* Horizontal rule */
.content hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #e2e8f0;
} 
