/* 
   UI: modern, minimal, premium academic/editorial.
   Fonts only: EB Garamond and Arial Caps.
   Avoid clutter, excessive cards, gradients, shadows, badges and decorative UI.
   Prefer whitespace, typography, dividers and progressive disclosure.
*/
:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --divider-color: #eaeaea;
    --link-color: #000000;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'EB Garamond', serif;
    line-height: 1.6;
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: normal;
}

.shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

footer {
    border-top: 1px solid var(--divider-color);
    padding-top: 20px;
    margin-top: 60px;
    font-size: 0.9em;
    color: #666;
}

a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    text-decoration-thickness: 2px;
}
