/* Rich Text Content Styling */
.rich-text-content {
    line-height: 1.6;
}

.rich-text-content h1 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.rich-text-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
}

.rich-text-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.rich-text-content h4,
.rich-text-content h5,
.rich-text-content h6 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

.rich-text-content p {
    margin-bottom: 1rem;
}

.rich-text-content ol,
.rich-text-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.rich-text-content li {
    margin-bottom: 0.5rem;
}

.rich-text-content blockquote {
    border-left: 4px solid #9ca3af;
    padding-left: 1rem;
    font-style: italic;
    margin: 1rem 0;
}

.rich-text-content code {
    background-color: #f3f4f6;
    border-radius: 0;
    padding: 0.125rem 0.5rem;
    font-family: monospace;
    font-size: 0.875rem;
}

.rich-text-content pre {
    background-color: #f3f4f6;
    border-radius: 0;
    padding: 1rem;
    overflow: auto;
    margin-bottom: 1rem;
}

.rich-text-content a {
    color: #2563eb;
}

.rich-text-content a:hover {
    text-decoration: underline;
}

.rich-text-content strong {
    font-weight: bold;
}

.rich-text-content em {
    font-style: italic;
}