.post-header {
    margin-bottom: 3rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}



.post-excerpt {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    border-left: 4px solid var(--color-blue);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

article {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

article h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: var(--emerald-1000);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

article h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: var(--emerald-1000);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

article p {
    margin-bottom: 1.5rem;
}

article ul,
article ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

article li {
    margin-bottom: 0.5rem;
}

article a {
    text-decoration: none;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

:root {
    article a {
        color: var(--emerald-900);
    }
}

[data-theme="dark"] {
    article {
        a {
            color: var(--emerald-600);
        }

        h1,
        h2,
        h3 {
            color: var(--emerald-900);
        }
    }
}

article a:hover {
    color: var(--emerald-1000);
    text-decoration: underline;
}

article blockquote {
    background: var(--card-bg);
    border-left: 4px solid var(--emerald-700);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--emerald-1000);
}

article code {
    background: var(--cerulean-700);
    color: var(--cerulean-1000);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

article pre {
    background: var(--emerald-1000);
    color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 2rem 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--card-border);
}

article hr {
    border: 0;
    height: 1px;
    background: var(--card-border);
    margin: 3rem 0;
}

.tag-list {
    list-style: none;
    padding: 0.25rem 0px;
    margin: 0px;

}

.tag-list a, .tag-list a:hover {
    text-decoration: none;
}

.post-tags a:hover {
    text-decoration: none !important;
}
