/* Base layout */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fdfdfd;
    color: #222;
}

.page {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
}

.site-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.site-nav a {
    margin-left: 16px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.site-nav a:hover {
    color: #000;
}

/* Intro */
.intro {
    margin-bottom: 40px;
}

.intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* Year blocks */
.year-block {
    margin-bottom: 32px;
}

.year-block h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 4px 0;
}

.post-title {
    color: #333;
}

.post-date {
    color: #999;
    font-size: 12px;
}

/* Footer */
.site-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #777;
}
