:root {
    --bg-color: rgb(251, 248, 246);
    --text-color: rgb(0, 0, 0);
    /* Exact font stack from reference or closest match */
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Typography */
    --body-font-size: 14.5px;
    --line-height: 1.65;
    --header-font-size: 16px;
    --section-title-font-size: 12px;

    /* Spacing */
    --container-max-width: 600px;
    --container-padding: 64px 32px;
    --header-margin-bottom: 32px;
    --section-margin-bottom: 32px;
    /* Reduced from 48px to match header spacing */
    --section-title-margin-bottom: 8px;
    /* Reduced from 24px to match list item spacing */
    --list-item-margin-bottom: 8px;

    /* Colors */
    --section-title-color: rgb(0, 0, 0);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: var(--body-font-size);
    line-height: var(--line-height);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max-width);
    min-width: 600px;
    margin: 0 auto;
    padding: var(--container-padding);
    text-align: left;
}

.header {
    margin-bottom: var(--header-margin-bottom);
}

h1 {
    font-size: var(--header-font-size);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: var(--body-font-size);
    color: #666;
    font-weight: 400;
}

.current-role {
    font-size: var(--body-font-size);
    line-height: var(--line-height);
}

.section {
    margin-bottom: var(--section-margin-bottom);
    width: 100%;
}

.section-title {
    font-size: var(--body-font-size);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-bottom: var(--section-title-margin-bottom);
    color: var(--section-title-color);
}

.list {
    list-style: none;
}

.list-item {
    margin-bottom: var(--list-item-margin-bottom);
    font-size: var(--body-font-size);
    line-height: var(--line-height);
}

.role {
    font-weight: 400;
    color: var(--text-color);
}

.company {
    font-weight: 400;
    color: var(--text-color);
}

.date {
    color: #666;
}

.separator {
    color: #ccc;
    margin: 0 0.3rem;
}

.slash {
    color: #ccc;
    margin-left: 0.25rem;
    font-family: var(--font-mono);
}

.link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.link:hover {
    border-bottom-color: var(--text-color);
}

/* Mobile responsiveness */