.header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subtitle {
    font-size: 1.2em;
    color: #444;
    margin-top: 0.2em;
    margin-bottom: 0.8em;
    font-weight: 500;
}

.contact-row {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5em;
}

.contact-col .contact-link {
    display: flex;
    align-items: center;
    gap: 0.3em;
    font-size: 0.8em;
}

.contact-link svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: #0000ee;
}

.header-divider {
    width: 60%;
    margin: 1.2em auto 0.8em auto;
    border-bottom: 1.5px solid #eee;
}

body {
    font-family: 'Fira Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto 40px auto;
    padding: 0 32px;
    background: #fff;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
        font-size: 16px;
    }

    .tech-skills {
        flex-direction: column;
        gap: 1em;
    }
}

h1 {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 0.2em;
    letter-spacing: 1px;
}

h2 {
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    border-bottom: 2px solid #222;
    display: inline-block;
    padding-bottom: 2px;
}

h3 {
    font-size: 1em;
    font-weight: bold;
    margin-top: 1.2em;
    margin-bottom: 0.2em;
}

ul,
ol {
    line-height: 1.5;
    margin-left: 1.5em;
    margin-bottom: 0.5em;
}

li {
    margin-bottom: 0.2em;
}

.contact {
    margin-bottom: 2em;
}

.contact a {
    color: #0000ee;
    text-decoration: underline;
}

.contact a:hover {
    color: #551a8b;
    text-decoration: underline;
}

.job-title {
    font-style: italic;
    margin-bottom: 0.3em;
}

.date {
    font-size: 0.9em;
    color: #666;
}

.blog-posts {
    list-style-type: none;
    margin-left: 0;
}

.blog-posts li {
    margin-bottom: 0.5em;
}

.blog-posts a {
    color: #0000ee;
    text-decoration: underline;
}

.blog-posts a:hover {
    color: #551a8b;
    text-decoration: underline;
}

a {
    color: #0000ee;
    text-decoration: underline;
}

a:hover {
    color: #551a8b;
}

.tech-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2em;
    margin-bottom: 1em;
}

.tech-category {
    min-width: 0;
}

p {
    margin-bottom: 1em;
    font-size: 0.8em;
}