/* Clean, minimal styling */

/* Hide the logo icon */
.md-header__button.md-logo {
    display: none;
}

/* Hide the left sidebar */
.md-sidebar--primary {
    display: none;
}

/* Better spacing for main content */
.md-content {
    max-width: 50rem;
}

/* Reduce top padding on main content - only on homepage */
.md-content__inner:has(h2:first-child) {
    padding-top: 0;
    margin-top: -1.5rem;
}

/* Normal spacing for blog posts */
article.md-content__inner {
    padding-top: 1rem;
    margin-top: 0;
}

/* Cleaner headings */
.md-typeset h1 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.md-typeset h2 {
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Better horizontal rules */
.md-typeset hr {
    border: 0;
    border-top: 1px solid var(--md-default-fg-color--lightest);
    margin: 2rem 0;
}

/* Cleaner blog post cards */
.md-typeset .blog-post {
    margin-bottom: 2rem;
}

/* Better link styling */
.md-typeset a {
    text-decoration: none;
}

.md-typeset a:hover {
    text-decoration: underline;
}

/* Code blocks */
.md-typeset pre {
    border-radius: 0.25rem;
}

/* Inline code */
.md-typeset code {
    padding: 0.1em 0.3em;
    border-radius: 0.2em;
}
