.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}
.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    margin-bottom: 24px;
}
.profile-name {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 8px;
}
.profile-role {
    color: var(--primary);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.profile-social {
    display: flex;
    gap: 12px;
}
.profile-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    padding: 8px 16px;
    transition: background 0.2s, color 0.2s;
}
.profile-social a:hover {
    background: var(--primary);
    color: #000;
}
.profile-social svg {
    width: 14px;
    height: 14px;
}
.profile-section {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 28px;
    margin-bottom: 24px;
}
.profile-section h2 {
    font-size: 1rem;
    color: var(--primary);
    margin: 0 0 16px;
    letter-spacing: 1px;
}
.profile-section p {
    color: var(--text);
    line-height: 1.7;
    margin: 0 0 12px;
}
.profile-section p:last-child {
    margin-bottom: 0;
}
.profile-section ul {
    color: var(--text);
    line-height: 1.7;
    padding-left: 20px;
    margin: 0;
}
.profile-section li {
    margin-bottom: 8px;
}
.breadcrumb {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 20px;
}
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb span {
    margin: 0 8px;
}
