/* --- RESET & LAYOUT --- */
* {
    box-sizing: border-box; 
}

body {
    background-color: #fff !important;
    /* Monospace font stack */
    font-family: 'Courier New', Courier, monospace; 
    color: #000;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 30px !important;
}

/* --- LISTS --- */
ul {
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

li {
    margin-bottom: 3em;
    /* Optional: A dotted line between items */
    border-bottom: 1px dotted #ccc;
    padding-bottom: 2em;
}

/* --- HEADERS --- */
h3 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 16px !important; 
    margin-top: 4em;
    margin-bottom: 2em;
    text-transform: uppercase;
    background: #000;
    color: #fff !important;
    display: inline-block;
    padding: 2px 6px;
    border: none !important;
}

/* --- TEXT STYLES --- */
small {
    font-size: 15px !important; 
    line-height: 1.4 !important;
}

.work-title {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-desc {
    display: block;
    margin-bottom: 1em;
    max-width: 65ch; /* Optimal reading width */
}

/* Meta Data: Aligned Right */
.work-meta {
    display: block;
    font-style: italic;
    color: #666;
    text-align: right; 
    font-size: 14px !important;
}

.work-quote {
    display: block;
    margin-top: 1em;
    padding: 10px;
    background: #f4f4f4;
    font-style: normal;
}

/* --- LINKS --- */
a {
    color: #000;
    text-decoration: underline;
}
a:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

/* --- BIO --- */
.bio-section {
    margin-top: -2em;
    border-top: 3px solid #000;
    padding-top: 2em;
}

/* --- IMAGE FIX --- */
#centered-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 13vw;
    max-height: 13vh;
    border: 0px solid black; 
    box-sizing: border-box; 
}
@media (max-width: 768px) {
  #centered-image {
    max-width: 35vw;
    max-height: 35vh;
  }
}



/* Use this wrapper for pages with essays */
.reading-page {
    font-family: 'Times New Roman', Times, serif !important;
    font-size: 19px !important; /* Larger for reading */
    line-height: 1.6 !important; /* More breathing room */
    color: #111;
    max-width: 680px; /* Constraints width for readability */
    margin: 0 auto; /* Centers the block */
    text-align: left; /* Ensures left alignment */
}

/* Fix paragraphs within reading pages */
.reading-page p {
    margin-bottom: 1.5em;
    text-indent: 0; /* Ensures no weird first-line indent */
}

/* Titles on reading pages */
.reading-page h1, 
.reading-page h2 {
    font-family: 'Courier New', Courier, monospace; /* Keeps site identity in title */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1.5em;
    text-transform: uppercase;
    text-align: center;
}