/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Martel+Serif:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;1,200;1,300;1,400;1,600;1,700;1,800&family=Martel+Sans:wght@200;300;400;500;600;700;800&display=swap');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Martel Serif', Georgia, serif;
    line-height: 1.8;
    color: #333333;
    background: #fff;
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
    font-size: 14px;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Martel Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 35px;
    margin-bottom: 1.5rem;
    color: #0D2A49;
}

h1 a {
    color: inherit;
    text-decoration: none;
}

h2 {
    font-size: 30px;
    margin-bottom: 1rem;
}

h3 {
    font-size: 24px;
    margin-bottom: 0.8rem;
}

/* Header */
header {
    margin-bottom: 4rem;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
}

/* Navigation */
nav {
    margin-top: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0;
}

nav a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Martel Serif', Georgia, serif;
}

nav a:hover {
    color: #000;
}

/* Main Content */
main {
    margin-bottom: 4rem;
}

article {
    margin-bottom: 4rem;
}

article h2 a {
    color: inherit;
    text-decoration: none;
}

article h2 a:hover {
    text-decoration: underline;
}

/* Date */
.date {
    color: #666;
    font-size: 16px;
    margin-bottom: 1.5rem;
    font-family: 'Martel Serif', Georgia, serif;
}

/* Paragraphs */
p {
    margin-bottom: 1.5rem;
    font-family: 'Martel Serif', Georgia, serif;
}

/* Blockquotes */
blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #0D2A49;
    background-color: #f8f9fa;
    font-style: italic;
    color: #555;
    font-family: 'Martel Serif', Georgia, serif;
}

blockquote p {
    margin-bottom: 0.5rem;
}

blockquote p:last-child {
    margin-bottom: 0;
}

/* Figures */
figure {
    margin: 2rem 0;
    text-align: center;
}

figure img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    min-height: 300px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    text-align: left;
    color: #666;
    font-size: 16px;
    border-top: none;
    padding-top: 0;
    margin-top: 4rem;
    font-family: 'Martel Serif', Georgia, serif;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        padding: 2rem 1rem;
        font-size: 17px;
    }
    
    h1 {
        font-size: 29px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    article h2 {
        font-size: 24px;
    }
}
