  /* Container for blog content */
.blog-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #e5e7eb; /* light gray text for dark mode */
}

/* Headings */
.blog-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #ffffff;
}

.blog-content h2 {
    font-size: 1.75rem; /* 32px */
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #ffffff;
}

.blog-content h3 {
    font-size: 1.5rem; /* 28px */
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #ffffff;
}

.blog-content h4 {
    font-size: 1.25rem; /* 24px */
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #ffffff;
}

.blog-content h5 {
    font-size: 1rem; /* 20px */
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #ffffff;
}

.blog-content h6 {
    font-size: 0.50rem; /* 16px */
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #ffffff;
}

/* Paragraphs */
.blog-content p {
    margin-bottom: 1em;
}

/* Links */
.blog-content a {
    color: #60a5fa; /* blue links */
    text-decoration: underline;
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

/* Lists - custom bullets for dark mode */
.blog-content ul {
    list-style: none; /* keep removing default bullets */
    margin-left: 0; /* let padding on li control alignment */
    padding-left: 1.5em; /* space for custom bullet */
    margin-bottom: 1em;
}

.blog-content ul li {
    position: relative;
    padding-left: 1.5em; /* space for custom bullet */
    margin-bottom: 0.75em;
    line-height: 1.6;
}

/* Custom bullet */
.blog-content ul li::before {
    content: "•"; /* Bullet symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: #ec4899; /* pink/purple bullet color */
    font-size: 1.25em;
    line-height: 1.2; /* adjust for vertical alignment */
}

/* Ordered lists with custom numbering */
.blog-content ol {
    counter-reset: item;
    margin-left: 0; /* let li padding handle space */
    padding-left: 2em;
    margin-bottom: 1em;
}

.blog-content ol li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.75em;
    line-height: 1.6;
    counter-increment: item;
}

.blog-content ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #60a5fa;
    font-weight: 600;
}



/* Images */
.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
    border-radius: 6px;
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid #ec4899;
    padding-left: 1em;
    color: #cbd5e1;
    font-style: italic;
    margin: 1em 0;
    background-color: #2c0e36;
    border-radius: 4px;
}

/* Code blocks */
.blog-content pre {
    background-color: #1e1e2f;
    color: #f8f8f2;
    padding: 1em;
    border-radius: 6px;
    overflow-x: auto;
    margin-bottom: 1em;
}
.blog-content code {
    background-color: #2e2e3e;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
}

/* Tables */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    font-size: 0.95rem;
}

.blog-content th,
.blog-content td {
    border: 1px solid #374151;
    padding: 0.75em 1em;
    text-align: left;
}

.blog-content th {
    background-color: #111827;
    color: #f9fafb;
    font-weight: 600;
}

.blog-content tr:nth-child(even) {
    background-color: #1f2937;
}

.blog-content tr:hover {
    background-color: #374151;
}