/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: "Libre Baskerville", serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Layout */
body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

nav h1 {
    margin-bottom: 10px;
}

nav h1 a {
    color: #333;
    text-decoration: none;
    font-size: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #333;
}

/* Main Content */
main {
    margin-bottom: 40px;
}

h2, h3, h4 {
    margin-bottom: 16px;
    color: #333;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

/* Blog Posts */
.intro {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.blog-posts {
    margin-top: 40px;
}

.post-excerpt {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.post-excerpt h4 {
    margin-bottom: 8px;
}

.post-excerpt h4 a {
    color: #333;
    text-decoration: none;
}

.post-excerpt h4 a:hover {
    color: #666;
}

.post-excerpt time {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.post-excerpt p {
    margin-bottom: 12px;
    color: #555;
}

.read-more {
    color: #007acc;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    nav h1 a {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}