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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 2rem;
    z-index: 100;
}

.nav-home {
    color: #064e3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-home:hover {
    color: #065f46;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
}

.page-header h1 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.post-entry {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 3rem;
}

.post-entry:last-child {
    border-bottom: none;
}

.post-date {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.post-entry h2 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-entry h2 a {
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-entry h2 a:hover {
    color: #065f46;
}

.post-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.read-more {
    color: #065f46;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #064e3b;
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 3rem 0 2rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .post-entry h2 {
        font-size: 1.6rem;
    }
}