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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    display: flex;
    max-width: 960px;
    padding: 25vh 48px 48px;
    gap: 48px;
}

.sidebar {
    flex-shrink: 0;
    width: 120px;
}

.photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    background: #d9d9d9;
    margin-bottom: 16px;
}

.location {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-size: 11px;
    color: #6b6b6b;
    letter-spacing: 0.08em;
    line-height: 1.7;
}

main {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.role {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 40px;
}

.label {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-size: 11px;
    color: #8a8a8a;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:hover {
    color: #000;
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
        padding: 25vh 24px 40px;
        gap: 32px;
    }
    .sidebar {
        width: 100%;
    }
}
