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

body {
    font-family: 'Source Sans 3', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.7;
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

/* --- HEADER --- */
.header {
    display: flex;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 48px;
}

.profile-photo-wrapper {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 1;
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.header-info h1 {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

.affiliation {
    font-size: 16px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.5;
}

.header-links {
    font-size: 15px;
    line-height: 1.8;
}

.header-links a {
    color: #1a5276;
    text-decoration: underline;
}

.header-links a:hover {
    color: #113d57;
}

.header-links .sep {
    color: #bbb;
    margin: 0 8px;
}

/* --- GENERAL --- */
a {
    color: #1a5276;
    text-decoration: underline;
}

a:hover {
    color: #113d57;
}

h2 {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: 19px;
    font-weight: 600;
    color: #111;
    margin-top: 48px;
    margin-bottom: 16px;
}

p, .bio {
    margin-bottom: 16px;
    color: #333;
}

/* --- PUBLICATIONS --- */
.pub {
    margin-bottom: 20px;
}

.pub .title {
    font-weight: 600;
}

.pub .title a {
    color: #1a5276;
}

.pub .authors {
    color: #555;
    font-size: 15px;
}

.pub .venue {
    color: #555;
    font-size: 15px;
    font-style: italic;
}

.scholar-link {
    margin-top: 10px;
    font-size: 15px;
}

/* --- LISTS --- */
.compact-list {
    margin-bottom: 16px;
    list-style: none;
    padding-left: 0;
}

.compact-list li {
    margin-bottom: 8px;
}

/* --- FOOTER --- */
footer {
    margin-top: 64px;
    font-size: 14px;
    color: #aaa;
}

/* Mobile */
@media (max-width: 600px) {
    body {
        padding: 36px 18px 60px;
    }

    .header {
        flex-direction: column;
    }

    .profile-photo-wrapper {
        width: 160px;
    }

    .header-info h1 {
        font-size: 26px;
    }
}