
/* ======================================
    BASE EDITOR
====================================== */

#editor {
    font-size: 1.05rem;
    line-height: 1.75;
    color: oklch(var(--bc));
}

/* Paragraph spacing */
#editor p {
    margin-bottom: 1.25rem;
}

/* ======================================
    HEADINGS
====================================== */

/* H2 - Main Section */
#editor h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

/* H3 - Sub Section */
#editor h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* ======================================
    LISTS
====================================== */

#editor ul {
    list-style-type: disc;
    padding-left: 1.75rem;
    margin-bottom: 1.5rem;
}

#editor ol {
    list-style-type: decimal;
    padding-left: 1.75rem;
    margin-bottom: 1.5rem;
}

#editor li {
    margin-bottom: 0.5rem;
}

/* Nested lists */
#editor ul ul,
#editor ol ol {
    margin-top: 0.5rem;
}

/* ======================================
    BLOCKQUOTES
====================================== */

#editor blockquote {
    border-left: 4px solid oklch(var(--p));
    padding-left: 1.25rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.05rem;
    color: oklch(var(--bc) / 0.8);
}

/* Remove extra spacing inside quote */
#editor blockquote p {
    margin: 0;
}

/* ======================================
    LINKS
====================================== */

#editor a {
    color: oklch(var(--p));
    text-decoration: underline;
    font-weight: 500;
}

#editor a:hover {
    opacity: 0.8;
}

/* ======================================
    CODE BLOCKS
====================================== */

#editor pre {
    background: oklch(var(--b2));
    padding: 1rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

#editor code {
    font-family: monospace;
    font-size: 0.9rem;
}

/* ======================================
    IMAGES
====================================== */

#editor img {
    max-width: 100%;
    border-radius: 0.75rem;
    margin: 1.75rem 0;
}

#editor table {
    border: 1px solid white;
    border-collapse: collapse;
    text-align: center;
}

#editor th,
#editor td {
    border: 1px solid white;
}

#editor table.table-left {
  margin-left: 0;
  margin-right: auto;
}

#editor table.table-center {
  margin-left: auto;
  margin-right: auto;
}

#editor table.table-right {
  margin-left: auto;
  margin-right: 0;
}