body {
    margin: 0;
    font-family: Inter var, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Ubuntu, Roboto, Noto, Arial, sans-serif;
    background: #f5f5dc7d;
    color: #222;
    line-height: 1.6;
}

.site-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}

.logo {
    height: 80px;
}

main {
    max-width: 720px;
    margin: 40px auto;
    padding: 0 16px;
}

.intro {
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.posts ul {
    list-style: none;
    padding: 0;
}

.posts li {
    margin-bottom: 12px;
}

.posts a {
    text-decoration: none;
    color: #0066cc;
}

.posts a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 24px;
    font-size: 0.9rem;
    color: #777;
}

html,
body {
    height: 100%;
}

.page {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

nav a {
    margin-left: 16px;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
}

nav a:hover {
    text-decoration: underline;
}

blockquote {
    border-left: 4px solid #2866df !important;
    margin-left: 0;
    padding-left: 16px;
}

pre {
    background: #77777736;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 16px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.5;
}

.origin-date {
    color: #777;
}