body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Helvetica, Arial, sans-serif;

    max-width: 960px;
    margin: 55px auto;
    padding: 0 28px;

    color: #242424;

    font-size: 15.5px;
    line-height: 1.65;

    font-weight: 400;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* HEADER */

header {
    display: flex;
    align-items: flex-start;
    gap: 38px;

    margin-bottom: 48px;
}


.profile-photo {
    width: 185px;
    height: 185px;

    object-fit: cover;
    object-position: center 40%;

    border-radius: 4px;

    flex-shrink: 0;
}


.header-text {
    flex: 1;
}


h1 {
    font-size: 34px;

    font-weight: 600;

    letter-spacing: -0.8px;

    line-height: 1.2;

    margin-top: 0;
    margin-bottom: 12px;
}


h2 {
    font-size: 21px;

    font-weight: 600;

    letter-spacing: -0.3px;

    line-height: 1.3;

    margin-top: 46px;
    margin-bottom: 20px;
}


p {
    margin-top: 7px;
    margin-bottom: 12px;
}


/* LINKS */

a {
    color: #0866c6;

    text-decoration: none;

    transition: color 0.15s ease;
}


a:hover {
    text-decoration: underline;
}


.links {
    margin-top: 17px;

    font-size: 14.5px;

    font-weight: 500;
}


/* TWO-COLUMN ROWS */

.publication-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    column-gap: 32px;
    align-items: start;
    margin-bottom: 27px;
}


/* LEFT COLUMN */

.venue {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
    white-space: normal;
}


/* RIGHT COLUMN */

.publication-content {
    min-width: 0;
}


.publication-title {
    font-size: 15.8px;

    font-weight: 600;

    line-height: 1.5;

    letter-spacing: -0.1px;
}


.publication-authors {
    margin-top: 3px;

    font-size: 15px;

    line-height: 1.55;

    color: #404040;
}


.publication-links {
    margin-top: 5px;

    font-size: 13.5px;

    line-height: 1.5;

    color: #666;
}


.publication-links a {
    color: #0866c6;

    font-weight: 500;
}


strong {
    font-weight: 600;
}


/* CONTACT */

footer {
    margin-top: 60px;

    padding-top: 20px;

    border-top: 1px solid #e5e5e5;

    font-size: 13.5px;

    color: #666;
}


/* MOBILE */

@media (max-width: 700px) {

    body {
        margin: 28px auto;

        padding: 0 20px;

        font-size: 15px;
    }


    header {
        flex-direction: column;

        gap: 22px;

        margin-bottom: 38px;
    }


    .profile-photo {
        width: 155px;
        height: 155px;
    }


    h1 {
        font-size: 30px;
    }


    h2 {
        font-size: 20px;

        margin-top: 38px;
        margin-bottom: 17px;
    }


    .publication-row {
        grid-template-columns: 1fr;

        row-gap: 4px;

        margin-bottom: 26px;
    }


.venue {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: break-word;
}


    .publication-title {
        font-size: 15.5px;
    }


    .publication-authors {
        font-size: 14.5px;
    }

}
