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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f8f8;
    color: #000;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0;
    padding: 40px 60px;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000;
}

.blog-list {
    list-style: none;
}

.blog-list li {
    margin-bottom: 12px;
}

.blog-list a {
    color: #000;
    text-decoration: none;
    font-size: 1.0rem;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
}

.blog-list a:hover {
    border-bottom-color: #000;
}

.posts-container-title {
    color: #000;
    font-size: 1.0rem;
    font-weight: 500;
}

/* Blog post styles */
.post-container {
    max-width: 800px;
    margin: 0;
    padding: 40px 60px;
}

@media (max-width: 480px) {
    .post-container {
        padding: 30px 20px;
    }
}

.post-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
}

.post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
}

.post-content p {
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
}

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

.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.post-content ol {
    padding-left: 0;
    margin-left: 1.2em;
    margin-bottom: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content pre {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 16px;
    margin: 20px 0;
    overflow-x: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.post-content code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
}
