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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fafafa;
}

header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

header img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

header .info {
    flex: 1;
    min-width: 250px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 8px;
    color: #1a1a1a;
}

header .contact {
    list-style: none;
    margin-top: 10px;
    font-size: 0.95em;
}

header .contact li {
    margin-bottom: 4px;
}

header .contact a {
    color: #2a5db0;
    text-decoration: none;
}

header .contact a:hover {
    text-decoration: underline;
}

.intro {
    margin-bottom: 30px;
    font-size: 1.05em;
}

section {
    margin-bottom: 32px;
}

section h2 {
    font-size: 1.3em;
    border-bottom: 2px solid #2a5db0;
    padding-bottom: 4px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.entry {
    margin-bottom: 18px;
}

.entry h3 {
    font-size: 1.05em;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.entry .meta {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 4px;
}

.entry ul {
    margin-left: 20px;
    margin-top: 4px;
    font-size: 0.95em;
}

.entry ul li {
    margin-bottom: 3px;
}

.publication {
    margin-bottom: 12px;
    font-size: 0.95em;
}

.publication em {
    font-style: italic;
}

.publication .venue {
    color: #555;
}

footer {
    margin-top: 50px;
    padding-top: 16px;
    border-top: 1px solid #ddd;
    font-size: 0.85em;
    color: #777;
}
