article{
    line-height: 1.6;
    color: var(--text-100);
}
article{

    /* Headings Styles */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-50);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Specific heading sizes */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

/* Paragraph Styles */
p {
    color: var(--text-400);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* List Styles */
ul, ol {
    color: var(--text-400);
    margin: 1rem 0;
    padding-left: 1.5rem; /* Indent lists */
}

li {
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Blockquote Styles */
blockquote {
    color: var(--text-300);
    border-left: 4px solid var(--text-500);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
}

/* Link Styles */
a {
    color: var(--text-200);
    text-decoration: none;
    border-bottom: 1px solid var(--text-300);
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--text-100);
    border-color: var(--text-100);
}

/* Code Block Styles */

pre {
    background-color: var(--text-800);
    color: var(--text-200);
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto; /* Allows horizontal scroll for long code lines */
}

p code {
    background-color: var(--text-600);
    color: var(--text-50);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--text-600);
}

th {
    background-color: var(--text-500);
    color: var(--text-50);
}
}