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

body {
    font-family: 'Cardo', serif;
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    background-color: #fef9ed;
}

a {
    color: #5d524b;
    text-decoration: none;
    background-color: #f1eade;
    padding: 1px 3px;
    border-radius: 2px;
    transition: background-color 0.5s;
}

a:hover {
    background-color: #e3daca;
}

.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 2rem;
}

/* Header */
h1 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.email {
    color: #777;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.links a {
    font-size: 14px;
}

/* Bio section */
.bio-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.bio {
    flex: 1;
}

.bio p {
    margin-bottom: 0.75rem;
}

.headshot {
    flex-shrink: 0;
    width: 200px;
}

.headshot img {
    width: 100%;
    border-radius: 4px;
}

/* Sections */
hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 1.5rem 0;
}

h2 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.research-list {
    list-style: none;
    padding: 0;
}

.research-list.bulleted {
    list-style: disc;
    padding-left: 1.5rem;
}

.research-list li {
    margin-bottom: 0.5rem;
}

.research-list li strong {
    font-weight: 700;
}

/* Footer */
footer {
    margin-top: 0.5rem;
}

.footer-links {
    font-size: 14px;
    color: #999;
}

.footer-links a {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 700px) {
    .container {
        margin: 30px 20px;
    }

    .bio-section {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .headshot {
        width: 160px;
    }
}
