/* Core Minimal CSS from thecascade.dev */
html { color-scheme: light dark; }
body {
    /* Overriding default font, size, and line-height for better readability */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 16px;
    padding: 0;
    min-height: 100vh;
}
/* Make images responsive and avoid overflow */
img, svg, video { max-width: 100%; display: block; }

/* Restrain content width for optimal reading experience (45-90 characters per line) */

main {
    max-width: min(70ch, 100% - 4rem);
    margin-inline: auto; /* Center the content */
    padding: 2rem 1rem; 
}

/* Structural enhancements for Org Mode elements */
h1 { font-size: 2.5em; margin-top: 0; }
h2 { font-size: 1.8em; margin-top: 2.5rem; margin-bottom: 1rem; }
.author { margin-bottom: 2rem; font-style: italic; opacity: 0.8; }

p, ul, blockquote { margin-bottom: 1.5rem; }
ul { padding-left: 1.5rem; }

figure {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}
figcaption {
    text-align: center;
    font-size: 0.9em;
    opacity: 0.7;
    margin-top: 0.5rem;
}

blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #6c757d; /* A subtle grey border */
    opacity: 0.9;
}
blockquote p {
    font-style: italic;
    margin-bottom: 0;
}
