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

body {
    background-color: #ffffff;
    color: #000000;
    font-family: "Hahmlet", serif;
    font-optical-sizing: auto;
    line-height: 1.6;
    padding: 60px 20px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

header {
    margin-bottom: 60px;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
}

.list {
    list-style: none;
}

.list li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.list a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s;
}

.list a:hover {
    color: #999;
}

.list .date {
    font-size: 0.8rem;
    color: #ccc;
    font-variant-numeric: tabular-nums;
}

footer {
    margin-top: 100px;
    font-size: 0.75rem;
    color: #ccc;
}

/* Markdown Rendering (post.html) */
.markdown-body {
    padding: 40px 0;
    font-size: 1rem;
}

.markdown-body h1 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.markdown-body p {
    margin-bottom: 20px;
}

.markdown-body a {
    color: #000;
    text-decoration: underline;
}

.back-link {
    display: block;
    margin-bottom: 40px;
    font-size: 0.8rem;
    color: #999;
    text-decoration: none;
}

.back-link:hover {
    color: #000;
}
