/* Root Design System */
body { 
    background: #fcfbf7; 
    color: #1a1a1a; 
    font-family: "Iowan Old Style", "Baskerville", serif; 
    margin: 0;
    padding: 10vh 5vw; 
    line-height: 1.8; 
    display: flex; 
    justify-content: center; 
    -webkit-font-smoothing: antialiased;
}

.container { 
    max-width: 700px; 
    width: 100%;
}

/* Typography - Wide and Bold */
h1 { 
    font-size: 1.2rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.6em; 
    text-align: center; 
    word-spacing: 1em;
    margin-bottom: 40px !important; 
}

h2 { 
    font-size: 2rem; 
    font-weight: 400; 
    margin: 0;
    letter-spacing: -0.02em;
}

/* Index Page Specifics */
.index-list { list-style: none; padding: 0; margin-top: 40px; border-top: 1px solid #1a1a1a; padding-top: 40px; }
.index-item { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 25px; border-bottom: 1px dotted #ccc; padding-bottom: 5px; text-decoration: none; color: inherit; transition: opacity 0.3s; }
.index-item:hover { opacity: 0.5; }
.entry-num { font-style: italic; font-size: 0.9rem; color: #888; text-transform: lowercase; }

/* Entry Page Specifics */
nav.top-nav { margin-bottom: 80px; border-bottom: 1px solid #e0e0e0; padding-bottom: 10px; }
.back-link { text-decoration: none; color: #888; font-size: 0.85rem; font-style: italic; }
.entry-header { margin-bottom: 50px; }
p { font-size: 1.25rem; text-align: justify; margin-bottom: 2rem; }

footer { 
    margin-top: 120px; 
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.7rem; 
    text-align: center; 
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.preface {
    max-width: 450px;
    margin: 0 auto 80px auto; /* Centered with a gap before the list */
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666; /* Subtle grey to distinguish from the navigation */
}

article {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.definition-box {
    margin: 40px 0;
    padding: 30px;
    border-left: 2px solid #1a1a1a;
    background-color: #f6f5f0; /* Slightly darker than the page */
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
}

.definition-box strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #000;
    font-style: normal;
}

em {
    font-family: "Iowan Old Style", serif;
    border-bottom: 1px solid #ccc;
}