/* Layout and non-typography specific styles from typography.css */

/* Text alignment utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--md-sys-color-on-surface-variant);
    opacity: 0.6;
}

/* Long-form content layout */
.article, .page-content, .blog-post, .lesson-resource-content {
    font-family: Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.7;
}

.article p, .page-content p, .blog-post p, .lesson-resource-content p {
    margin-bottom: 1.8em;
}

/* Blog post specific styling - larger text for better readability */
.blog-post p {
    font-size: 1.9rem;
    line-height: 1.8;
}

/* First paragraph styling for engaging intros */
.lesson-resource-content > div > p:first-of-type {
    font-size: 2rem;
    line-height: 1.6;
}

/* Quill editor specific styling */
.quill-link {
    text-decoration: underline;
    color: blue;
    cursor: default;
}

/* Make Quill editor match public page styling for better WYSIWYG experience */
.ql-editor {
    font-family: Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.7;
}

.ql-editor p {
    font-size: 1.9rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.8em !important;
}

.ql-editor h2 {
    margin-top: 1.5em !important;
    margin-bottom: 0.5em !important;
}

.ql-editor h3 {
    margin-top: 1.5em !important;
    margin-bottom: 0.5em !important;
}