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

body {
    font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    color: #222;
    background: #faf8f5;
    line-height: 1.6;
    padding: 4rem 1.5rem;
}

main {
    max-width: 360px;
    margin: 0 auto;
}

header {
    margin-bottom: 1.5rem;
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.about {
    font-size: 1rem;
    color: #444;
    margin-bottom: 2rem;
}

.about a {
    color: #1a6dd4;
    text-decoration: none;
}

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

.contact {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.contact a {
    color: #555;
    text-decoration: none;
    line-height: 0;
}

.contact a:hover {
    color: #000;
}

h2 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.8rem;
}

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

.project-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.project-list a {
    color: #1a6dd4;
    text-decoration: none;
    font-weight: 500;
}

.project-list a:hover {
    text-decoration: underline;
}

.project-desc {
    color: #666;
    font-size: 0.9rem;
}

footer {
    max-width: 360px;
    margin: 4rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Blog post styles */
.blog-post {
    max-width: 700px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
}

.post-content h1 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.2rem;
}

.post-content img,
.post-content video {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    display: block;
}

.post-content blockquote {
    border-left: 3px solid #ddd;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #555;
    font-style: italic;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content .footnotes {
    font-size: 0.85rem;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.post-nav {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.post-nav a {
    color: #1a6dd4;
    text-decoration: none;
}

