/* Blog Content Typography */
.blog-content h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.blog-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.blog-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

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

.blog-content strong {
    color: #fff;
    font-weight: 600;
}

.blog-content a {
    color: #22d3ee;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blog-content a:hover {
    color: #67e8f9;
}

.blog-content .task-list-item {
    list-style-type: none;
    margin-left: -1.5rem;
    padding-left: 0;
}

.blog-content .task-list-item input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: not-allowed;
}

/* Custom text selection colors using theme variables */
.blog-content ::selection {
    background-color: var(--color-primary);
    color: white;
}

.blog-content ::-moz-selection {
    background-color: var(--color-primary);
    color: white;
}